Skip to content

Commit f2aea84

Browse files
committed
Update documentation for required estimators property
1 parent d64adf5 commit f2aea84

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

README.md

+11-5
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,17 @@ import schema from './schema';
125125
const app = express();
126126
app.use('/api', graphqlHTTP(async (request, response, {variables}) => ({
127127
schema,
128-
validationRules: [ queryComplexity({
129-
maximumComplexity: 1000,
130-
variables,
131-
onComplete: (complexity: number) => {console.log('Query Complexity:', complexity);},
132-
}) ]
128+
validationRules: [
129+
queryComplexity({
130+
estimators: [
131+
// Configure your estimators
132+
simpleEstimator({defaultComplexity: 1})
133+
],
134+
maximumComplexity: 1000,
135+
variables,
136+
onComplete: (complexity: number) => {console.log('Query Complexity:', complexity);},
137+
})
138+
]
133139
})));
134140
```
135141

0 commit comments

Comments
 (0)