Alexander Rose

Results 98 comments of Alexander Rose

> newtonjson still seemed to have good support for il2cpp platforms. is that a possibility to revive/use without dynamic features with the injected code idea? Yeah that's what I'm thinking...

@DamianMehers does SimpleJson have a common base type for deserialized stuff (like `JToken` or `JsonElement`)? What happens if you deserialize an arbitrary JSON object to `object`? Im trying to get...

@sungam3r Yeah, but thats something you cannot easily teach a JSON deserializer (especially not all of them with a single solution)... this can in theory have unlimited levels of depth.......

You're missing two levels in your anonymous type. This would work: ```csharp var answer_request = await graphQLClient.SendMutationAsync(request, () => new { pages = new Pages() }); ```

Hi, can you elaborate why you're disposing of the entire `GraphQLHttpClient` instance? Is this really necessary?

AppSync seems to use a different endpoint for websocket connections, see [here](https://github.com/graphql-dotnet/graphql-client/issues/262#issuecomment-689061903). You need to create a second instance of `GraphQLHttpClient` and point that to the correct endpoint. Please upgrade...

The header must be sent as url query parameter as described here: https://docs.aws.amazon.com/appsync/latest/devguide/real-time-websocket-client.html. The example there is ``` wss://example1234567890000.appsync-realtime-api.us-east-1.amazonaws.com/graphql?header=eyJob3N0IjoiZXhhbXBsZTEyMzQ1Njc4OTAwMDAuYXBwc3luYy1hcGkudXMtZWFzdC0xLmFtYXpvbmF3cy5jb20iLCJ4LWFtei1kYXRlIjoiMjAyMDA0MDFUMDAxMDEwWiIsIngtYXBpLWtleSI6ImRhMi16NHc0NHZoczV6Z2MzZHRqNXNranJsbGxqaSJ9&payload=e30= ```

Nope, I didn't tell you anything like that. Please post your `NotificationOnUpdateSubscriptionResult` class and the JSON payload you're expecting from your endpoint.

Looks ok to me. Did you try to create a subscription using a different tool (like [Altair](https://altair.sirmuel.design/))? Does this work? Please post the subscription query string and response from there...