Karl

Results 5 comments of Karl

There is a workaround for this that was posted in slack. Thanks @PascalSenn, hope my implementation is correct. 😄 **Startup.cs** ``` services .AddGraphQLServer() .MapField(new FieldReference("Query", "me")) ... ``` **ScopedContextMiddleware.cs** ```...

I am also interested in this feature. Has this feature been implemented in the meantime? Or is it supported by default?

> Thanks for the issue. Are you using a standard WinUI manifest like this? > > ``` > > > > > > > > true/PM > PerMonitorV2, PerMonitor >...

Have you tried the workaround to disable WinRT AOT optimizer in project file, that was proposed [here](https://github.com/dotnet/sdk/issues/44026#issuecomment-2403248320)? ```xml false ``` At least for me it did work. EDIT: Sorry, I...