Available queries

Associated queryReturns multiple results
Location
Locations✔️

Available fields

LabelTypeNotesNull
addressPostal addressThe location's address
idintegerThe location's id
location_typestringThe location type ("store", "warehouse", ... )
phonestringThe location's phone number✔️
shippingdecimal(10,2)The shipping cost to and from this location✔️

Example of a query

query{
  Locations{
    edges{
      node{
        address{
          country
        }
        id
        location_type
        phone
        shipping
      }
    }
  }
}