You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/code/index.html.js
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ In addition to the GraphQL [reference implementations in JavaScript](#javascript
47
47
48
48
### C# / .NET
49
49
50
-
#### [graphql-dotnet](https://github.com/graphql-dotnet/graphql-dotnet): GraphQL for .NET
50
+
#### [graphql-dotnet](https://github.com/graphql-dotnet/graphql-dotnet): GraphQL for .NET.
51
51
52
52
\`\`\`csharp
53
53
using System;
@@ -75,10 +75,10 @@ public class Program
75
75
}
76
76
\`\`\`
77
77
78
-
- [graphql-net](https://github.com/ckimes89/graphql-net): Convert GraphQL to IQueryable
79
-
- [Entity GraphQL](https://github.com/lukemurray/EntityGraphQL): .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)
80
-
- [DotNetGraphQLQueryGen](https://github.com/lukemurray/DotNetGraphQLQueryGen): .NET Core library to generate classes from a GraphQL schema for type-safe querying in dotnet
81
-
- [Hot Chocolate](https://github.com/ChilliCream/hotchocolate): GraphQL Server for .NET core and .NET classic
78
+
- [graphql-net](https://github.com/ckimes89/graphql-net): Convert GraphQL to IQueryable.
79
+
- [Entity GraphQL](https://github.com/lukemurray/EntityGraphQL): .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).
80
+
- [DotNetGraphQLQueryGen](https://github.com/lukemurray/DotNetGraphQLQueryGen): .NET Core library to generate classes from a GraphQL schema for type-safe querying in dotnet.
81
+
- [Hot Chocolate](https://github.com/ChilliCream/hotchocolate): GraphQL Server for .NET core and .NET classic.
82
82
83
83
### Clojure
84
84
@@ -176,14 +176,14 @@ A full implementation of the GraphQL specification that aims to maintain externa
176
176
- Provides a controller to receive and respond to GraphQL requests through HTTP, based on their guidelines.
177
177
- Generates the schema at startup with spring bean configuration to make it easy to extend.
178
178
- Includes a [GraphiQL](https://github.com/graphql/graphiql) browser enabled by default in development. The browser is accessible at /graphql/browser.
179
-
- Overrides the default data binder to use the data binding provided by Grails
180
-
- Provides a [trait](https://grails.github.io/gorm-graphql/latest/api/org/grails/gorm/graphql/plugin/testing/GraphQLSpec.html) to make integration testing of your GraphQL endpoints easier
179
+
- Overrides the default data binder to use the data binding provided by Grails.
180
+
- Provides a [trait](https://grails.github.io/gorm-graphql/latest/api/org/grails/gorm/graphql/plugin/testing/GraphQLSpec.html) to make integration testing of your GraphQL endpoints easier.
181
181
182
182
See [the documentation](https://grails.github.io/gorm-graphql/latest/guide/index.html) for more information.
183
183
184
184
#### [GQL](https://grooviter.github.io/gql/)
185
185
186
-
GQL is a Groovy library for GraphQL
186
+
GQL is a Groovy library for GraphQL.
187
187
188
188
### Java
189
189
@@ -349,11 +349,11 @@ Apollo Server also supports all Node.js HTTP server frameworks: Express, Connect
349
349
350
350
### PHP
351
351
352
-
- [graphql-php](https://github.com/webonyx/graphql-php): A PHP port of GraphQL reference implementation
352
+
- [graphql-php](https://github.com/webonyx/graphql-php): A PHP port of GraphQL reference implementation.
353
353
- [graphql-relay-php](https://github.com/ivome/graphql-relay-php): A library to help construct a graphql-php server supporting react-relay.
354
354
- [Railt](https://github.com/railt/railt): A PHP GraphQL Framework.
355
-
- [Lighthouse](https://github.com/nuwave/lighthouse): A GraphQL server for Laravel
356
-
- [GraphQLBundle](https://github.com/overblog/GraphQLBundle): A GraphQL server for Symfony
355
+
- [Lighthouse](https://github.com/nuwave/lighthouse): A GraphQL server for Laravel.
356
+
- [GraphQLBundle](https://github.com/overblog/GraphQLBundle): A GraphQL server for Symfony.
357
357
- [WPGraphQL](https://github.com/wp-graphql/wp-graphql): A free, open-source WordPress plugin that provides an extendable GraphQL schema and API for any WordPress site
Copy file name to clipboardExpand all lines: site/learn/BestPractice-ThinkingInGraphs.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Graphs are powerful tools for modeling many real-world phenomena because they re
14
14
## Shared Language
15
15
> Naming things is a hard but important part of building intuitive APIs
16
16
17
-
Think of your GraphQL schema as an expressive shared language for your team and your users. To build a good schema, examine the everyday language you use to describe your business. For example, let's try to describe an email app in plain english:
17
+
Think of your GraphQL schema as an expressive shared language for your team and your users. To build a good schema, examine the everyday language you use to describe your business. For example, let's try to describe an email app in plain English:
18
18
19
19
* A user can have multiple email accounts
20
20
* Each email account has an address, inbox, drafts, deleted items, and sent items
0 commit comments