@neo4j/graphql@5.1.0
版本发布时间: 2024-03-06 22:00:39
neo4j/graphql最新发布版本:@neo4j/graphql@5.7.0(2024-09-27 22:43:48)
Minor Changes
-
#4821
c198de3
Thanks @angrykoala! - Support for top-level connection query on interfaces. For example:Typedefs
interface Show { title: String! } type Movie implements Show { title: String! cost: Float } type Series implements Show { title: String! episodes: Int }
Query
query { showsConnection(where: { title_CONTAINS: "The Matrix" }) { edges { node { title ... on Movie { cost } } } } }