INNER CODE UNIT · JavaScript
fatal
sheerun/graphqlviz · cli.js:65
function fatal (e, text) {
console.error('ERROR processing input. Use --verbose flag to see output.')
console.error(e.message)
if (cli.flags.verbose) {
console.error(text)
console.error(e.stack)
}
process.exit(1)
}
// given a "GraphQL schema language" text file, converts into introspection JSON
function introspect (text) {
return new Promise(function (resolve, reject) {
try {
var astDocument = GraphQL.parse(text)
var schema = GraphQL.buildASTSchema(astDocument)