Skip to content

Commit

Permalink
BUGFIX: incorrect array shape for CRUD args
Browse files Browse the repository at this point in the history
  • Loading branch information
Uncle Cheese committed Jan 20, 2017
1 parent 510ea7e commit baf8b93
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Scaffolding/Scaffolders/CRUD/Update.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ public function getIdentifier()
protected function createArgs()
{
return [
'ID' => Type::nonNull(Type::id()),
'ID' => [
'type' => Type::nonNull(Type::id())
],
'Input' => [
'type' => Type::nonNull($this->generateInputType()),
],
Expand Down

0 comments on commit baf8b93

Please sign in to comment.