0.1.1 • Published 4 years ago

@ardatan/grpc-graphql-schema v0.1.1

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

Grpc Graphql Schema

Convert gRPC proto Definition into GraphQL Schema

Slides @ GraphQL BKK 4.0

Medium Article

How to Use

const { getGraphqlSchemaFromGrpc } = require('grpc-graphql-schema');

getGraphqlSchemaFromGrpc({
  endpoint: 'localhost:50051',
  protoFilePath: '/path/to/ServiceDefinition.proto',
  serviceName: 'GrpcServiceName',
  packageName: 'name.package',
}).then(schema => {
  // load schema in graphql server
});