> ## Documentation Index
> Fetch the complete documentation index at: https://developer.qminder.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Visitors

You can get the list of visitors waiting in a location:

<CodeGroup>
  ```graphql graphql theme={null}
  query VisitorsWaiting {
    ticketSearch(locationId: "123", status: [NEW], order: {field: CREATED, direction: DESCENDING}) {
      id
      firstName
      lastName
    }
  }
  ```
</CodeGroup>
