Mutation
mutation RevokeInvite($input: RevokeInviteInput!) {
revokeInvite(input: $input) {
clientMutationId
errors
invite {
channel
convertedAt
createdAt
expiresAt
id
message
}
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"revokeInvite": {
"clientMutationId": "string",
"errors": [
"string"
],
"invite": {
"channel": "string",
"convertedAt": "value",
"createdAt": "value",
"expiresAt": "value",
"id": "id",
"message": "string"
}
}
}
}Mutations
revokeInvite
Revoke an unaccepted invite.
MUTATION
revokeInvite(input: RevokeInviteInput!): RevokeInvitePayloadArguments
input
required
Parameters for RevokeInvite
Returns
clientMutationId
String
A unique identifier for the client performing the mutation.
errors
[String!]!
invite
Mutation
mutation RevokeInvite($input: RevokeInviteInput!) {
revokeInvite(input: $input) {
clientMutationId
errors
invite {
channel
convertedAt
createdAt
expiresAt
id
message
}
}
}Variables
{
"input": {
"id": "id"
}
}Response
{
"data": {
"revokeInvite": {
"clientMutationId": "string",
"errors": [
"string"
],
"invite": {
"channel": "string",
"convertedAt": "value",
"createdAt": "value",
"expiresAt": "value",
"id": "id",
"message": "string"
}
}
}
}