could someone help me? im trying to define a type ...
# prisma-whats-new
b
could someone help me? im trying to define a type for an array of ints in a mutation, is this correct:
$myField: [Int]
. I keep getting
invalid literal for int() with base 10: ','
My query for the same data returns an array of ints successfully, so im guessing my type definition is wrong.
m
@bpk try
[Int!]!
b
Thank you very much!