Shane Krueger
Shane Krueger
Do you use a data loader to populate the associate items? (or anywhere in the relevant schema)
A data loader, by design, executes all other waiting nodes before continuing execution. This is in order to gather as many nodes as possible to pass into the data loader....
There are various solutions here, probably, but no clear answer. You can simply wrap the order resolver in a SimpleDataLoader so that execution is delayed until after data loaders execute....
Nice! Just curious if this would work: instead of: ```cs else if (node is IParentExecutionNode parentNode) { // Add in reverse order so fields are executed in the correct order...
I also don't quite understand why the delay nodes execute before exhausting the main loop. I had expected your code to execute all the regular nodes first, then all the...
Glad you got it working, and thanks for posting the source for anyone else looking to implement `@export`!
Some final review notes if this ever happens to get merged in as an official feature: 1. I am guessing that the execution order of the delayed nodes is incorrect,...
I’ll have the updated server project released within a few hours. Help with the other projects (conventions, authorization or relay) projects would be appreciated if you use any of those...
FYI since IValidationRule has changed, the authorization project is sure to break. Not sure about the other projects.
I'm not sure what the question is. You can map auto-registering graph types of the nested classes if you wish, which should work just fine, but the auto-registering graph types...