graphql-parser

null

License

License

GroupId

GroupId

com.arakelian
ArtifactId

ArtifactId

graphql-parser
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

graphql-parser
null
Project URL

Project URL

https://github.com/arakelian/graphql-parser
Source Code Management

Source Code Management

https://github.com/arakelian/graphql-parser.git

Download graphql-parser

How to add to project

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

Dependencies

compile (1)

Group / Artifact Type Version
org.antlr : antlr4-runtime jar 4.7.1

Project Modules

There are no modules declared in this project.

graphql-parser

Low-level GraphQL parser and lexer generated using ANTLR grammar.

The grammar was originally based on the GraphQL grammar defined by the graphql-java project.

This project separates the lexer and parser grammars, and has additional changes to enable better runtime validation.

Installation

The library is available on Maven Central

Maven

Add the following to your pom.xml:

<repositories>
    <repository>
        <id>central</id>
        <name>Central Repository</name>
        <url>http://repo.maven.apache.org/maven2</url>
        <releases>
            <enabled>true</enabled>
        </releases>
    </repository>
</repositories>

...

<dependency>
    <groupId>com.arakelian</groupId>
    <artifactId>graphql-parser</artifactId>
    <version>1.1.0</version>
    <scope>test</scope>
</dependency>

Gradle

Add the following to your build.gradle:

repositories {
  mavenCentral()
}

dependencies {
  testCompile 'com.arakelian:graphql-parser:1.1.0'
}

Licence

Apache Version 2.0

Versions

Version
1.1.0
1.0.8
1.0.6