I am using GraphQL (Overblog Bundle, Symfony) with PHP and I have a query that receives an array of arguments (integers).
e.g. getAllData([6, 8, 1, 19, 4])
It seems like GraphQl is sorting the output automatically in DESC order.
1 4 6 8 19
I would like to keep the order the arguments are passed in. Is this possible?