SAHB.GraphQLClient
SAHB.GraphQLClient copied to clipboard
Query HTTP api using GraphQL. The client recieves a model as typeparameter and then queries the GraphQL api and deserilize the result.
This is the graphQL endpoint that i am querying - https://anilist.co/graphiql and here is my query - `query A{ Media(id:1, season: SPRING){ id title { romaji english native userPreferred }...
## Background I am trying to generate this query that has arguments passed to a subschema ```graphql query($fooId: String! $filter: BarFilter) { foo(id: $fooId) { id ... on FooBar {...
## Background I'm trying to pass the variables `{ "foo": {"fooNumber": "0123456789", "systemCode": "BAZ"} }` to this query ```graphql query GetFooId( $foo: FooNumber ) { foobeta (foo: foo) { id...
[ws://snowtooth.moonhighway.com/graphql](url) I'm using Xamarin iOS. subscription { liftStatusChange { name capacity } } ``` public class LiftStatusChange { public string Name { get; set; } public int Capacity { get;...
Automatically create needed C# classes using introspection. See #71 Issue #78 implemented filtering
Support receiving data using IAsyncEnumerable in subscription project
(Me again lol) An area I'm concerned about is if a subscription websocket gets disconnected - loss of network, server restart etc. I will be supplying an intermediate library for...
The 'parsing' of query classes etc cannot retain uppercase letters in the names e.g. ``` public class Query { public CharacterOrPerson Hero { get; set; } } ... ``` becomes...
I see that some of the classes make use of LoggerFactory, and that an example app has a section "Using dependency injection and console logging". Is it possible to use...
One of my client apps will be authorised for subscriptions only (i.e. only websocket connections allowed by the server), but I may wish to make use of introspection [admittedly I...