Skip to content

Commit e731c82

Browse files
committed
fix: lint error
1 parent 5af6854 commit e731c82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/northwind/models/employee.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ EmployeeTC.getResolver('pagination').extensions = {
7272
complexity: ({ args, childComplexity }) => childComplexity * (args.perPage || 20),
7373
};
7474
EmployeeTC.getResolver('findMany').extensions = {
75-
complexity: ({ args, childComplexity }) => childComplexity * 100,
75+
complexity: ({ childComplexity }) => childComplexity * 100,
7676
};
7777

7878
const findManyResolver = EmployeeTC.getResolver('findMany').addFilterArg({

0 commit comments

Comments
 (0)