Skip to content

Commit 8e9fedc

Browse files
authored
Merge pull request graphql#386 from sdelamo/patch-1
Add Groovy gorm-graphql library and Grails Plugin
2 parents ef0a80f + 72541fb commit 8e9fedc

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

site/code/index.html.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ In addition to the GraphQL [reference implementations in JavaScript](#javascript
3030
- [Elixir](#elixir)
3131
- [Erlang](#erlang)
3232
- [Go](#go)
33+
- [Groovy](#groovy)
3334
- [Java](#java)
3435
- [JavaScript](#javascript)
3536
- [PHP](#php)
@@ -122,6 +123,22 @@ Code that executes a hello world GraphQL query with \`graphql-clj\`:
122123
- [graphql-relay-go](https://github.com/graphql-go/relay): A Go/Golang library to help construct a graphql-go server supporting react-relay.
123124
- [neelance/graphql-go](https://github.com/neelance/graphql-go): An active implementation of GraphQL in Golang.
124125
126+
### Groovy
127+
128+
#### [gorm-graphql](https://github.com/grails/gorm-graphql/)
129+
130+
**Core Library** The GORM GraphQL library provides functionality to generate a GraphQL schema based on your GORM entities. In addition to mapping domain classes to a GraphQL schema, the core library also provides default implementations of "data fetchers" to query, update, and delete data through executions of the schema.
131+
132+
**Grails Plugin** In a addition to the Core Library, the GORM GraphQL Grails Plugin:
133+
134+
- Provides A controller to receive and respond to GraphQL requests through HTTP, based on their guidelines.
135+
- Generates the schema at startup with spring bean configuration to make it easy to extend.
136+
- Includes a [GraphiQL](https://github.com/graphql/graphiql) browser enabled by default in development. The browser is accessible at /graphql/browser.
137+
- Overrides the default data binder to use the data binding provided by Grails
138+
- 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
139+
140+
See [the documentation](https://grails.github.io/gorm-graphql/latest/guide/index.html) for more information.
141+
125142
### Java
126143
127144
#### [graphql-java](https://github.com/graphql-java/graphql-java)

0 commit comments

Comments
 (0)