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