All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.graphql-config.lib.__tests__.introspection-query.getSchema.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ava_1 = require("ava");
var graphql_1 = require("graphql");
var _1 = require("../../");
ava_1.default('reads single schema', function (t) {
    var config = _1.getGraphQLConfig(__dirname);
    var typeDefs = "schema {\n  query: RootQueryType\n}\n\ntype Bar {\n  widgets: [Widget]\n}\n\ntype RootQueryType {\n  foo: String\n  bar: Bar\n}\n\ntype Widget {\n  count: Int\n}\n";
    t.is(graphql_1.printSchema(config.getProjectConfig('testSchemaA').getSchema()), typeDefs);
});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy