-
-
Notifications
You must be signed in to change notification settings - Fork 30
Support nested query namespaces #2717
Copy link
Copy link
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
My API has a nested query structure which looks like the following (simplified):
type Query {
tournaments(
filter: TournamentFilter
): [Tournament!]!
players(
filter: PlayerFilter
): [Player!]!
analytics: AnalyticsQuery!
}
type AnalyticsQuery {
aggregateTournaments(
groupBy: [TournamentGroupBy!]!
filter: TournamentFilter
): [AggregateGroup!]!
}
The generated docs contain pages for the top-level queries (tournaments, players) and a page for analytics as well - but there are no individual pages created for the queries within the analytics namespace.
Describe the solution you'd like
I would like individual pages to be generated for the queries within the nested namespaces.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request