In my use case, I want to introduce some query directives that function similarly to @Skip and @include, for example @FeatureFlag.
In the current implementation, ConditionalNodes and FieldCollector are all sealed variables in their usages and can't be easily extended. In order to do so, I have to create a code copy of lots of classes.
Can we make FieldCollector extendable for new ConditionalNodes?