Skip to content

[question] batching nested #196

@hyusetiawan

Description

@hyusetiawan

I do not see it in the docs here, but does it support nested batching? does it dedupe by parameters? for example:

query {
  posts(id: 1) {
     comments(id: 1) {
        body
     }
  }
}
query {
  posts(id: 1) {
     comments(id: 1) {
        postedAt
     }
  }
}
query {
  posts(id: 1) {
     comments(id: 2) {
        body
     }
  }
}

will this become 2 queries for comment id 1 with body and postedAt, also commend id 2 with just body?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions