Skip to content

Commit eb3bcc8

Browse files
authored
Fixing syntax error.
1 parent 0f7d859 commit eb3bcc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Plugin/GraphQL/Schemas/SchemaPluginBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ public function getServer() {
276276
});
277277

278278
$config->setValidationRules(function (OperationParams $params, DocumentNode $document, $operation) {
279-
if (isset($params->queryId) && empty($params->getOriginalInput('query')) {
279+
if (isset($params->queryId) && empty($params->getOriginalInput('query'))) {
280280
// Assume that pre-parsed documents are already validated. This allows
281281
// us to store pre-validated query documents e.g. for persisted queries
282282
// effectively improving performance by skipping run-time validation.

0 commit comments

Comments
 (0)