Configuration Properties
graphql-kotlin-spring-server
relies on GraphQLConfigurationProperties
to provide various customizations of the auto-configuration library. All applicable configuration properties expose configuration
metadata that provide
details on the supported configuration properties.
Property | Description | Default Value |
---|---|---|
graphql.endpoint | GraphQL server endpoint | graphql |
graphql.packages | List of supported packages that can contain GraphQL schema type definitions | |
graphql.federation.enabled | Boolean flag indicating whether to generate federated GraphQL model | false |
graphql.introspection.enabled | Boolean flag indicating whether introspection queries are enabled | true |
graphql.playground.enabled | Boolean flag indicating whether to enabled Prisma Labs Playground GraphQL IDE | true |
graphql.playground.endpoint | Prisma Labs Playground GraphQL IDE endpoint | playground |
graphql.sdl.enabled | Boolean flag indicating whether to expose SDL endpoint | true |
graphql.sdl.endpoint | GraphQL SDL endpoint | sdl |
graphql.subscriptions.endpoint | GraphQL subscriptions endpoint | subscriptions |
graphql.subscriptions.keepAliveInterval | Keep the websocket alive and send a message to the client every interval in ms. Defaults to not sending messages | null |