Marius Bancila

Results 25 comments of Marius Bancila

Yes, I do have `ExposeExceptionStackTrace` set to `true`. I am planning to upgrade to `v7` soon so then maybe I won't have to do anything. What you're showing in the...

I did as you suggested and wrote this: ``` public class ExportFieldMiddlewear : IFieldMiddleware { public async ValueTask ResolveAsync(IResolveFieldContext context, FieldMiddlewareDelegate next) { FieldType field = context.FieldDefinition; var applied =...

@Shane32 that seem to have fixed the problem. But now I have an related problem: how do I modify the variables collection? I did something like this: ``` if (!string.IsNullOrEmpty(exportName))...

That's what I needed! Thank you for all the help.

I'm bringing this up again because something is not working as expected in my implementation. I have the following query: ``` query($customerId : Int = 0) { associate(filter : {associateNo...

Yes, I do use the data loader. The order of the field resolving in the `ExportFieldMiddlewear` is: 1. `associate` (after this an SQL query executes) 2. `items` (for associate) 3....

I have solved this by writing a custom serial strategy. What it does is parsing the query AST first to identify the fields that use exported variables. These are put...

Excellent suggestion, the state can be anything here. Yes, I tried it an it works so I can remove some unnecessary code.

I think my implementation is equivalent to yours if we only consider one level of nodes. I first execute all the regular nodes, then all the data loader nodes, then...