We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75420ac commit a5673efCopy full SHA for a5673ef
README.md
@@ -86,8 +86,8 @@ Instead of sending 2 separate http requests, it gets combined into one:
86
A batching that would even be faster is alias-based batching. Instead of creating the array described above, it would generate something like this:
87
88
```js
89
- {
90
- query: `
+{
+ query: `
91
query {
92
item_1: Item(id: "1") {
93
id
@@ -100,7 +100,7 @@ A batching that would even be faster is alias-based batching. Instead of creatin
100
text
101
}
102
}`
103
- },
+}
104
```
105
106
This requires a lot more logic and resolution logic for aliases, but would be a lot faster than the array based batching!
0 commit comments