Skip to content

Releases: neo4j/graphql

@neo4j/[email protected]

16 Dec 14:26
03ac2b6
Compare
Choose a tag to compare

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]

16 Dec 14:25
48f170f
Compare
Choose a tag to compare

Patch Changes

  • #5889 b125790 Thanks @darrellwarde! - Fix incorrect relationship direction when performing a delete operation nested under a delete operation

@neo4j/[email protected]

16 Dec 14:25
48f170f
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

04 Dec 09:32
bcafae7
Compare
Choose a tag to compare

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, and BigInt fields

@neo4j/[email protected]

04 Dec 09:32
d2d7756
Compare
Choose a tag to compare

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, and BigInt fields

@neo4j/[email protected]

04 Dec 09:32
d2d7756
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

29 Nov 12:39
8024a88
Compare
Choose a tag to compare

Minor Changes

@neo4j/[email protected]

28 Nov 12:38
1c697a9
Compare
Choose a tag to compare

Minor Changes

@neo4j/[email protected]

28 Nov 12:38
1c697a9
Compare
Choose a tag to compare

Patch Changes

@neo4j/[email protected]

26 Nov 12:07
bbc7aa6
Compare
Choose a tag to compare

Patch Changes

  • #5835 cc1a8dd Thanks @angrykoala! - Add support for filtering GraphQL only events in CDC subscriptions with the option onlyGraphQLEvents passed to Neo4jGraphQLSubscriptionsCDCEngine

    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