gestalt-graphql

generates a GraphQL schema with resolution based on a definition using the GraphQL schema language.

Usage no npm install needed!

<script type="module">
  import gestaltGraphql from 'https://cdn.skypack.dev/gestalt-graphql';
</script>

README

gestalt-graphql

npm version

Gestalt GraphQL generates a GraphQL schema with resolution based on a definition using the GraphQL schema language.

import fs from 'fs';
import gestaltGraphQL from 'gestalt-graphql';
import gestaltPostgres from 'gestalt-postgres';
import importAll from 'import-all';

const schemaText = fs.readFileSync(`${__dirname}/schema.graphql`);

const {schema} = gestaltGraphQL(
  schemaText,
  importAll(`${__dirname}/objects`),
  importAll(`${__dirname}/mutations`),
  gestaltPostgres({databaseURL: 'postgres://localhost/example'}),
);