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 965290b commit 9c0073bCopy full SHA for 9c0073b
README.md
@@ -83,10 +83,10 @@ resolveCursorConnection(
83
```ts
84
import { resolveArrayConnection } from 'ts-relay-cursor-paging'
85
86
- const numbers: BatchLoadableNumberThing[] = []
+ const numbers: { id: number }[] = []
87
88
for (let i = 0; i < 200; i += 1)
89
- numbers.push(new BatchLoadableNumberThing(i))
+ numbers.push({ id: i + 1 })
90
91
resolveArrayConnection({ args }, numbers)
92
```
0 commit comments