Releases: neo4j/graphql
@neo4j/graphql@5.3.0
@neo4j/graphql-ogm@5.3.0
@neo4j/graphql@5.2.0
Minor Changes
-
#4816
6b547dd
Thanks @a-alle! - Adds support for the@authentication
directive on custom resolved fields of root types Query and Mutation -
#4829
720a5ee
Thanks @a-alle! - Add simple relationship filter for relationships to interface types
Patch Changes
-
#4848
86fd1a9
Thanks @MacondoExpress! - Fixed a bug that causes relationship direction to be wrongly generated during the resolution of interface relationship fields. -
#4867
d82ee15
Thanks @MacondoExpress! - Fixed bug that caused an empty string and false boolean argument being evaluated asNULL
when passed as an argument of a@cypher
field.
@neo4j/graphql-toolbox@2.1.12
@neo4j/graphql-ogm@5.2.0
@neo4j/graphql@5.1.0
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 } } } } }
Patch Changes
@neo4j/graphql-toolbox@2.1.11
@neo4j/graphql-ogm@5.1.0
@neo4j/graphql@5.0.1
Patch Changes
-
#4762
714b4ed
Thanks @MacondoExpress! - Fix non-existing relationships for 1 to 1 relationship. -
#4781
752f9fb
Thanks @angrykoala! - Fix aggregation filters for connection fields