Hey
I am trying to get file details for the Monday account using https://api.developer.monday.com/docs/files-queries but I am not getting any files nor I am getting any error I am trying to query files using items with the query as
query {
boards (ids:<id>) {
items (limit:100) {
assets {
id
url
name
}
}
}
}
but in return I am getting empty lists for each item but we have files uploaded for some items (that I can see in the app) still not getting it from the API call.
Thank you.