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