0f9ddf1e5d
* updating a switch into object literal and fixed a couple linter errors * added a comment about weird formatting * style: use lodash get * fix: pass eslint + puglint + jest
7 lines
180 B
JavaScript
7 lines
180 B
JavaScript
const { graphqlUploadExpress } = require('graphql-upload')
|
|
|
|
/**
|
|
* GraphQL File Upload Middleware
|
|
*/
|
|
module.exports = graphqlUploadExpress({ maxFileSize: 5000000, maxFiles: 20 })
|