deleteNewRelicUser
Delete a New Relic user from an environment.
deleteNewRelicUser(
input: AppEnvironmentDeleteNewRelicUserInput
): AppEnvironmentDeleteNewRelicUserPayload
Example
- Query
- Variables
- Response
mutation ($input: AppEnvironmentDeleteNewRelicUserInput) {
deleteNewRelicUser(input: $input) {
success
}
}
{
"input": {
"appId": 42,
"environmentId": 42,
"userId": 42
}
}
{
"data": {
"deleteNewRelicUser": {
"success": true
}
}
}
Arguments
deleteNewRelicUser.input ● AppEnvironmentDeleteNewRelicUserInput input common
The application, environment, and New Relic user to delete.
Type
AppEnvironmentDeleteNewRelicUserPayload object common
The result of deleting a New Relic user.