node_modules.graphql-config.lib.__tests__.introspection-query.getSchema.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apollo-client-maven-plugin Show documentation
Show all versions of apollo-client-maven-plugin Show documentation
Maven plugin for generating graphql clients
"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