PawPadIO / Hub

PawPad.IO server deployed into a network, usually on a Raspberry Pi. Includes an identity server, database and GraphQL API. Deloyed via a Docker Compose.
MIT License
1 stars 0 forks source link

graphql-dotnet libraries use prerelease versions #4

Open TCFox opened 4 years ago

TCFox commented 4 years ago

Currently using pre-release versions of GraphQL, so that we can support using System.Text.Json instead of NewtonsoftJson for JSON serialisation/deserialisation. The latter was causing issues with .NET Core 3.0 since HTTP servers (Kestrel etc) no longer support sync IO APIs and Newtonsoft.Json isn't a fan of that.

As soon as the next versions of all of the graphql-dotnet libraries are released properly (GraphQL.Server.Transports.AspNetCore.SystemTextJson in particular), we can update to those and close this issue.

TCFox commented 3 years ago

Progress in b2f8176, but still waiting on the packages in https://github.com/graphql-dotnet/server to come out of alpha.