Skip to main content

UnenrollFromWaitlist

Unenrolls the current user from the waitlist for the content item ID provided. 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": "58ccb96c-8e90-4464-86e0-f284442981df"
}

Response:

{
"data": {
"UnenrollFromWaitlist": false
}
}