Certain Apollo APIs are available directly through GraphQL. GraphQL is a query language that allows you to precisely fetch the data you want. This is exposed directly in your Apollo Hub through the API Explorer application. The documentation explorer lists all information accessible in your Hub through GraphQL.

Use the documentation explorer to view all queries and mutations available in the Apollo GraphQL schema. This presents a searchable interface to navigate through the nested schema that branches off the root-level query and mutation type.


The following are introductory examples to get familiar with interacting with Apollo APIs.
Copied!1 2 3 4 5 6query GetCurrentUser { me { id fullName } }
Copied!1 2 3 4 5 6 7 8 9query GetEnvironments { apollo { environments(pageSize: 100) { environments { id } } } }