Magidoc

appActivate
Mutation

Activate the app.

Arguments

#

id

ID !
Non-null

ID of app to activate.

Response

#

Returns AppActivate .

Example

#

    mutation ($id: ID!) {
  appActivate(id: $id) {
    appErrors {
      field
      message
      code
      permissions
    }
    app {
      id
      name
      created
      isActive
      type
      aboutApp
      dataPrivacy
      dataPrivacyUrl
      homepageUrl
      supportUrl
      configurationUrl
      appUrl
      version
      accessToken
    }
  }
}

  

3