Mithras

Results 55 comments of Mithras

Just adding a related post here: https://github.com/graphql-dotnet/server/issues/765#issuecomment-1099472128

related: - https://github.com/graphql-dotnet/graphql-dotnet/pull/3144

related: - https://github.com/graphql-dotnet/graphql-dotnet/pull/3144

related https://github.com/graphql-dotnet/graphql-dotnet/pull/3144

Not exactly the same but related: - https://github.com/graphql-dotnet/graphql-dotnet/issues/2164

I'll try your idea with custom class inheriting from `ExecutionStrategy`, thanks! While it's a good workaround to avoid using reflection, I still believe it's a valid feature request to simplify...

Update on my current workaround: ```csharp private class CustomExecutionStrategy : ExecutionStrategy { public override Task ExecuteNodeTreeAsync(ExecutionContext context, ExecutionNode rootNode) => throw new NotImplementedException(); public Dictionary GetSubFields( IResolveFieldContext fieldContext, IGraphType specificType)...

Yeah, I'll probably object pool it when I'm done with everything else

Hello, I need Federation for our microservices so I played with the proposal a bit. Here is a fully working example based on @mac2000 code (thanks a lot!) with some...

@sungam3r I've done a lot of refactoring after my initial federation attempt so the git repo I shared above is outdated and have a few bugs. Currently we successfully use...