TaskQuery
Task query - query to get one page of tasks.
type TaskQuery {
state: TaskState
assigned: Boolean
assignee: String
pageSize: Int
searchAfter: [String!]
searchAfterOrEqual: [String!]
searchBefore: [String!]
searchBeforeOrEqual: [String!]
}
Fields​
state
(TaskState
)​
State of the tasks
assigned
(Boolean
)​
Are the tasks assigned?
assignee
(String
)​
Who is assigned to the tasks?
pageSize
(Int
)​
Size of tasks page (default: 50).
searchAfter
([String!]
)​
Array of values copied from sortValues
of one of the tasks, query will return page of tasks going directly after this values plus same sort values.
searchAfterOrEqual
([String!]
)​
Array of values copied from sortValues
of one of the tasks, query will return page of tasks going directly after this values.
searchBefore
([String!]
)​
Array of values copied from sortValues
of one of the tasks, query will return page of tasks going directly before this values plus same sort values.
searchBeforeOrEqual
([String!]
)​
Array of values copied from sortValues
of one of the tasks, query will return page of tasks going directly before this values.