This GraphQL schema exposes the eZ Platform Repository with a structure
similar to that of the Public API.
It gives access to Content, Fields, Locations, Content types... It can be accessed through
https://<host>/graphql
, as well as http://<host>/graphiql
if
you have installed GraphiQL.
Items from this schema are accessible from the _repository
root namespace:
{
_repository {
contentTypes
{
identifier
groups {
identifier
}
fieldDefinitions {
identifier
fieldTypeIdentifier
}
}
}
}