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
STUDENTrole.
Arguments
UnenrollFromWaitlist.id ● ID! non-null scalar
Type
Boolean scalar
The
Booleanscalar type representstrueorfalse.
Examples
Query:
UnenrollFromWaitlist($id: ID!) {
 UnenrollFromWaitlist(id: $id)
}
Variables:
{
 "id": "0e99a117-e3b6-40a6-867c-6b3bbc166b41"
}
Response:
{
  "data": {
    "UnenrollFromWaitlist": true
  }
}