OBJECT

PopulatedPlaceEdge

When paging populated places, wraps a place node together with the cursor referencing its position in the results

link GraphQL Schema definition

1type PopulatedPlaceEdge {
2
3# The cursor id referencing the position of this node in the results
4cursor: String!
7
5# The node value
6node: PopulatedPlace!
8
9}