Quiz: Creating a Basic GraphQL Endpoint
Quiz yourself on how to create a basic GraphQL endpoint.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
Which imports do we need to run GraphQL with Deno?
A.
import { applyGraphQL, gql } from "https://deno.land/std/graphql@0.6.2/mod.ts";
B.
import { applyGraphQL, gql } from "https://deno.land/x/oak_graphql@0.6.2/mod.ts";
C.
import { applyGraphQL } from "https://deno.land/x/oak_graphql@0.6.2/mod.ts"; import { gql } from "https://deno.land/std/graphql@0.6.2/mod.ts";
1 / 5
...