Erik Wittern
Erik Wittern
This library currently has two methods `getSnippets` and `getEndpointSnippets`, the latter of which depends on 4 arguments which must be provided in the right order. Adding additional arguments (e.g., as...
GraphQL allows to [extend input object types](https://graphql.github.io/graphql-spec/draft/#sec-Input-Object-Extensions), i.e.: > Input object type extensions are used to represent an input object type which has been extended from some original input object...
GraphQL allows to [extend interfaces](https://graphql.github.io/graphql-spec/draft/#sec-Interface-Extensions), i.e.: > Interface type extensions are used to represent an interface which has been extended from some original interface. libgraphqlparser currently does not support parsing...
To make building this library possible on systems without / with outdated Flex / Bison libraries, generated files are checked into this repository. These files, for example [parser.tab.cpp](https://github.com/graphql/libgraphqlparser/blob/master/parsergen/parser.tab.cpp) or [position.hh](https://github.com/graphql/libgraphqlparser/blob/master/parsergen/position.hh),...
GraphQL allows to [extend schemas](https://graphql.github.io/graphql-spec/draft/#sec-Schema-Extension), i.e.: > [...] to represent a schema which has been extended from an original schema. For example, this might be used by a GraphQL service...
Currently, the parser considers multi-line block strings wrongly to be placed in a single long line. For example, [this block string](https://github.com/graphql/libgraphqlparser/blob/master/test/kitchen-sink.graphql#L51) is considered to have [the location](https://github.com/graphql/libgraphqlparser/blob/master/test/kitchen-sink.json): ``` {"start": {"line":...
In addition to extending types, GraphQL also allows to [extend interfaces](https://graphql.github.io/graphql-spec/draft/#sec-Interface-Extensions). This seems currently not supported by libgraphqlparser, though, which fails with an exception of the type: ``` Parser failed...
[Descriptions](https://graphql.github.io/graphql-spec/draft/#sec-Descriptions) allow to annotate definitions in a GraphQL schema with human-readable content, which is also made available via introspection. It seems that libgraphqlparser currently fails when encountering descriptions with an...
I am running into trouble when using libgraphqlparser in combination with GraphQL schemas that rely on the `ID` scalar type, which is part of the [GraphQL specification](https://facebook.github.io/graphql/draft/#sec-ID). Looking at the...
The Cloud Function being created for server-side rendering (of a Next.js app in my case) seems to be deployed to region `us-central1` by default, and seems to have 256 MB...