17 lines
240 B
JavaScript
Raw Normal View History

2021-05-31 18:28:42 +02:00
'use strict';
const path = require('path');
module.exports = ({ env }) => ({
graphql: {
2021-05-31 18:28:42 +02:00
enabled: true,
2021-08-17 19:28:10 +02:00
config: {
amountLimit: 50,
depthLimit: 10,
apolloServer: {
tracing: true,
},
},
},
});