Skip to main content

UnenrollFromWaitlist

The results of this mutation can be affected by providing an authToken header to set a user for the operation.

UnenrollFromWaitlist(
id: ID!
): Boolean!

Directives

authAccess

This requires the current user to be in STUDENT role.

Arguments

UnenrollFromWaitlist.id ● ID! non-null scalar

Type

Boolean scalar

The Boolean scalar type represents true or false.

Examples

Run in Postman

Query:

UnenrollFromWaitlist($id: ID!) {
UnenrollFromWaitlist(id: $id)
}

Variables:

{
"id": "0e99a117-e3b6-40a6-867c-6b3bbc166b41"
}

Response:

{
"data": {
"UnenrollFromWaitlist": true
}
}