Hello,
I have a question about retrieving the values of the columns of a boards,
Each time i put an intem category inside of the board category, the GraphQL returns an error : “Cannot query items on type Boards”. Is this normal ?
I am trying to retrieve all the data of a board.
query {
boards(limit:1) {
name
columns {
title
id
type
}
items {
name
group {
id
}
}
}
}