GraphQL Client for C ++ and .NET

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

From the 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?

If not, what should I use?

+4
source share
1 answer

Apollo Client has a good set of caching functions, but if you do not need these functions, you can simply use your favorite http library (libcurl, or Boost.Beast, or Casanova, perhaps) to send a POST with the text of your request or graphql mutation. The answer will be the same view or answer that you will see on the GraphiQL console.

Apollo Client ++ #. , . - Apollo Client 2 ++ #? , , !

0

Source: https://habr.com/ru/post/1688108/


All Articles