New to graphql i need to read all the values for a given row based on the value of a particular column. Please point me in the right direction
Page 1 / 1
That depends of the column type for the “particular” column
Hello @Jtoland919 and welcome to the community!
I hope you like it here 💪
As @basdebruin mentioned, depending on the column type, the format will be different.
Examples:
Get all items that have a specific text in a “text” column:
{
items_page_by_column_values(
limit: 500
board_id: 1234567890
columns: n{column_id: "text", column_values: e"Some text"]}]
) {
items {
id
name
}
}
}
Get all items that have an unchecked checkbox column:
{
items_page_by_column_values(
limit: 500
board_id: 1234567890
columns: n{column_id: "checkbox", column_values: enull]}]
) {
items {
id
name
}
}
}
You can check the syntax for each column type here 😁
Cheers,
Matias
Reply
Login to monday.com
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.