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?
I do not see it in the docs here, but does it support nested batching? does it dedupe by parameters? for example:
will this become 2 queries for comment id 1 with body and postedAt, also commend id 2 with just body?