Version 4 supported
This version of Silverstripe CMS is still supported though will not receive any additional features. Go to documentation for the most recent stable version.

Working with generic types

Creating a generic type
Creating a type that doesn't map to a DataObject
Adding pagination
Add the pagination plugin to a generic query
Building a custom query
Add a custom query for any type of data
Adding arguments
Add arguments to your fields, queries, and mutations
The resolver discovery pattern
How you can opt out of mapping fields to resolvers by adhering to naming conventions
Enums, unions, and interfaces
Add some non-object types to your schema
Adding descriptions
Add descriptions to just about anything in your schema to improve your developer experience

You are viewing docs for silverstripe/graphql 4.x. If you are using 3.x, documentation can be found in the GitHub repository

Adding arguments

Fields can have arguments, and queries are just fields, so let's add a simple way of influencing our query response:

# app/_graphql/schema.yml
queries:
  'readCountries(limit: Int!)': '[Country]'

In the above example, the limit argument is required by making it non-nullable. If you want to be able to get an un-filtered list, you can instead allow the argument to be nullable by removing the !: 'readCountries(limit: Int)': '[Country]'

We've provided the required argument limit to the query, which will allow us to truncate the results. Let's update the resolver accordingly.

namespace App\GraphQL\Resolver;

use SilverStripe\Core\Injector\Injector;
use SilverStripe\i18n\Data\Locales;

class MyResolver
{
    public static function resolveReadCountries($obj, array $args = [])
    {
        $limit = $args['limit'];
        $results = [];
        $countries = Injector::inst()->get(Locales::class)->getCountries();
        $countries = array_slice($countries, 0, $limit);

        foreach ($countries as $code => $name) {
            $results[] = [
                'code' => $code,
                'name' => $name,
            ];
        }

        return $results;
    }
}

Now let's try our query again. This time, notice that the IDE is telling us we're missing a required argument. We need to add the argument to our query:

query {
  readCountries(limit: 5) {
    name
    code
  }
}

This works pretty well, but maybe it's a bit over the top to require the limit argument. We want to optimise performance, but we also don't want to burden the developer with tedium like this. Let's give it a default value.

# app/_graphql/schema.yml
queries:
  'readCountries(limit: Int = 20)': '[Country]'

Rebuild the schema and try the query again without adding a limit in the query. Notice that the IDE is no longer yelling at you for a limit argument, but the result list is limited to the first 20 items.

Let's take this a step further by turning this in to a proper paginated result.

Further reading

Creating a generic type
Creating a type that doesn't map to a DataObject
Adding pagination
Add the pagination plugin to a generic query
Building a custom query
Add a custom query for any type of data
Adding arguments
Add arguments to your fields, queries, and mutations
The resolver discovery pattern
How you can opt out of mapping fields to resolvers by adhering to naming conventions
Enums, unions, and interfaces
Add some non-object types to your schema
Adding descriptions
Add descriptions to just about anything in your schema to improve your developer experience