<?php

namespace DummyNamespace;

use Rebing\GraphQL\Support\Contracts\ConfigConvertible;

class DummyClass implements ConfigConvertible
{
    public function toConfig(): array
    {
        return [
            'query' => [
                // ExampleQuery::class,
            ],

            'mutation' => [
                // ExampleMutation::class,
            ],

            'types' => [
                // ExampleType::class,
            ],
        ];
    }
}
