RevokeOauthApplicationPayload
ObjectAutogenerated return type of RevokeOauthApplication.
mutation { organization(id: $organizationId) { revokeOauthApplication } }
Example
mutation RevokeOauthApplication(
$organizationId: ID!
$input: RevokeOauthApplicationInput!
) {
organization(id: $organizationId) {
revokeOauthApplication(input: $input) {
errors
}
}
}