What does “introspection” mean in GraphQL?

What does “introspection” mean in GraphQL?

a) A way to inspect the schema and its types
b) A performance optimization method
c) A query to modify the schema
d) A method to format responses

Answer:

a) A way to inspect the schema and its types

Explanation:

GraphQL introspection allows clients to query information about the schema itself, such as available types and fields, making it easier to understand and explore APIs.

Reference:

GraphQL Quiz – MCQ – Multiple Choice Questions

Scroll to Top