Query on the properties and contents of a specific Item based on the itemID, including the values set on all fields present on the Item. Hierarchical and dependency properties are included to reveal relationship information for Items. Item relationships with Ideas can also be revealed with this query.
This query can also reveal the Roadmap on which the Item exists.
Note that as with in-app behaviour, an Item can only have dates or bucket times, but not both.
Sample Query
query {
item (
itemID: "5e4d9b8da52d7029a0e1a9f6"
){
id
summary
description
lastSaved
startDate
endDate
bucket {
id
value
}
isParent
isSubItem
hasDependencies
fields (limit: 10, offset: 0) {
page {
fieldID
fieldName
}
}
ideas(limit: 10, offset: 0) {
page {
id
title
}
}
}
Sample Response
{
"data": {
"item": {
"id": "5e4d9b8da52d7029a0e1a9f6",
"summary": "Shopify & Amazon Integration",
"description": "Set-up storefront on both Shopify and Amazon",
"lastSaved": 1582144590035,
"startDate": null,
"endDate": null,
"bucket": {
"id": "54aecbed150c15243a00006e",
"value": "Soon"
},
"isParent": false,
"isSubItem": false,
"hasDependencies": false,
"fields": {
"page": [
{
"fieldID": "5e4d7d53caec436c465953cd",
"fieldName": "Owner (Ecommerce Roadmap)"
},
{
"fieldID": "5e4d7d53caec436c465953bc",
"fieldName": "Theme (Ecommerce Roadmap)"
}
]
},
"ideas": {
"page": [
{
"id": "5ed1185e1e7f53754f58f058",
"title": "web store"
}
]
}
}
}
}