A parser for GraphQL IDL files! This repository contains the code for both the Rust implementation, as well as the FFI dylib implementation, which allows you to generate a library for use in C projects (and other languages that play nice with C). See https://github.com/gjtorikian/graphql-idl-parser-ruby for a Ruby implementation!
Two reasons:
Add this to your Cargo.toml
:
toml
[dependencies]
graphql-idl-parser = "^0.1"
and this to your crate root:
rust
extern crate graphql_idl_parser;
After that, simply feed in a GraphQL IDL string to gqlidl::parse_schema
, like:
rust
let definitions = gqlidl::parse_schema(contents.as_str()).unwrap();
for def in definitions {
// ...
}
Note that this library does not validate the format if your IDL. If you have multiple types with the same name, for example, they will be happily consumed as unique types. However, the parser will become irate if it comes across a malformed or unknown token.