Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 438 Bytes

thin-goats-begin.md

File metadata and controls

25 lines (21 loc) · 438 Bytes
@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 } },
});