In my schema, I have an array of strings for a fie...
# orm-help
j
In my schema, I have an array of strings for a field. Would I still use a stringArg or is there an arg for lists? type MyType { myStrings: [String!]! } would it look like this? args: { myStrings: stringArg({ list: true }); }