For example, if you request with GitHub GraphQL API with the following query, the result will be returned considering first and after.
{
viewer {
repositories(first: 30) {
nodes {
issues(first: 30, after: "Y3Vyc29yOnYyOpHOAp96sw==") {
nodes {
title
}
}
}
}
}
}
Probably, if I implement something similar api with gqlgen, I should use dataloader for issues.
However I can only pass keys to dataloader.
How should I pass first, after, etc. information?