@neo4j/graphql |
---|
patch |
Deprecated old aggregate operations:
query {
moviesAggregate {
count
rating {
min
}
}
}
These fields can be completely removed from the schema with the new flag deprecatedAggregateOperations
:
const neoSchema = new Neo4jGraphQL({
typeDefs,
features: { excludeDeprecatedFields: { deprecatedAggregateOperations: true } },
});