Closed eddyystop closed 4 years ago
The GraphQL resolvers generate const convertArgs = convertArgsToFeathers([]);. It may be more flexible to generate const convertArgs = convertArgsToFeathers(foo); and elsewhere have let foo = []; as this would allow an easy global change.
const convertArgs = convertArgsToFeathers([]);
const convertArgs = convertArgsToFeathers(foo);
let foo = [];
The GraphQL resolvers generate
const convertArgs = convertArgsToFeathers([]);
. It may be more flexible to generateconst convertArgs = convertArgsToFeathers(foo);
and elsewhere havelet foo = [];
as this would allow an easy global change.