14 lines
249 B
JavaScript
14 lines
249 B
JavaScript
var graphiqlExpress = require('graphql-server-express').graphiqlExpress;
|
|
|
|
module.exports = graphiqlExpress({
|
|
endpointURL: '/graphql',
|
|
query:
|
|
'{\n' +
|
|
' reports {\n' +
|
|
' id,\n' +
|
|
' type,\n' +
|
|
' title\n' +
|
|
' }\n' +
|
|
'}'
|
|
});
|