Location Connection
Get Location resources with pagination.
Query
query LocationConnection($first: Int, $after: String) {
locationConnection(first: $first, after: $after) {
edges {
node {
id
# Add other fields as needed
}
}
pageInfo {
hasNextPage
endCursor
}
totalCount
}
}
Parameters
first: Number of items to retrieveafter: Cursor for pagination
Return Type
Returns a connection object containing Location resources.