Reputation: 167
I have a column name "XYZ" for which I need to fetch the values/data from all the groups on the board
query {
boards (ids: 12345) {
items {
id
name
column_values {
id: XYZ,
title: Name XYZ
}
}
}
}
Above is the GraphQl query that Im trying to use, But It results in an error
errors": [ { "message": "Field 'items' doesn't exist on type 'Board'",
Upvotes: 0
Views: 44
Reputation: 222722
You need to try something like below,
query {
boards (ids: 12345) {
id
name
columns{
id
description
}
}
}
You can try this on the API Playground
Upvotes: 1