Skip to content

Commit 2dce624

Browse files
committed
New code.json
1 parent 87328dc commit 2dce624

File tree

7 files changed

+293
-256
lines changed

7 files changed

+293
-256
lines changed

data/code.json

Lines changed: 271 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,271 @@
1+
{
2+
"Libraries": {
3+
"C# / .NET": {
4+
"Server Libraries": [
5+
{
6+
"name": "graphql-dotnet",
7+
"description": "GraphQL for .NET",
8+
"howto": "```csharp\nusing System;\nusing GraphQL;\nusing GraphQL.Types;\n\npublic class Program\n{\n public static void Main(string[] args)\n {\n var schema = Schema.For(@\"\n type Query {\n hello: String\n }\n \");\n\n var json = schema.Execute(_ =>\n {\n _.Query = \"{ hello }\";\n _.Root = new { Hello = \"Hello World!\" };\n });\n\n Console.WriteLine(json);\n }\n} \n```",
9+
"url": "https://github.com/graphql-dotnet/graphql-dotnet",
10+
"github": "graphql-dotnet/graphql-dotnet"
11+
},
12+
{
13+
"name": "graphql-net",
14+
"description": "Convert GraphQL to IQueryable",
15+
"url": "https://github.com/ckimes89/graphql-net",
16+
"github": "ckimes89/graphql-net"
17+
},
18+
{
19+
"name": "Entity GraphQL",
20+
"description": ".NET Core GraphQL library. Compiles to IQueryable to easily expose a schema from an existing data model (E.g. from an Entity Framework data model)",
21+
"url": "https://github.com/lukemurray/EntityGraphQL",
22+
"github": "lukemurray/EntityGraphQL"
23+
},
24+
{
25+
"name": "Hot Chocolate",
26+
"description": "GraphQL Server for .NET core and .NET classic",
27+
"url": "https://github.com/ChilliCream/hotchocolate",
28+
"github": "ChilliCream/hotchocolate"
29+
}
30+
],
31+
"GraphQL Clients": [
32+
{
33+
"name": "GraphQL.Client",
34+
"description": "A GraphQL Client for .NET.",
35+
"url": "https://github.com/graphql-dotnet/graphql-client",
36+
"github": "graphql-dotnet/graphql-client"
37+
},
38+
{
39+
"name": "graphql-net-client",
40+
"description": "Basic example GraphQL client for .NET.",
41+
"url": "https://github.com/bkniffler/graphql-net-client",
42+
"github": "bkniffler/graphql-net-client"
43+
},
44+
{
45+
"name": "SAHB.GraphQLClient",
46+
"description": "GraphQL client which supports generating queries from C# classes",
47+
"url": "https://github.com/sahb1239/SAHB.GraphQLClient",
48+
"github": "SAHB.GraphQLClient"
49+
}
50+
]
51+
},
52+
"JavaScript": {
53+
"GraphQL Clients": [
54+
{
55+
"name": "Relay",
56+
"description": "Facebook's framework for building React applications that talk to a GraphQL backend.",
57+
"url": "https://facebook.github.io/relay/",
58+
"npm": "react-relay",
59+
"github": "facebook/relay"
60+
},
61+
{
62+
"name": "Apollo Client",
63+
"description": "A powerful JavaScript GraphQL client, designed to work well with React, React Native, Angular 2, or just plain JavaScript.",
64+
"url": "http://apollographql.com/client/",
65+
"npm": "@apollo/client",
66+
"github": "apollographql/apollo-client"
67+
},
68+
{
69+
"name": "GraphQL Request",
70+
"description": "A simple and flexible JavaScript GraphQL client that works in all JavaScript environments (the browser, Node.js, and React Native) - basically a lightweight wrapper around `fetch`.",
71+
"url": "https://github.com/prisma/graphql-request",
72+
"npm": "graphql-request",
73+
"github": "prisma-labs/graphql-request"
74+
},
75+
{
76+
"name": "Lokka",
77+
"description": "A simple JavaScript GraphQL client that works in all JavaScript environments (the browser, Node.js, and React Native).",
78+
"url": "https://github.com/kadirahq/lokka",
79+
"npm": "lokka",
80+
"github": "kadirahq/lokka"
81+
},
82+
{
83+
"name": "nanogql",
84+
"description": "Tiny GraphQL client library using template strings.",
85+
"url": "https://github.com/yoshuawuyts/nanogql",
86+
"npm": "nanographql",
87+
"github": "choojs/nanographql"
88+
},
89+
{
90+
"name": "gq-loader",
91+
"description": "A simple JavaScript GraphQL client,Let the *.gql file be used as a module through webpack loader.",
92+
"url": "https://github.com/Houfeng/gq-loader",
93+
"npm": "gq-loader",
94+
"github": "Houfeng/gq-loader"
95+
},
96+
{
97+
"name": "AWS Amplify",
98+
"description": "A JavaScript library for application development using cloud services, which supports GraphQL backend and React components for working with GraphQL data.",
99+
"url": "https://docs.amplify.aws/",
100+
"npm": "aws-amplify",
101+
"github": "aws-amplify/amplify-js"
102+
},
103+
{
104+
"name": "Grafoo",
105+
"description": "An all purpose GraphQL client with view layer integrations for multiple frameworks in just 1.6kb.",
106+
"url": "https://github.com/grafoojs/grafoo",
107+
"npm": "@grafoo/core",
108+
"github": "grafoojs/grafoo"
109+
},
110+
{
111+
"name": "urql",
112+
"description": "A highly customizable and versatile GraphQL client for React.",
113+
"url": "https://formidable.com/open-source/urql/",
114+
"npm": "urql",
115+
"github": "FormidableLabs/urql"
116+
},
117+
{
118+
"name": "graphqurl",
119+
"description": "curl for GraphQL with autocomplete, subscriptions and GraphiQL. Also a dead-simple universal javascript GraphQL client.",
120+
"url": "https://github.com/hasura/graphqurl",
121+
"npm": "graphqurl",
122+
"github": "hasura/graphqurl"
123+
}
124+
],
125+
"Server Libraries": [
126+
{
127+
"name": "GraphQL.js",
128+
"description": "The reference implementation of the GraphQL specification, designed for running GraphQL in a Node.js environment.",
129+
"howto": "To run a `GraphQL.js` hello world script from the command line:\n\n```bash\nnpm install graphql\n```\n\nThen run `node hello.js` with this code in `hello.js`:\n\n```js\nvar { graphql, buildSchema } = require('graphql');\n\nvar schema = buildSchema(`\n type Query {\n hello: String\n }\n`);\n\nvar root = { hello: () => 'Hello world!' };\n\ngraphql(schema, '{ hello }', root).then((response) => {\n console.log(response);\n});\n```",
130+
"url": "/graphql-js/",
131+
"npm": "graphql",
132+
"github": "graphql/graphql-js"
133+
},
134+
{
135+
"name": "Express GraphQL",
136+
"description": "The reference implementation of a GraphQL API server over an Express webserver. You can use this to run GraphQL in conjunction with a regular Express webserver, or as a standalone GraphQL server.",
137+
"howto": "To run an `express-graphql` hello world server:\n\n```bash\nnpm install express express-graphql graphql\n```\n\nThen run `node server.js` with this code in `server.js`:\n\n```js\nvar express = require('express');\nvar { graphqlHTTP } = require('express-graphql');\nvar { buildSchema } = require('graphql');\n\nvar schema = buildSchema(`\n type Query {\n hello: String\n }\n`);\n\nvar root = { hello: () => 'Hello world!' };\n\nvar app = express();\napp.use('/graphql', graphqlHTTP({\n schema: schema,\n rootValue: root,\n graphiql: true,\n}));\napp.listen(4000, () => console.log('Now browse to localhost:4000/graphql'));\n```",
138+
"url": "/graphql-js/running-an-express-graphql-server/",
139+
"npm": "express-graphql",
140+
"github": "graphql/express-graphql"
141+
},
142+
{
143+
"name": "Apollo Server",
144+
"description": "A set of GraphQL server packages from Apollo that work with various Node.js HTTP frameworks (Express, Connect, Hapi, Koa etc).",
145+
"howto": "To run a hello world server with apollo-server-express:\n\n```bash\nnpm install apollo-server-express express \n```\n\nThen run `node server.js` with this code in `server.js`:\n\n```js\nconst express = require('express');\nconst { ApolloServer, gql } = require('apollo-server-express');\n\nconst typeDefs = gql`\n type Query {\n hello: String\n }\n`;\n\nconst resolvers = {\n Query: {\n hello: () => 'Hello world!',\n },\n};\n\nconst server = new ApolloServer({ typeDefs, resolvers });\n\nconst app = express();\nserver.applyMiddleware({ app });\n\napp.listen({ port: 4000 }, () =>\n console.log('Now browse to http://localhost:4000' + server.graphqlPath)\n);\n```\n\nApollo Server also supports all Node.js HTTP server frameworks: Express, Connect, HAPI, Koa and NestJs.",
146+
"url": "https://www.apollographql.com/docs/apollo-server/",
147+
"npm": "apollo-server-express",
148+
"github": "apollographql/apollo-server"
149+
}
150+
]
151+
},
152+
"Ruby": {
153+
"Server Libraries": [
154+
{
155+
"name": "graphql-ruby",
156+
"description": "A Ruby library for building GraphQL APIs.",
157+
"howto": "To run a hello world script with `graphql-ruby`:\n```bash\ngem install graphql\n```\n\nThen run `ruby hello.rb` with this code in `hello.rb`:\n\n```ruby\nrequire 'graphql'\n\nclass QueryType < GraphQL::Schema::Object\n graphql_name 'Query'\n field :hello do\n type types.String\n resolve -> (obj, args, ctx) { 'Hello world!' }\n end\nend\n\nclass Schema < GraphQL::Schema\n query QueryType\nend\n\nputs Schema.execute('{ hello }').to_json\n```\nThere are also nice bindings for Relay and Rails.",
158+
"url": "https://github.com/rmosolgo/graphql-ruby",
159+
"gem": "graphql",
160+
"github": "rmosolgo/graphql-ruby"
161+
},
162+
{
163+
"name": "Agoo",
164+
"description": "A high performance web server with support for GraphQL. Agoo strives for a simple, easy to use API for GraphQL.",
165+
"howto": "```ruby\nrequire 'agoo'\n\nclass Query\n def hello\n 'hello'\n end\nend\n\nclass Schema\n attr_reader :query\n\n def initialize\n @query = Query.new()\n end\nend\n\nAgoo::Server.init(6464, 'root', thread_count: 1, graphql: '/graphql')\nAgoo::Server.start()\nAgoo::GraphQL.schema(Schema.new) {\n Agoo::GraphQL.load(%^type Query { hello: String }^)\n}\nsleep\n\n# To run this GraphQL example type the following then go to a browser and enter\n# a URL of localhost:6464/graphql?query={hello}\n#\n# ruby hello.rb\n```",
166+
"gem": "agoo",
167+
"github": "ohler55/agoo"
168+
}
169+
]
170+
}
171+
},
172+
"Tools": [
173+
{
174+
"name": "GraphiQL",
175+
"description": "An interactive in-browser GraphQL IDE.",
176+
"url": "https://github.com/graphql/graphiql",
177+
"npm": "graphiql",
178+
"github": "graphql/graphiql"
179+
},
180+
{
181+
"name": "libgraphqlparser",
182+
"description": "A GraphQL query language parser in C++ with C and C++ APIs.",
183+
"url": "https://github.com/graphql/libgraphqlparser",
184+
"github": "graphql/libgraphqlparser"
185+
},
186+
{
187+
"name": "GraphQL Language Service",
188+
"description": "An interface for building GraphQL language services for IDEs (diagnostics, autocomplete etc).",
189+
"url": "https://github.com/graphql/graphql-language-service",
190+
"npm": "graphql-language-service",
191+
"github": "graphql/graphql-language-service"
192+
},
193+
{
194+
"name": "quicktype",
195+
"description": "Generate types for GraphQL queries in TypeScript, Swift, golang, C#, C++, and more.",
196+
"url": "https://quicktype.io/",
197+
"npm": "quicktype",
198+
"github": "quicktype/quicktype"
199+
},
200+
{
201+
"name": "GraphQL-ESLint",
202+
"description": "GraphQL-ESLint integrates GraphQL AST in the ESLint core (as a parser).",
203+
"url": "https://github.com/dotansimha/graphql-eslint/",
204+
"npm": "@graphql-eslint/eslint-plugin",
205+
"github": "dotansimha/graphql-eslint/"
206+
},
207+
{
208+
"name": "GraphQL Modules",
209+
"description": "GraphQL Modules lets you separate your backend implementation to small, reusable, easy-to-implement and easy-to-test pieces.",
210+
"url": "https://graphql-modules.com",
211+
"npm": "graphql-modules",
212+
"github": "Urigo/graphql-modules"
213+
},
214+
{
215+
"name": "GraphQL Tools",
216+
"description": "A set of utils for faster development of GraphQL tools (Schema and documents loading, Schema merging and more).",
217+
"url": "https://graphql-tools.com",
218+
"npm": "graphql-tools",
219+
"github": "ardatan/graphql-tools"
220+
},
221+
{
222+
"name": "GraphQL Config",
223+
"description": "One configuration for all your GraphQL tools (supported by most tools, editors & IDEs).",
224+
"url": "https://graphql-config.com",
225+
"npm": "graphql-config",
226+
"github": "kamilkisiela/graphql-config"
227+
},
228+
{
229+
"name": "GraphQL Mesh",
230+
"description": "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.",
231+
"url": "https://graphql-mesh.com",
232+
"npm": "@graphql-mesh/cli",
233+
"github": "Urigo/graphql-mesh"
234+
},
235+
{
236+
"name": "GraphQL Code Generator",
237+
"description": "GraphQL code generator with flexible support for custom plugins and templates like Typescript (frontend and backend), React Hooks, resolvers signatures and more.",
238+
"url": "https://graphql-code-generator.com",
239+
"npm": "@graphql-codegen/cli",
240+
"github": "dotansimha/graphql-code-generator"
241+
},
242+
{
243+
"name": "GraphQL CLI",
244+
"description": "A command line tool for common GraphQL development workflows.",
245+
"url": "https://graphql-cli.com",
246+
"npm": "graphql-cli",
247+
"github": "Urigo/graphql-cli"
248+
},
249+
{
250+
"name": "GraphQL Inspector",
251+
"description": "Compare schemas, validate documents, find breaking changes, find similar types, schema coverage, and more.",
252+
"url": "https://graphql-inspector.com/",
253+
"npm": "@graphql-inspector/cli",
254+
"github": "kamilkisiela/graphql-inspector"
255+
},
256+
{
257+
"name": "GraphQL Scalars",
258+
"description": "A library of custom GraphQL scalar types for creating precise, type-safe GraphQL schemas.",
259+
"url": "https://github.com/Urigo/graphql-scalars",
260+
"npm": "graphql-scalars",
261+
"github": "Urigo/graphql-scalars"
262+
},
263+
{
264+
"name": "SOFA",
265+
"description": "Generate REST API from your GraphQL API.",
266+
"url": "https://sofa-api.com/",
267+
"npm": "sofa-api",
268+
"github": "Urigo/SOFA"
269+
}
270+
]
271+
}

data/js-graphql-clients.json

Lines changed: 0 additions & 72 deletions
This file was deleted.

0 commit comments

Comments
 (0)