API Stability Short-Term

The disableDemoDataForUser() GraphQL mutation may be used to remove the demonstration view.

Syntax

Below is the syntax for the disableDemoDataForUser() mutation field:

graphql
disableDemoDataForUser: boolean!

Below is an example of how this mutation field might be used:

Show:
graphql
mutation {
  disableDemoDataForUser
}
Example Responses
Show:
json
{
  "data": {
    "disableDemoDataForUser": true
  }
}