linqi

Results 3 comments of linqi

Something like the code below `query { someField @FeatureFlag(flagName: my-feature-flag, value: expectedTreatment) }` My runtime checks the feature flag's actual value from some db/service and compares it with the given...

I encounter the same use case in the java world. We are able to mitigate this issue by adding some addition APIs for `Dataloader.java` Our use case: ```java CompletableFuture profileFuture...

@bbakerman of course. Approach 1) - Using a wrapper for DataLoader to hide dispatch(). This is what we are doing right now. ```java public class DataLoaderWrapper { private DataLoader _dataLoader;...