Discussions
Get all possible locations for creating office (city field, which is available as a dropdown)
2 years ago by Nemanja
Is it possible to get list of all possible cities which are available in office create request (field city):
so query similar to this:
{
cities(filters: { countryCode: "DE", language: "DE", cityNameLike: "b*" }) {
items {
id
cityName
countryName
regionName
countryCode
__typename
}
}
}
but without cityNameLike argument, which would return all cities from db/endpoint ?
