We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Augment schema with fields for aggregation queries.
Given schema
type Movie { id: ID actorCount: Int averageRating: Float isActive: Boolean }
Should generate the following augmented schema (partial example with only relevant fields and types below):
type Query { moviesAggregate(where: MovieWhere): MovieAggregateSelection! moviesCount(where: MovieWhere): Int! } type MovieAggregateSelection { actorCount: IntAggregateSelection! averageRating: FloatAggregateSelection! count: Int! id: IDAggregateSelection! } type FloatAggregateSelection { average: Float! max: Float! min: Float! } type IDAggregateSelection { longest: ID! shortest: ID! } type IntAggregateSelection { average: Float! max: Int! min: Int! }
The text was updated successfully, but these errors were encountered:
Andy2003
No branches or pull requests
Augment schema with fields for aggregation queries.
Given schema
Should generate the following augmented schema (partial example with only relevant fields and types below):
The text was updated successfully, but these errors were encountered: