GraphQL::Parser
A small ruby gem wrapping the libgraphqlparser C library for parsing GraphQL.
Installation
Add this line to your application's Gemfile:
gem 'graphql-parser'
And then execute:
$ bundle
Or install it yourself as:
$ gem install graphql-parser
Usage
Parse your graphql string to get an AST:
require 'graphql/parser'
ast = GraphQL::Parser.parse('{ some_graphql_string }') # returns GraphQL::AST
This will raise GraphQL::ParseError
on malformed input.
Implement a visitor:
class MyVisitor < GraphQL::Visitor
def visit_document(node)
# do something interesting in pre-order
end
def end_visit_document(node)
# do something interesting in post-order
end
# implement visit methods for all other GraphQL node types or define an
# appropriate `method_missing` for ones you don't want to handle
end
And walk the AST:
v = MyVisitor.new
v.accept(ast)
You can return GraphQL::SKIP_CHILDREN
from a visitor to skip visiting that
node's children.
Contributing
- Fork it ( https://github.com/[my-github-username]/graphql-parser/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request