Hey all,
With the new API out, I’m swapping my queries and can’t figure out how to return only the column “email_address” from a items_page_by_column_values query. Any ideas?
Original query:
query {items_by_column_values (board_id: 12345, column_id: “status_199”, column_value: “Ready”) {id name column_values(ids:l“email_address”]){text}}}
new query:
query{items_page_by_column_values (limit: 100, board_id: 12345, columns:_{column_id: “status_199”, column_values: _“Ready”]}]){cursor items {id name}}}