Enable users to fetch all WorkItems they have access through GraphQL
Merged
requested to merge kassio/add-graphql-connection-between-current-user-and-workitems into master
Enable users to fetch all WorkItems they have access through GraphQL, similar to the existing issues query.
Example Query | Example Response |
---|---|
query q { workItems(state: opened) { nodes { iid } } } |
{ "data": { "workItems": { "nodes": [{ "iid": "9" }, ... |
Not provided
query q {
workItems(state: opened) {
nodes {
id
}
}
}