Quiz: Introduction to Deno, TypeScript, and GraphQL

Quiz yourself on Deno, Typescript, and GraphQL.

1

How do we get a user object with id = 1000 and properties username and email in GraphQL?

A)
{
  user(id: "1000") (
    username,
    email
  )
}
B)
{
  user(id: "1000") {
    username,
    email
  }
}
C)
{
  user {
    username,
    email
  } (id: "1000")
}
Question 1 of 50 attempted

Get hands-on with 1200+ tech skills courses.