Automattic\WooCommerce\Vendor\GraphQL\Validator\Rules

LoneSchemaDefinition{}WC 1.0└─ ValidationRule

Lone schema definition.

A Automattic\WooCommerce\Vendor\GraphQL document is only valid if it contains only one schema definition.

No Hooks.

Usage

$LoneSchemaDefinition = new LoneSchemaDefinition();
// use class methods

Methods

  1. public static canNotDefineSchemaWithinExtensionMessage()
  2. public getSDLVisitor(SDLValidationContext $context)
  3. public static schemaDefinitionNotAloneMessage()

LoneSchemaDefinition{} code WC 10.9.1

class LoneSchemaDefinition extends ValidationRule
{
    public static function schemaDefinitionNotAloneMessage(): string
    {
        return 'Must provide only one schema definition.';
    }

    public static function canNotDefineSchemaWithinExtensionMessage(): string
    {
        return 'Cannot define a new schema within a schema extension.';
    }

    public function getSDLVisitor(SDLValidationContext $context): array
    {
        $oldSchema = $context->getSchema();
        $alreadyDefined = $oldSchema === null
            ? false
            : (
                $oldSchema->astNode !== null
                || $oldSchema->getQueryType() !== null
                || $oldSchema->getMutationType() !== null
                || $oldSchema->getSubscriptionType() !== null
            );

        $schemaDefinitionsCount = 0;

        return [
            NodeKind::SCHEMA_DEFINITION => static function (SchemaDefinitionNode $node) use ($alreadyDefined, $context, &$schemaDefinitionsCount): void {
                if ($alreadyDefined) {
                    $context->reportError(new Error(static::canNotDefineSchemaWithinExtensionMessage(), $node));

                    return;
                }

                if ($schemaDefinitionsCount > 0) {
                    $context->reportError(new Error(static::schemaDefinitionNotAloneMessage(), $node));
                }

                ++$schemaDefinitionsCount;
            },
        ];
    }
}