Releases: neo4j/graphql
@neo4j/[email protected]
Patch Changes
-
#5888
3037bb9
Thanks @darrellwarde! - Fix discrepancy of relationship direction when filtering -
#5869
34725f6
Thanks @angrykoala! - Deprecates@private
directive. The private directive was aimed to be used in conjunction with the OGM, which is no longer supported. -
#5888
3037bb9
Thanks @darrellwarde! - Fix incorrect relationship direction when performing a delete operation nested under a delete operation
@neo4j/[email protected]
Patch Changes
- #5889
b125790
Thanks @darrellwarde! - Fix incorrect relationship direction when performing a delete operation nested under a delete operation
@neo4j/[email protected]
Patch Changes
- Updated dependencies [
b125790
]:- @neo4j/graphql@5.11.2
@neo4j/[email protected]
Patch Changes
-
#5861
f2e1575
Thanks @darrellwarde! - Fixed bug where fields decorated with@customResolver
were included in the projection of the generated Cypher query -
#5865
258ff53
Thanks @darrellwarde! -@default
directive fixed to work as expected on fields of temporal type, andBigInt
fields
@neo4j/[email protected]
Patch Changes
-
#5863
a313cc6
Thanks @darrellwarde! - Fixed bug where fields decorated with@customResolver
were included in the projection of the generated Cypher query -
#5866
67df449
Thanks @darrellwarde! -@default
directive fixed to work as expected on fields of temporal type, andBigInt
fields
@neo4j/[email protected]
Patch Changes
- Updated dependencies [
a313cc6
,67df449
]:- @neo4j/graphql@5.11.1
@neo4j/[email protected]
@neo4j/[email protected]
@neo4j/[email protected]
Patch Changes
- Updated dependencies [
5a13bf5
]:- @neo4j/graphql@5.11.0
@neo4j/[email protected]
Patch Changes
-
#5835
cc1a8dd
Thanks @angrykoala! - Add support for filtering GraphQL only events in CDC subscriptions with the optiononlyGraphQLEvents
passed toNeo4jGraphQLSubscriptionsCDCEngine
const engine = new Neo4jGraphQLSubscriptionsCDCEngine({ driver, onlyGraphQLEvents: true, }); const neoSchema = new Neo4jGraphQL({ typeDefs, driver, features: { subscriptions: engine, }, });
-
#5834
67f915e
Thanks @angrykoala! - CDC subscription optimization. Only node events with labels present in the GraphQL schema will be queried. This will reduce the number of subscription events queried by skipping events to nodes that cannot be subscribed through GraphQL