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