Skip to content

Commit a5673ef

Browse files
committed
readme
1 parent 75420ac commit a5673ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ Instead of sending 2 separate http requests, it gets combined into one:
8686
A batching that would even be faster is alias-based batching. Instead of creating the array described above, it would generate something like this:
8787

8888
```js
89-
{
90-
query: `
89+
{
90+
query: `
9191
query {
9292
item_1: Item(id: "1") {
9393
id
@@ -100,7 +100,7 @@ A batching that would even be faster is alias-based batching. Instead of creatin
100100
text
101101
}
102102
}`
103-
},
103+
}
104104
```
105105

106106
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

Comments
 (0)