Skip to content

Support nested query namespaces #2717

@marshmn

Description

@marshmn

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.

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions