cppgraphqlgen
cppgraphqlgen copied to clipboard
C++ GraphQL schema service generator
Suppose you have a `Subscription` type in your schema like so: ```graphql type Subscription { fieldA: String! fieldB: String! } ``` The type-erased `object::Subscription` interface will have resolvers that call...
This is where I'm going to start tracking features for 5.0, the next major version of `cppgraphqlgen`. This will be a breaking change for existing consumers, so it's an opportunity...
_Request::addSubscription_ returns corrupted key when multiple **operation_definition** found in request. Solution uses result of _Request::findOperationDefinition_ method which chooses definition by **operation_name** or first definition when name is absent.
Hi, I tried using optionalNonNullArg as shown here: https://spec.graphql.org/October2021/#sel-JALTFFTB6CABABSnoI with enum type but schemagen failed with ``` terminate called after throwing an instance of 'std::out_of_range' what(): map::at ``` Code sample...
Hi, I'm missing a sample to use cppgraphqlgen only as a client for an existing graphql server (Graphene/Django). After a lot of reading, I came up with this, but I'm...
This PR aims at providing a tutorial to ease people into getting started using `cppgraphqlgen` by explaining the *"intended usage"* of the project and the *flow* the users code has...
I need to control precision of json serializer for specific fields. It would be perfect to for example push something like setPrecisiin token before and after field value. I think...
Both main and next does not really allow to implement custom scalars that cannot be represented by Value type. One example would be BigInt scalar. I should be possible to...