isUserAllowOnList

This query confirms if the user with a specific Lot ID is allowed on a list.

General Pattern

query{
    isUserAllowOnList(lotID: UUID!){
}

Sample Query

query{
  isUserOnAllowList(lotID:"c9450019-c9bc-40ff-9e07-cbc0745b46de")
}

Sample Response

{
  "data": {
    "isUserOnAllowList": true
  }
}

Argument

NameTypeDescriptionRequired
lotIDUUIDThe lot ID.Yes

Field

NameTypeDescription
N/ABooleanThe affirmation if the user is on the allow list. The 'true' value means the user is on the list. Otherwise, the value will be 'false'.

Example

Confirm if the user with Lot ID c9450019-c9bc-40ff-9e07-cbc0745b46de is allowed on the list: