Quiz: Introduction to Deno, TypeScript, and GraphQL
Quiz yourself on Deno, Typescript, and GraphQL.
We'll cover the following...
We'll cover the following...
Technical Quiz
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")
}
1 / 5