File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -352,6 +352,28 @@ module.exports.ParseServerOptions = {
352
352
env : 'PARSE_SERVER_WEBHOOK_KEY' ,
353
353
help : 'Key sent with outgoing webhook calls' ,
354
354
} ,
355
+ mountGraphQL : {
356
+ env : 'PARSE_SERVER_MOUNT_GRAPHQL' ,
357
+ help : 'Mounts the GraphQL endpoint' ,
358
+ action : parsers . booleanParser ,
359
+ default : false ,
360
+ } ,
361
+ graphQLPath : {
362
+ env : 'PARSE_SERVER_GRAPHQL_PATH' ,
363
+ help : 'Mount path for the GraphQL endpoint, defaults to /graphql' ,
364
+ default : '/graphql' ,
365
+ } ,
366
+ mountPlayground : {
367
+ env : 'PARSE_SERVER_MOUNT_PLAYGROUND' ,
368
+ help : 'Mounts the GraphQL Playground' ,
369
+ action : parsers . booleanParser ,
370
+ default : false ,
371
+ } ,
372
+ playgroundPath : {
373
+ env : 'PARSE_SERVER_PLAYGROUND_PATH' ,
374
+ help : 'Mount path for the GraphQL Playground, defaults to /playground' ,
375
+ default : '/playground' ,
376
+ } ,
355
377
} ;
356
378
module . exports . CustomPagesOptions = {
357
379
choosePassword : {
You can’t perform that action at this time.
0 commit comments