I'd like to set up a query that has multiple enums sent over for the same parameter.
test_query(enum:FIRST,SECOND){ stuffs }
It appears that this is not possible in graphql-JS, but I'm not sure.
You simply wrap them in []
[]
test_query(enum:[FIRST,SECOND]){ stuffs }