How can I display n items in GraphQL?
I want to get only n results of a query in GraphiQL Explorer.
The GraphQL documentation says that I can use first, but when I try to use it in GraphiQL Explorer, I get an error.
query allEventsTest {
eventsTestList(first:10) {
items {
_path
}
}
}