grooviter / gql

Groovy GraphQL library

Home Page:http://grooviter.github.io/gql/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

license main Maven Central Sonatype Nexus (Snapshots)

Description

GQL is a set of Groovy DSLs and AST transformations built on top of GraphQL-java that make it easier to build GraphQL schemas and execute GraphQL queries without losing type safety.

Gradle

In order to use GQL releases in your Groovy code add the maven central repository and if you'd like to evaluate some snapshots add the sonatype snapshots repository as well:

repositories {
    mavenCentral()
    maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' } // FOR SNAPSHOTS
}

Once you've declared the maven repositories then add the dependencies to your project:

dependencies {
    implementation 'com.github.grooviter:gql-core:VERSION'
    implementation 'com.github.grooviter:gql-ratpack:VERSION'
}

Getting Started

You can directly execute the following example in your Groovy console:

@Grab('com.github.grooviter:gql-core:0.5.0')
import gql.DSL

def GraphQLFilm = DSL.type('Film') {
  field 'title', GraphQLString
  field 'year', GraphQLInt
}

def schema = DSL.schema {
  queries {
    field('lastFilm') {
      type GraphQLFilm
      staticValue(title: 'SPECTRE', year: 2015)
    }
  }
}

def query = """
  {
    lastFilm {
      year
      title
    }
  }
"""

def result = DSL.newExecutor(schema).execute(query)

assert result.data.lastFilm.year == 2015
assert result.data.lastFilm.title == 'SPECTRE'

Documentation

Current documentation is available at: http://grooviter.github.io/gql/

About

Groovy GraphQL library

http://grooviter.github.io/gql/

License:Apache License 2.0


Languages

Language:Groovy 91.4%Language:Java 6.0%Language:HTML 2.6%