Quiz: Creating a Basic GraphQL Endpoint

Quiz yourself on how to create a basic GraphQL endpoint.

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

Get hands-on with 1200+ tech skills courses.