-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a698263
commit a677a30
Showing
18 changed files
with
1,265 additions
and
1,220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import { g, InferResolvers, buildSchema } from './../src/index' | ||
import { createYoga } from 'graphql-yoga' | ||
import { useDeferStream } from '@graphql-yoga/plugin-defer-stream' | ||
import { createServer } from 'node:http' | ||
|
||
const queryType = g.type('Query', { | ||
alphabet: g.string().list().description(`This field can be @stream'ed`), | ||
fastField: g.string().description('A field that resolves fast.'), | ||
slowField: g | ||
.string() | ||
.optional() | ||
.description( | ||
'A field that resolves slowly. Maybe you want to @defer this field ;)' | ||
) | ||
.args({ | ||
waitFor: g.int().default(5000), | ||
}) | ||
}) | ||
|
||
const wait = (time: number) => new Promise(resolve => setTimeout(resolve, time)) | ||
|
||
const resolvers: InferResolvers<{ Query: typeof queryType }, {}> = { | ||
Query: { | ||
async *alphabet() { | ||
for (const character of ['a', 'b', 'c', 'd', 'e', 'f', 'g']) { | ||
yield character | ||
await wait(1000) | ||
} | ||
}, | ||
fastField: async () => { | ||
await wait(100) | ||
return 'I am speed' | ||
}, | ||
slowField: async (_, { waitFor }) => { | ||
await wait(waitFor) | ||
return 'I am slow' | ||
} | ||
} | ||
} | ||
|
||
const schema = buildSchema({ g, resolvers }) | ||
const yoga = createYoga({ | ||
schema, | ||
plugins: [useDeferStream()] | ||
}) | ||
|
||
const server = createServer(yoga) | ||
|
||
server.listen(4000, () => { | ||
console.info('Server is running on http://localhost:4000/graphql') | ||
}) |
Oops, something went wrong.