Login
Remember
Register
Ask a Question
Which of the following is a special root type present for writing the schema of an API?
0
votes
asked
Mar 1, 2022
in
GraphQL
by
sharadyadav1986
Which of the following is a special root type present for writing the schema of an API?
select the correct option from below list
a)type Subscription{…}
b)type Mutation{…}
c)type Query{…}
d)All the options
graphql-root-type
graphql-schema
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 1, 2022
by
sharadyadav1986
d)All the options
type Subscription{…}, type Mutation{…} and type Query{…} are special root type present for writing the schema of an API
...