Releases: neo4j/graphql
@neo4j/[email protected]
Minor Changes
Patch Changes
-
#5632
3c69066
Thanks @darrellwarde! - Theoptions
argument ofassertIndexesAndConstraints
has been deprecated and the creation of indexes and constraints will no longer be support in the next major version of the library. -
#5606
e4ac1d8
Thanks @angrykoala! - Fix delete operations inside updates for unions -
#5616
b7552f8
Thanks @angrykoala! - Fix cardinality validation on nested unions
@neo4j/[email protected]
Patch Changes
- Updated dependencies [
9feeda9
,cfa296b
]:- @neo4j/graphql@5.9.0
@neo4j/[email protected]
Patch Changes
- Updated dependencies [
3c69066
,e4ac1d8
,b7552f8
,142bc0a
]:- @neo4j/graphql@5.8.0
@neo4j/[email protected]
@neo4j/[email protected]
Patch Changes
- Updated dependencies [
d3f4679
]:- @neo4j/graphql@5.7.1
@neo4j/[email protected]
Minor Changes
Patch Changes
-
#5583
d35b00d
Thanks @angrykoala! - Deprecates top level arguments for nested operations on updates in favor of traversing the update argument. The deprecated arguments are:- create
- delete
- connect
- disconnect
- connectOrCreate
For example, for create:
deprecated
mutation UpdatePeople { updatePeople(create: { movies: { node: { title: "The Good" } } }) { people { name } } }
recommended
mutation UpdatePeople { updatePeople(update: { movies: { create: { node: { title: "The Good" } } } }) { people { name } } }
These deprecated arguments can be removed from the schema with the flag
nestedUpdateOperationsFields
inexcludeDeprecatedFields
:const neoSchema = new Neo4jGraphQL({ typeDefs, features: { excludeDeprecatedFields: { nestedUpdateOperationsFields: true, }, }, });
-
#5585
21c18ee
Thanks @mjfwebb! - Fix: standard JWT claim fields can now correctly be used even when a custom JWT payload is not defined. -
#5590
e95db9c
Thanks @angrykoala! - Fix subscriptions with autogenerated uids #5586
@neo4j/[email protected]
Patch Changes
- Updated dependencies [
d35b00d
,21c18ee
,e95db9c
,3a0a69f
]:- @neo4j/graphql@5.7.0
@neo4j/[email protected]
Patch Changes
-
#5524
5d0db54
Thanks @angrykoala! - Fix authorization filtering in delete operations -
#5521
2e6de36
Thanks @darrellwarde! - Simplify the projection of spatial properties
@neo4j/[email protected]
Patch Changes
- Updated dependencies [
5d0db54
,2e6de36
]:- @neo4j/graphql@5.6.2
@neo4j/[email protected]
Patch Changes
- #5507
461ee3a
Thanks @angrykoala! - Fix generated cypher for disconnect operations with filters #5497