I’m running a query that pulls an entire board which contains about 400 items and 80 columns. i’m using a pretty blunt query:
query2 = ‘{boards(ids:###) { name items { name group{title} created_at column_values{ title text } } } }’
It takes about 20 seconds for this to run, which is surprising given that this is just tabular text data. Is this normal latency? I would expect a much faster response on this (maybe 1s). I’ve seen a few (unaddressed) threads about performance of the API - is this an ongoing issue?
Thank you