GraphQL-Parser 9.2.0

GraphQL.NET Parser

License codecov Nuget NuGet GitHub Release Date GitHub commits since latest release (by date) Size

GitHub contributors Activity Activity Activity

This library contains a lexer and parser as well as the complete GraphQL AST model that allows you to work with GraphQL documents compatible with the October 2021 spec.

The parser from this library is used by the GraphQL.NET project and was verified by many test data sets.

Preview versions of this package are available on GitHub Packages.

1. Lexer

Generates token based on input text. Lexer takes advantage of ReadOnlyMemory<char> and in most cases does not allocate memory on the managed heap at all.

Usage

var token = Lexer.Lex("\"str\"");

Lex method always returns the first token it finds. In this case case the result would look like following. lexer example

2. Parser

Parses provided GraphQL expression into AST (abstract syntax tree). Parser also takes advantage of ReadOnlyMemory<char> but still allocates memory for AST.

Usage

var ast1 = Parser.Parse(@"
{
  field
}");

var ast2 = Parser.Parse(@"
{
  field
}", new ParserOptions { Ignore = IgnoreOptions.Comments });

By default ParserOptions.Ignore is IgnoreOptions.None. If you want to ignore all comments use IgnoreOptions.Comments. If you don't need information about tokens locations in the source document, then use flag IgnoreOptions.Locations. Or just use IgnoreOptions.All and this will maximize the saving of memory allocated in the managed heap for AST.

You can parse not only entire GraphQLDocument but also concrete AST nodes. Use generic overload.

string text1 = "enum Color { RED }"
var ast1 = Parser.Parse<GraphQLEnumTypeDefinition>(text1);

string text2 = "{ a: 1, b: \"abc\", c: RED, d: $id }";
var ast2 = Parser.Parse<GraphQLValue>(text2); // returns GraphQLObjectValue

3. ASTVisitor

ASTVisitor provides API to traverse AST of the parsed GraphQL document. Default implementation traverses all AST nodes of the provided one. You can inherit from it and override desired methods to implement your own AST processing algorithm.

For printing SDL from AST, you can use SDLPrinter. This is a highly optimized visitor for asynchronous non-blocking SDL output into provided TextWriter. In the majority of cases it does not allocate memory in the managed heap at all.

You can also find a StructurePrinter visitor that prints AST into the provided TextWriter as a hierarchy of node types. It can be useful when debugging for better understanding the AST structure. Consider GraphQL document

query a { name age }

After StructurePrinter processing the output text will be

Document
  OperationDefinition
    Name [a]
    SelectionSet
      Field
        Name [name]
      Field
        Name [age]

Usage

public static async Task Print(string text)
{
    using var document = Parser.Parse(text);
    var writer = new StringWriter(); 
    var printer = new SDLPrinter()
    await printer.PrintAsync(document, writer);
    var rendered = writer.ToString();
    Console.WriteLine(rendered);
}

Contributors

This project exists thanks to all the people who contribute.

PRs are welcome! Looking for something to work on? The list of open issues is a great place to start. You can help the project by simply responding to some of the asked questions.

Showing the top 20 packages that depend on GraphQL-Parser.

Packages Downloads
GraphQL
GraphQL for .NET
8
GraphQL
GraphQL for .NET
9
GraphQL
GraphQL for .NET
10
GraphQL
GraphQL for .NET
100

.NET 6.0

  • No dependencies.

.NET Standard 2.0

.NET Standard 2.1

  • No dependencies.

Version Downloads Last updated
9.3.1 5 12/18/2023
9.3.0 8 10/24/2023
9.2.1 4 10/24/2023
9.2.0 8 09/12/2023
9.1.0 6 06/04/2023
9.0.2 6 06/04/2023
9.0.1 8 06/24/2023
9.0.0 5 06/04/2023
8.4.2 2 12/27/2023
8.4.1 4 10/24/2023
8.4.0 5 09/08/2023
8.3.0 6 06/04/2023
8.2.0 6 06/09/2023
8.1.0 217 12/13/2022
8.0.0 5 04/05/2023
7.2.0 12 04/05/2023
7.1.0 5 04/05/2023
7.0.0 6 04/05/2023
6.0.0 5 04/05/2023
5.3.3 5 04/05/2023
5.3.2 5 04/05/2023
5.3.1 6 04/05/2023
5.3.0 5 04/05/2023
5.2.0 5 04/05/2023
5.1.2 4 04/05/2023
5.1.0 8 04/05/2023
4.1.2 6 04/05/2023
4.1.1 6 04/05/2023
4.1.0 6 04/05/2023
4.0.0 5 04/05/2023
3.1.0-preview-39 8 04/05/2023
3.0.0 6 04/05/2023
2.0.0 5 04/05/2023
1.0.0 8 04/05/2023