Skip to content

Commit

Permalink
feature [AdminBundle] Implement setting view + introduce dashboard vi…
Browse files Browse the repository at this point in the history
…ews + cleanup navigation
  • Loading branch information
Franz Wilding committed Dec 19, 2019
1 parent 5c16c53 commit 5f3d958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GraphQL/Resolver/Field/QueryResolver.php
Expand Up @@ -82,7 +82,7 @@ public function resolve($value, $args, $context, ResolveInfo $info) {
case 'get':
return $this->ifAccess(empty($args['id']) ?
$contentManager->create($domain, $type) :
$contentManager->get($domain, $type, $args['id'], $args['includeDeleted'])
$contentManager->get($domain, $type, $args['id'], $args['includeDeleted'] ?? false)
);
case 'find':
return $contentManager->find(
Expand Down

0 comments on commit 5f3d958

Please sign in to comment.