65. Mutation: Delete Users from Organization
Mutation to delete users from the "Organization".
The mutation can be executed only from the account belonging to the Organization-group.
mutation DeleteUsersFromOrganizationSample {
deleteUsersFromOrganization(
input: {
organizationUuid: "organization_uuid"
userUuids: ["<user_uuid1>", "<user_uuid2>"]
}
) {
organizationUuid
userUuid
email
allFarms
createdDate
updatedDate
}
}
Last updated
Was this helpful?