From 787ef68d319981e878c3e00fcf10534565e1668d Mon Sep 17 00:00:00 2001 From: Uri Goldshtein Date: Fri, 10 Apr 2020 13:52:52 +0200 Subject: [PATCH] Add GraphQL Mesh to tools GraphQL Mesh allows you to use GraphQL query language to access data in remote APIs that don't run GraphQL (and also ones that do run GraphQL). It can be used as a gateway to other services, or run as a local GraphQL schema that aggregates data from remote APIs. The goal of GraphQL Mesh is to let developers easily access services that are written in other APIs specs (such as gRPC, OpenAPI/Swagger, OData, SOAP/WSDL, Apache Thrift, and also GraphQL) with GraphQL queries and mutations. --- site/code/index.html.js | 1 + 1 file changed, 1 insertion(+) diff --git a/site/code/index.html.js b/site/code/index.html.js index 4e1e6f29fb..b3e96f6e42 100644 --- a/site/code/index.html.js +++ b/site/code/index.html.js @@ -682,6 +682,7 @@ Executor.execute(schema, query) map println - [libgraphqlparser](https://github.com/graphql/libgraphqlparser): A GraphQL query language parser in C++ with C and C++ APIs. - [Graphql Language Service](https://github.com/graphql/graphql-language-service): An interface for building GraphQL language services for IDEs (diagnostics, autocomplete etc). - [quicktype](https://quicktype.io) ([github](https://github.com/quicktype/quicktype)): Generate types for GraphQL queries in TypeScript, Swift, golang, C#, C++, and more. + - [GraphQL Mesh](https://graphql-mesh.com): GraphQL Mesh generates a GraphQL SDK from remote APIs (gRPC, OpenAPI/Swagger, OData, SOAP/WSDL, Apache Thrift, and also GraphQL) automatically. - [GraphQL Code Generator](https://graphql-code-generator.com): GraphQL code generator with flexible support for custom plugins and templates like Typescript (frontend and backend), React Hooks, resolvers signatures and more. - [GraphQL Inspector](https://github.com/kamilkisiela/graphql-inspector): Compare schemas, validate documents, find breaking changes, find similar types, schema coverage, and more. - [GraphQL Config](https://github.com/kamilkisiela/graphql-config): One configuration for all your GraphQL tools (supported by most tools, editors & IDEs).