Trying to use this API to get column values for my board in GraphQL, I have a column named "Email" with the persons email address but I can't seem to query it - here is my query thus far.
query {
boards (ids: 341236641) {
items () {
id
name
column_values {
id
}
}
}
}
For some reason, it wont let me put the field "Email" underneath the items()
or column_values
When I look at the output, the id
of column_values
prints out as
'column_values': [{'id': 'status'}, {'id': 'status84'}, {'id': 'average_check4'}, {'id': 'date'}, {'id': 'text9'}, {'id': 'location'}]}
I believe the "actual" column name is text9
but that doesnt seem to work either.
Anyone use this API successfully before?
Thanks!