Query on the properties and contents of a specific Idea. Properties fetched can include the Idea’s:
- Description
- Associated Factor values
- Date of creation
- Feedback statistics
- Associated Roadmap Items
- Associated Product Area
- Comments
Sample Query
// Read idea query
query {
idea (
ideaID : "Bwwxbyn6"
) {
id
title
description
createdAt
comments {
id
author {
displayName
}
}
factorValues (
ideaViewID: "VALUEEFFORT"
) {
factorID
value
factor {
title
type
isPositive
}
}
feedback {
limit: 20
offset: 0
){
totalCount
}
productAreas {
id
name
owners {
id
firstName
lastName
}
}
}
Sample Response
// Read idea query successful result
{
"data": {
"idea": {
"id": "5e74f1f6f0dd40574d051f43",
"title": "Refactor item search",
"description": "This app was released on time constraints. It's time to re-visit some areas of the app. We should specifically look at improving item search",
"createdAt": "1582224922461",
"comments": [
{
"id": "dc4CVYkL",
"author": {
"displayName": "Toby Sekhon"
}
}
],
"factorValues": [
{
"factorID": "VALUE",
"value": 3,
"factor": {
"title": "Value",
"type": "rating",
"isPositive": true
}
},
{
"factorID": "EFFORT",
"value": 5,
"factor": {
"title": "Effort",
"type": "rating",
"isPositive": false
}
}
],
"feedback": {
"totalCount": 1,
},
"productAreas": [
{
"id": "SF5tyhaS",
"name": "Mobile App",
"owners": [
{
"id": "5e45e4678c8c3b88963d1824",
"firstName": "John",
"lastName": "Smith"
}
]
}
}
}
}