Skip to content

Commit 23ebef4

Browse files
authored
Fix syntax error on example snippet (#802)
1 parent 7a4379d commit 23ebef4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

website/versioned_docs/version-8.2.0/query-plan.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class ProductsController
5151
#[Query]
5252
public function products(ResolveInfo $info): array
5353
{
54-
if (isset($info->getFieldSelection()['manufacturer']) {
54+
if (isset($info->getFieldSelection()['manufacturer'])) {
5555
// Let's perform a request with a JOIN on manufacturer
5656
} else {
5757
// Let's perform a request without a JOIN on manufacturer

0 commit comments

Comments
 (0)