Items with columns

Hi, I tried with below body for API https://api.monday.com/v2 and wondering why it is limited to columns I can select Ex: id, name, state and few others only. I would like to obtain other columns created on my board. Would some one advise how I can able to obtain remaning columns I have on the board?

{“query”:“{ boards (ids: 563735499) { name state owner { id name } items { id name state }}}”}

Hello @vijendra and welcome to the community!

I hope you like it here :muscle:

In this case, id, name and state are not you columns. They are attributes of your items.

ID: ID of the item
Name: Name of the item
State: State (active, non active)

If you want to get your columns and their values, you can use something like this:

{
  boards(ids: 1234567890) {
    name
    state
    owner {
      id
      name
    }
    items {
      id
      name
      state
      column_values {
        title
        text
        value
      }
    }
  }
}

I hope that helps!

Cheers,
Matias

Thanks Matias appreciate your help, I see the column values.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.