Skip to content

Commit 9db648e

Browse files
authored
Add Groovy gorm-graphql library and Grails Plugin
1 parent ef0a80f commit 9db648e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

site/code/index.html.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,26 @@ Code that executes a hello world GraphQL query with \`graphql-clj\`:
122122
- [graphql-relay-go](https://github.com/graphql-go/relay): A Go/Golang library to help construct a graphql-go server supporting react-relay.
123123
- [neelance/graphql-go](https://github.com/neelance/graphql-go): An active implementation of GraphQL in Golang.
124124
125+
### Groovy
126+
127+
#### [gorm-graphql](https://github.com/grails/gorm-graphql/)
128+
129+
**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.
130+
131+
**Grails Plugin** In a addition to the Core Library, the GORM GraphQL Grails Plugin:
132+
133+
- Provides A controller to receive and respond to GraphQL requests through HTTP, based on their guidelines.
134+
- Generates the schema at startup with spring bean configuration to make it easy to extend.
135+
- Includes a [GraphiQL](https://github.com/graphql/graphiql) browser enabled by default in development. The browser is accessible at /graphql/browser.
136+
- Overrides the default data binder to use the data binding provided by Grails
137+
- 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
138+
139+
See [the documentation](https://grails.github.io/gorm-graphql/latest/guide/index.html) for more information.
140+
125141
### Java
126142
143+
144+
127145
#### [graphql-java](https://github.com/graphql-java/graphql-java)
128146
129147
A Java library for building GraphQL APIs.

0 commit comments

Comments
 (0)