GraphQL Yoga provides you a cross-platform GraphQL Server. So you can easily integrate it into any platform besides Node.js.
Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust.
We will use graphql-yoga
which has an agnostic HTTP handler using Fetch API's Request
and Response
objects.
Example
Create a deno-yoga.ts
file;
import {
createYoga,
createSchema,
} from 'https://cdn.skypack.dev/graphql-yoga@three?dts'
import { serve } from 'https://deno.land/std@0.157.0/http/server.ts'
const yoga = createYoga({
schema: createSchema({
typeDefs: /* GraphQL */ `
type Query {
hello: String!
}
`,
resolvers: {
Query: {
hello: () => 'Hello Deno!',
},
},
}),
})
serve(yoga, {
onListen({ hostname, port }) {
console.log(`Listening on http://${hostname}:${port}/graphql`)
},
})
And run it;
deno run index.ts
You can also check a full example on our GitHub repository here
Last updated on September 27, 2022