libgraphqlparser
libgraphqlparser copied to clipboard
A GraphQL query parser in C++ with C and C++ APIs
python3
python3
Hey! I'm interesting in sending graphql queries from C++ -- currently I'm storing the queries as multiline strings, but it's a pain cause I have no way to mutate the...
Doesn't look like there's been a version update since 2017. Is it time to release a new version?
The methods of the `AstVisitor` base class defines interface only and have no implementation. These should be marked as `[[maybe_unused]]` to prevent propagate the build warnings. Signed-off-by: Igor Kononenko
Trying to compile on MacOS 10.13.6 Flex: 2.6.4_1 Bison: 3.7.3 ``` $ cmake . -- The C compiler identification is AppleClang 10.0.0.10001044 -- The CXX compiler identification is AppleClang 10.0.0.10001044...
Folks, just a heads up that we'll be swapping the primary branch from master to main. GitHub's tooling will remap any open PRs. If you're working locally and all your...
This PR makes Python an optional dependency when compiling the library. Like with bison/flex, if Python isn't around, it just re-uses a pre-generated versions.
Is it possible to parse the query and use variables outside the actual query? For example, the following query is parsed correctly: ``` query Hero($episode: Episode, $withFriends: Boolean!) { hero(episode:...
Currently `make install` doesn't install position.hh. This leads to code that uses this library failing to build. This PR fixes that by adding position.hh to the install.
This is to get rid of this error: parser.ypp:8.10-12: error: invalid version requirement: 3 8 | %require "3" | ^~~