LocationConnection
A connection to a list of `Location` values.
"""A connection to a list of `Location` values."""
type LocationConnection {
"""A list of `Location` objects."""
nodes: [Location]!
"""
A list of edges which contains the `Location` and cursor to aid in pagination.
"""
edges: [LocationEdge]!
"""Information to aid in pagination."""
pageInfo: PageInfo!
"""The count of *all* `Location` you could get from the connection."""
totalCount: Int!
}