GraphQL SPQR

Java API for GraphQL services

License

License

GroupId

GroupId

io.leangen.graphql
ArtifactId

ArtifactId

spqr
Last Version

Last Version

0.11.2
Release Date

Release Date

Type

Type

jar
Description

Description

GraphQL SPQR
Java API for GraphQL services
Project URL

Project URL

https://github.com/leangen/GraphQL-SPQR
Source Code Management

Source Code Management

https://github.com/leangen/GraphQL-SPQR

Download spqr

How to add to project

<!-- https://jarcasting.com/artifacts/io.leangen.graphql/spqr/ -->
<dependency>
    <groupId>io.leangen.graphql</groupId>
    <artifactId>spqr</artifactId>
    <version>0.11.2</version>
</dependency>
// https://jarcasting.com/artifacts/io.leangen.graphql/spqr/
implementation 'io.leangen.graphql:spqr:0.11.2'
// https://jarcasting.com/artifacts/io.leangen.graphql/spqr/
implementation ("io.leangen.graphql:spqr:0.11.2")
'io.leangen.graphql:spqr:jar:0.11.2'
<dependency org="io.leangen.graphql" name="spqr" rev="0.11.2">
  <artifact name="spqr" type="jar" />
</dependency>
@Grapes(
@Grab(group='io.leangen.graphql', module='spqr', version='0.11.2')
)
libraryDependencies += "io.leangen.graphql" % "spqr" % "0.11.2"
[io.leangen.graphql/spqr "0.11.2"]

Dependencies

compile (10)

Group / Artifact Type Version
com.google.code.gson : gson Optional jar 2.8.6
net.dongliu : gson-java8-datatype jar 1.1.0
com.fasterxml.jackson.core : jackson-databind jar
com.fasterxml.jackson.module : jackson-module-parameter-names jar
com.fasterxml.jackson.datatype : jackson-datatype-jdk8 jar
com.fasterxml.jackson.datatype : jackson-datatype-jsr310 jar
io.leangen.geantyref : geantyref jar 1.3.11
com.graphql-java : graphql-java jar 16.2
io.github.classgraph : classgraph jar 4.8.102
org.slf4j : slf4j-api jar 1.7.30

test (8)

Group / Artifact Type Version
junit : junit jar 4.13.1
cglib : cglib jar 3.3.0
org.javassist : javassist jar 3.27.0-GA
com.google.code.findbugs : jsr305 jar 3.0.2
javax.validation : validation-api jar 2.0.1.Final
ch.qos.logback : logback-classic jar 1.2.3
io.reactivex.rxjava2 : rxjava jar 2.2.20
org.projectlombok : lombok jar 1.18.18

Project Modules

There are no modules declared in this project.

GraphQL SPQR

GraphQL SPQR (GraphQL Schema Publisher & Query Resolver, pronounced like speaker) is a simple-to-use library for rapid development of GraphQL APIs in Java.

Join the chat at https://gitter.im/leangen/graphql-spqr StackOverflow Maven Central Javadoc Build Status License

Intro

GraphQL SPQR aims to make it dead simple to add a GraphQL API to any Java project. It works by dynamically generating a GraphQL schema from Java code.

  • Requires minimal setup (~3 lines of code)
  • Deeply configurable and extensible (not opinionated)
  • Allows rapid prototyping and iteration (no boilerplate)
  • Easily used in legacy projects with no changes to the existing code base
  • Has very few dependencies

Code-first approach

When developing GraphQL-enabled applications it is common to define the schema first and hook up the business logic later. This is known as the schema-first style. While it has its advantages, in strongly and statically typed languages, like Java, it leads to a lot of duplication.

For example, a schema definition of a simple GraphQL type could like this:

type Link {
    id: ID!
    url: String!
    description: String
}

and, commonly, a corresponding Java type would exist in the system, similar to the following:

public class Link {
    
    private final String id;
    private final String url;
    private final String description;
    
    //constructors, getters and setters
    //...
}

Both of these blocks contain the exact same information. Worse yet, changing one requires an immediate change to the other. This makes refactoring risky and cumbersome, and the compiler can not help. On the other hand, if you’re trying to introduce a GraphQL API into an existing project, writing the schema practically means re-describing the entire existing model. This is both expensive and error-prone, and still suffers from duplication and lack of tooling.

Instead, GraphQL SPQR takes the code-first approach, by generating the schema from the existing model. This keeps the schema and the model in sync, easing refactoring. It also works well in projects where GraphQL is introduced on top of an existing codebase.

Still schema-first

Note that developing in the code-first style is still effectively schema-first, the difference is that you develop your schema not in yet another language, but in Java, with your IDE, the compiler and all your tools helping you. Breaking changes to the schema mean the compilation will fail. No need for linters or other fragile hacks.

Installation

GraphQL SPQR is deployed to Maven Central.

Maven

<dependency>
    <groupId>io.leangen.graphql</groupId>
    <artifactId>spqr</artifactId>
    <version>0.11.2</version>
</dependency>

Gradle

compile 'io.leangen.graphql:spqr:0.11.2'

Hello world

The example will use annotations provided by GraphQL SPQR itself, but these are optional and the mapping is completely configurable, enabling existing services to be exposed through GraphQL without modification.

Service class:

class UserService {

    @GraphQLQuery(name = "user")
    public User getById(@GraphQLArgument(name = "id") Integer id) {
      ...
    }
}

If you want to skip adding @GraphQLArgument, compile with the -parameters option or the names will be lost.

Domain class:

public class User {

    private String name;
    private Integer id;
    private Date registrationDate;

    @GraphQLQuery(name = "name", description = "A person's name")
    public String getName() {
        return name;
    }

    @GraphQLQuery
    public Integer getId() {
        return id;
    }

    @GraphQLQuery(name = "regDate", description = "Date of registration")
    public Date getRegistrationDate() {
        return registrationDate;
    }
}

To attach additional fields to the User GraphQL type, without modifyning the User class, you simply add a query that has User as the context. The simplest way is using the @GraphQLContext annotation:

class UserService {

    ... //regular queries, as above

    // Attach a new field called twitterProfile to the User GraphQL type
    @GraphQLQuery
    public TwitterProfile twitterProfile(@GraphQLContext User user) {
      ...
    }
}

Exposing the service with graphql-spqr:

UserService userService = new UserService(); //instantiate the service (or inject by Spring or another framework)
GraphQLSchema schema = new GraphQLSchemaGenerator()
    .withBasePackages("io.leangen") //not mandatory but strongly recommended to set your "root" packages
    .withOperationsFromSingleton(userService) //register the service
    .generate(); //done ;)
GraphQL graphQL = new GraphQL.Builder(schema)
	.build();

//keep the reference to GraphQL instance and execute queries against it.
//this operation selects a user by ID and requests name, regDate and twitterProfile fields only
ExecutionResult result = graphQL.execute(   
    "{ user (id: 123) {
         name,
         regDate,
         twitterProfile {
           handle
           numberOfTweets
         }
    }}");

Spring Boot Starter

We're working on a SPQR-powered Spring Boot starter. The project is still very young, but already functional.

Full example

See more complete examples using Spring Boot at https://github.com/leangen/graphql-spqr-samples

Full tutorial

Coming soon

Known issues

Kotlin

For best compatibility, Kotlin 1.3.70 or later is needed with the compiler argument -Xemit-jvm-type-annotations. This instructs the Kotlin compiler to produce type-use annotations (introduced in JDK8) correctly. See KT-35843 and KT-13228 for details.

OpenJDK

There's a bug in OpenJDK's annotation parser before version 16 b17 that causes annotations on generic type parameters to be duplicated. You may experience this in a form of a mysterious

AnnotationFormatError: Duplicate annotation for class: interface io.leangen.graphql.annotations.GraphQLNonNull

being thrown when using @GraphQLNonNull both on a type and on its generic parameters e.g. @GraphQLNonNull List<@GraphQLNonNull Item>.

Fortunately, very few users seem to experience this problem, even on affected JDKs. Do note it is only relevant which Java compiles the sources, not which Java runs the code. Also note that IntelliJ IDEA comes bundled with a JDK of its own, so building the project in IDEA may lead to this error. You should configure your IDE to use the system Java if it is different.

Asking questions

  • Issues Open an issue to report bugs, request features or ask questions
  • StackOverflow Use graphql-spqr tag
  • Gitter For questions/discussions you don't care to keep for posterity
io.leangen.graphql

Leangen

Versions

Version
0.11.2
0.11.1
0.11.0
0.10.1
0.10.0
0.9.9
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
0.8.0