0.5.5 • Published 6 years ago

jokio-graphql v0.5.5

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

GraphQL Server

Build Status npm version engine: jokio

High level package built on top of graphql-yoga, to create graphql server with websocket support easily.

Features:

  • All graphql-yoga features
  • Authentication support
  • Apollo Engine support
  • Pre-defined scalar types: Date, Time, DateTime, JSON
  • Pre-defined Graph for getting server stats
  • Remote Schema stitching
  • Local Schema stitching
  • Rest apis integration
  • Dotenv support (for development environment)
  • Web sockets improved support

Example:

import { run } from 'jokio'
import { graphql, LocalSchema } from 'jokio-graphql';

const schema: LocalSchema = {
  typeDefs: `
    extend type Query {
      hello: String
    }
  `,
  resolvers: {
    Query: {
      hello: () => 'world'
    }
  }
}

run(
  graphql({ localSchemas: [schema] })
)
0.5.5

6 years ago

0.5.4

6 years ago

0.5.3

6 years ago

0.5.2

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.0

6 years ago

0.3.10

6 years ago

0.3.9

6 years ago

0.3.8

6 years ago

0.3.7

6 years ago

0.3.5

6 years ago

0.3.4

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago