Trying to query board for a specific column by column values

Hi,
I’m trying to query board for a specific column by column values, to see the costs of our use.
data = ‘{“query”:“{items_by_column_values (board_id: XXXXXX, column_id: XXXX, column_value: 4 ) {id name }}”}’
The issue arises when I’m trying to query cloumn value by integer or float and not string.
How can I query values that are integer or floats from a board?
I’m using Python to do that if it matters.

Thanks.

Hey Sally, this depends on what kind of a column it is (number, text, etc). Generally, if you convert the float or integer to a string you should be able to pull the relevant items.

What do you think?