Skip to content

grooviter/gql

Folders and files

NameName
Last commit message
Last commit date
Nov 5, 2024
Nov 5, 2024
Nov 5, 2024
Nov 29, 2022
Nov 5, 2024
Apr 1, 2017
Jun 1, 2018
Nov 5, 2024
Apr 21, 2017
Nov 5, 2024
Dec 7, 2022
Nov 5, 2024
Nov 21, 2022
Nov 21, 2022
Nov 29, 2022

Repository files navigation

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:1.1.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: 'No Time to die', year: 2021)
    }
  }
}

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

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

assert result.data.lastFilm.year == 2021
assert result.data.lastFilm.title == 'No time to die'

Documentation

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