Get GraphQL API Configuration Deprecated

GET /groups/{groupId}/apps/{appId}/graphql/config

Get your app's GraphQL API configuration.

Path parameters

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • use_natural_pluralization boolean

      If true, generated schema type names use common English pluralization whenever possible.

      If false, or if a natural pluralization cannot be determined, then plural types use the singular type name with an "s" appended to the end.

      You cannot change this value after you create your App. This value is true for all new Apps.

    • disable_schema_introspection boolean

      If true, the GraphQL API blocks introspection queries from clients.

GET /groups/{groupId}/apps/{appId}/graphql/config
curl \ --request GET 'https://services.cloud.mongodb.com/api/admin/v3.0/groups/{groupId}/apps/{appId}/graphql/config' \ --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{ "use_natural_pluralization": true, "disable_schema_introspection": true }