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