Is it possible to merge two queries into one?
I want to return the column values for “Name” and “Email_Address” where the column “batch_5” = “70”.
this would be merging the queries for items_by_column_values and items?
This is the query I have but it returns all the columns:
query {
items_by_column_values (board_id: 1234, column_id: “batch_5”, column_value: “70”) {
name
column_values {
id
text
}
}
}