When running a query like { _meta { block { number } } things { id }} the response contains things first and _meta at the end. This is most likely because we pick fields apart here and then put them together without considering their ordering in the query.
When running a query like
{ _meta { block { number } } things { id }}
the response containsthings
first and_meta
at the end. This is most likely because we pick fields apart here and then put them together without considering their ordering in the query.