mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
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 })
|