I'm trying to send graphql request with an array in the query is there any way I can do that?
query Filter($user: [String]) {
filter(user: $user) {
id
}
}
and this array that I want to send
user = [{ "userName":[{"userName":"simo"},{"userName":"jhon"}]}]