Available queries
Associated query | Returns multiple results |
---|---|
Location | |
Locations | ✔️ |
Available fields
Label | Type | Notes | Null |
---|---|---|---|
address | Postal address | The location's address | |
id | integer | The location's id | |
location_type | string | The location type ("store", "warehouse", ... ) | |
phone | string | The location's phone number | ✔️ |
shipping | decimal(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
}
}
}
}