Skip to content

Commit

Permalink
Fixes ErrorException : Undefined array key "isRepeatable"
Browse files Browse the repository at this point in the history
  • Loading branch information
LastDragon-ru committed Mar 10, 2021
1 parent 3af8b92 commit 8dc5bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils/BuildClientSchema.php
Expand Up @@ -489,7 +489,7 @@ public function buildDirective(array $directive) : Directive
'name' => $directive['name'],
'description' => $directive['description'],
'args' => $this->buildInputValueDefMap($directive['args']),
'isRepeatable' => $directive['isRepeatable'],
'isRepeatable' => $directive['isRepeatable'] ?? false,
'locations' => $directive['locations'],
]);
}
Expand Down

0 comments on commit 8dc5bb4

Please sign in to comment.