hi guys,
ive a major problem with performance. we have over average 5k articles linked to category, but when we query category limit 10 on graphql without articles field, it toook 40s locally on my machine.
i have only about 6000 categories, which does not make sense.
and this is one issue,
second issue:
var res = await strapi.query(“category”).find({ _limit: 10});
there is no support for fields selected for this function, which makes things very incovinient.
it will return all articles associated with each category, did i miss any way to skip them? and does it really works in the core library , or is it just fetching all and not returning them?