Quiz: Creating a Basic GraphQL Endpoint
Quiz yourself on how to create a basic GraphQL endpoint.
We'll cover the following...
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";
Question 1 of 50 attempted
Access this course and 1400+ top-rated courses and projects.