deleteMember

Will delete the existing member for the organization.

Examples

mutation DeleteMember($userId: String!, $userEmail: String) {
  deleteMember(userId: $userId, userEmail: $userEmail)
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "userId": "example",
  "userEmail": "example"
}

Arguments

You can use the following argument(s) to customize your deleteMember mutation.

Argument
Description
Supported fields

userId String! required

userEmail String

Fields

Return type: Boolean

Last updated