Is it possible to return a column value from an item with the items_by_column_values query? For example, if there was a column named “record_timestamp” I would like to query it in some fashion such as this:
query ($board: Int!, $column: String!, $value: String!) {
items_by_column_values (board_id: $board, column_id: $column, column_value: $value) {
id
record_timestamp
}
}