An open API service indexing awesome lists of open source software.

https://github.com/danue1/grape-rs

Grape is a GraphQL Lexer, Parser, Validator, and Runtime.
https://github.com/danue1/grape-rs

graphql lexer parser runtime validator

Last synced: 11 months ago
JSON representation

Grape is a GraphQL Lexer, Parser, Validator, and Runtime.

Awesome Lists containing this project

README

          

# Grape

`Grape` is a GraphQL Lexer, Parser, Validator, and Runtime.

```rust
use grape::Parse;

fn main() {
let source = "{ post { user } }";
let mut parse = Parse::new(source);
let document = parse.document();
println!("{:#?}", document);
}
```