Alexander Rose

Results 98 comments of Alexander Rose

Altair is a JavaScript app... I'm sorry, but it seems something else is wrong there. But go ahead.

The `subscriptions-api` branch is completely merged into the current release (despite it not saying so, was a lot of manual work because of the restructuring which had already been made...

see also #43

How does your server expect to receive this additional payload? In my applications im using a custom `GraphQLRequest` type which adds an additional `authorization` field to the GraphQL payload, which...

Well, create an object containing a property for each collection... something along the following: ```csharp public class ResponseObject { public List Maskiner { get; set; } public List Maskinty {...

How are you initializing `SystemTextJsonSerializer`? If you directly pass a `JsonSerializerOptions` object via its constructor it invokes [this constructor](https://github.com/graphql-dotnet/graphql-client/blob/b366e22af112445452440c2c6c1d9978ecef97cb/src/GraphQL.Client.Serializer.SystemTextJson/SystemTextJsonSerializer.cs#L32), which does not override your options class (but adds 2 converters...

Then I'd recommend to not reuse the same `jsonOptions` instance in multiple places but create a new instance for this. This library simply won't work as people expect without these...

https://github.com/bjorg/GraphQlAppSyncTest

The current version runs the `PreprocessRequest` method for queries, mutations AND subscriptions. I'm no AppSync specialist (GraphQL != AppSync), but it appears that you have to add the `authorization` extension...