You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some cloud providers only support GraphQL for their public API. It would be good to understand how we can use GraphQL introspection to gather information CRUD operations for resources.
The text was updated successfully, but these errors were encountered:
The following introspection query allows us to fetch mutations (substitute mutationType for queryType for queries) and their return types. Since GraphQL does not have HTTP verbs, we'll have to use the operation name as a hint for what type of operation a certain query will perform in the backend. For example, createXYZ or deleteXYZ is for creating and deleting a type called XYZ.
Some cloud providers only support GraphQL for their public API. It would be good to understand how we can use GraphQL introspection to gather information CRUD operations for resources.
The text was updated successfully, but these errors were encountered: