I have a GraphQL query that I’m running to get access to files uploaded to my board for a certain item. I’m using the following assets query:
query {
boards (ids:<board_id>) {
items (ids: <item_id>) {
assets {
id
name
url
file_extension
}
}
}
}
but it’s only returning a single file that is actually in one of the columns. It’s not returning the other files that are uploaded with and associated with that item (I can see the files on the UI, just not through API)
any ideas why?


