How to create a new schema in GraphQL
In order to access data from your own content types you need to create an access point which is based on a schema. A schema defines a hierarchy of types with fields that are populated from your backend data stores. The schema also specifies exactly which queries and mutations are available for clients to execute.
The first step that is recommended, is to create a custom module in Drupal like you would normally do.
[Read More]