Locations

Locations represent the places Events are held.

Search

The following examples fetches the first page of Locations in the United States or United Kingdom:

Example

query {
  locations(
    filters:[
      {field: regionName, operation: in, values: ["United States", "United Kingdom"]}
    ]
  ){
    edges{
      node{
        id 
        name 
        region{
          id
          code
          name
        }
      }
    }
  }
}