Skip to content

Commit e57a09d

Browse files
Update content/graphql/complexity.md
1 parent bc4ad99 commit e57a09d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/graphql/complexity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ Additionally, `@Query()` and `@Mutation()` may have a `complexity` property spec
9292
```typescript
9393
@Query({ complexity: (options: ComplexityEstimatorArgs) => options.args.count * options.childComplexity })
9494
items(@Args('count') count: number) {
95-
return itemsService.getItems({ count });
95+
return this.itemsService.getItems({ count });
9696
}
9797
```

0 commit comments

Comments
 (0)