class SchemaBuilder (View source)

Traits

A class that can be instantiated or replaced via DI

Methods

static Injectable
create(array ...$args)

An implementation of the factory method, allows you to create an instance of a class

static Injectable
singleton(string $class = null)

Creates a class instance by the "singleton" design pattern.

__construct(SchemaStorageCreator $storeCreator)

No description

SchemaConfig|null
getConfig(string $key)

Retrieves the context for an already stored schema which does not require booting. Useful for getting data from a saved schema at request time.

Schema|null
getSchema(string $key)

Gets a graphql-php Schema instance that can be queried

Schema
build(Schema $schema, bool $clear = false)

Stores a schema and fetches the graphql-php instance

Schema
buildByName(string $key, bool $clear = false)

Boots a schema, persists it, and fetches it

boot(string $key)

Auto-discovers the schema based on the provided schema key in Silverstripe's configuration layer. Merges the global schema with specifics for this schema key.

setStoreCreator(SchemaStorageCreator $storeCreator)

No description

Details

static Injectable create(array ...$args)

An implementation of the factory method, allows you to create an instance of a class

This method will defer class substitution to the Injector API, which can be customised via the Config API to declare substitution classes.

This can be called in one of two ways - either calling via the class directly, or calling on Object and passing the class name as the first parameter. The following are equivalent: $list = DataList::create('SiteTree'); $list = SiteTree::get();

Parameters

array ...$args

Return Value

Injectable

static Injectable singleton(string $class = null)

Creates a class instance by the "singleton" design pattern.

It will always return the same instance for this class, which can be used for performance reasons and as a simple way to access instance methods which don't rely on instance data (e.g. the custom SilverStripe static handling).

Parameters

string $class

Optional classname to create, if the called class should not be used

Return Value

Injectable

The singleton instance

__construct(SchemaStorageCreator $storeCreator)

Parameters

SchemaStorageCreator $storeCreator

SchemaConfig|null getConfig(string $key)

Retrieves the context for an already stored schema which does not require booting. Useful for getting data from a saved schema at request time.

Returns null when no stored schema can be found.

Parameters

string $key

Return Value

SchemaConfig|null

Schema|null getSchema(string $key)

Gets a graphql-php Schema instance that can be queried

Parameters

string $key

Return Value

Schema|null

Exceptions

SchemaNotFoundException

Schema build(Schema $schema, bool $clear = false)

Stores a schema and fetches the graphql-php instance

Parameters

Schema $schema
bool $clear

Return Value

Schema

Exceptions

SchemaNotFoundException
EmptySchemaException

Schema buildByName(string $key, bool $clear = false)

Boots a schema, persists it, and fetches it

Parameters

string $key
bool $clear

Return Value

Schema

Exceptions

SchemaBuilderException
SchemaNotFoundException
EmptySchemaException

Schema boot(string $key)

Auto-discovers the schema based on the provided schema key in Silverstripe's configuration layer. Merges the global schema with specifics for this schema key.

An instance can only be booted once to avoid conflicts with further instance level modifications such as {@link addType()}.

This method should only be used on schemas which have not been stored, and is usually only needed for the process of storing them (through {@link SchemaBuilder->build()}).

Parameters

string $key

Return Value

Schema

Exceptions

SchemaBuilderException

SchemaStorageCreator getStoreCreator()

Return Value

SchemaStorageCreator

SchemaBuilder setStoreCreator(SchemaStorageCreator $storeCreator)

Parameters

SchemaStorageCreator $storeCreator

Return Value

SchemaBuilder