I’m using the GraphQL API to query a board and it’s going great so far. Only issue is that for some reason the very first column in my board is not getting returned. Only the other columns after it. Is the first column a protected / special column for some reason?
My query is:
query {
me {
name
}
boards(ids:<board_id>) {
name
id
columns() {
id
title
type
}
items() {
id
column_values() {
id
text
title
# value
# type
}
}
}
}