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