In GraphQL, what is the purpose of an introspection query?

  • It executes mutations
  • It fetches all available queries
  • It provides information about the schema
  • It retrieves user data
An introspection query in GraphQL is used to get information about the schema itself. It helps developers understand the types, queries, and mutations available in the API. It is not intended for user data retrieval or mutation execution.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *