fl-query icon indicating copy to clipboard operation
fl-query copied to clipboard

Queries should copy the params

Open PetrKubes97 opened this issue 1 year ago • 0 comments

This code does not work as expected:

final someParams = [...]
someMutation.mutate(someParams);
someParams.clear();

this one does:

final someParams = [...]
await someMutation.mutate(someParams);
someParams.clear();

I'd say it's more intuitive to have the first one work as well.

PetrKubes97 avatar Apr 17 '24 11:04 PetrKubes97