Core GraphQL API

Welcome to the Core GraphQL API section of Administrate DX.

This section covers the domains that the Core API is responsible for, including CRM to manage Accounts & Contacts and the Training domain which covers Courses and Events.

Schema

The full set of entities are listed in the API Reference.

If you are unfamiliar with GraphQL, we recommend starting with Introduction to GraphQL in our guides section.

For information on how to authenticate against the Core GraphQL API, see Authorization.

Administrate DX Editor

Click "Try Me" on any example query to run the query against our sample data. Connect to your Administrate instance to run queries against your data.

Example

query {
  events {
    edges {
      node {
        id
        title
      }
    }
  }
}