Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GraphQL Client for C++ and .NET

Is there an GraphQL client library available for C++ (Windows and Linux) and .NET?

From Apollo website I can only see clients for React, Vue.js, Angular, Android, iOS, Ember and Meteor.

If there is an Apollo client for C++ and .NET, where is it located ?

If not, what should be used ?

like image 395
Mendes Avatar asked Oct 24 '17 22:10

Mendes


1 Answers

There is a C++ GraphQL parser. It doesn't provide all the features of the Apollo client but it eases C++ GQL handling a lot.

https://github.com/graphql/libgraphqlparser

like image 143
fusion44 Avatar answered Sep 28 '22 20:09

fusion44