appActivate Mutation
Activate the app.
Arguments
#
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
{
"id": "aWQ6MzY="
}
3
{
"appActivate": {
"appErrors": [
{
"field": "string",
"message": "string",
"code": "FORBIDDEN",
"permissions": [
"MANAGE_USERS"
]
}
],
"app": {
"id": "aWQ6OTU=",
"name": "Acme",
"created": "2022-03-06T08:23:45.000Z",
"isActive": true,
"type": "LOCAL",
"aboutApp": "string",
"dataPrivacy": "string",
"dataPrivacyUrl": "string",
"homepageUrl": "string",
"supportUrl": "string",
"configurationUrl": "string",
"appUrl": "string",
"version": "string",
"accessToken": "string"
}
}
}
3