Hi there,
By performing a request with the following query (getting id and assets from 100 items):
query {
complexity {
query
after
}
items (limit: 100, page: 0 ) {
id
assets {
file_extension
id
name
public_url
url
url_thumbnail
}
}
}
Query complexity: 601110
By performing a request with the following query (getting id from 100 items):
query {
complexity {
query
after
}
items (limit: 100, page: 0 ) {
id
}
}
Query complexity: 110
Since the maximum complexity is about 1,000,000 per minute, we can’t make more than one request per minute to get assets from 100 items.
I’ve tested some other queries and this isn’t happening for other entities.
Thank you