0.0.9 • Published 3 years ago

typescript-graphql v0.0.9

Weekly downloads
6
License
MIT
Repository
github
Last release
3 years ago

typescript-graphql

Requirements

You need to have rootDir compiler options set in TypeScript so that the script can generate data in proper places.

Installation

  1. npm install typescript-graphql

Make sure you have the peer dependencies installed

  1. npm install graphql GraphQL
  2. npm install typescript --save-dev TypeScript (development dependency)

How it works

  1. Module with resolvers
// query.ts
export const Query = {
  hello() {
    return 'world!';
  },
};
  1. Snapshot generator

JavaScript code doesn't provide any information about types at runtime. That's why we need to generate these from the source code using typescript-graphql CLI tool. Use

npx tsgc query.ts

This will generate corresponding *.graphql.json files for you that are used at runtime.

  1. Entry point
// app.ts
import { buildSchema } from 'typescript-graphql';
import * as express from 'express';
import { graphqlHTTP } from 'express-graphql';

const schema = buildSchemaFromCode({
  modulePath: path.resolve(__dirname, './module'),
});

const app = express();
app.use(
  '/graphql',
  graphqlHTTP({
    schema: schema,
    graphiql: true,
  })
);
app.listen(4000);

console.log('Running a GraphQL API server at http://localhost:4000/graphql');
0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.1

3 years ago

0.0.4

3 years ago

0.0.0

3 years ago