API efficiency and Custom Conditions

Awesome thanks for the clarifications they helped a lot. I am new with strapi and to graphql so i wasn’t aware of the structure.

I tried graphql and works like a charm. Returns the data i want. The structure I want… so nice.

Just one question regarding graphql…

Take this example:
{
posts (limit: 10) {
long_text,
comments (limit: 3) { … }
}
}

comments as you can imagine is a relationship
It doesn’t accept the “…”
How can i simply tell i need all data in it without specifying the columns to return? Is there any way or i need to be explicit?