Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 771 Bytes

repository_schema.md

File metadata and controls

30 lines (26 loc) · 771 Bytes

The content schema

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:

Examples

List content types and their fields

{
    _repository {
        contentTypes
        {
            identifier
            groups {
              identifier
            }
            fieldDefinitions {
              identifier
              fieldTypeIdentifier
            }  
        }
    }
}