Skip to content
Compare
Choose a tag to compare
@neo4j-team-graphql neo4j-team-graphql released this 26 Nov 12:07
bbc7aa6

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