Good afternoon,
I am trying to fetch column values of an item from a board on Monday using the following command:
query { boards(ids:[xxxxxxx]) { items(ids:[xxxxxxx]) { assets{ name public_url } column_values{ id value text } } } }
The query only works when I fetch the “id” of the column, the “value” and “text” fields fails, the below query runs:
query { boards(ids:[xxxxxxxx]) { items(ids:[xxxxxxxxxx]) { assets{ name public_url } column_values{ id } } } }
I want to be able to fetch the other column fields, may you please assist?