Bug with query builder

Hi,

When ordering a type in the query builder under the API Explorer,if I first click the then button and then desc the build create an invalid query: queryRepository(order: {then: {}, desc: name})
It should be: queryRepository(order: {desc: name, then: {}})

That is the same query. It is an object. The order of props in an object make no difference other than human readability.

Oh ok