Do aliases work in the latest Dgraph 1.2.0 update?

Hello.
Do aliases work in the latest Dgraph 1.2.0 update?
https://tour.dgraph.io/basic/13/

{
  michael_number_friends(func: allofterms(name, "Michael")) {
    persons_name : name
    age
    number_of_friends : count(friend)
  }
}
"data": {
    "michael_number_friends": [
      {
        "persons_name": "Michael",
        "age": 39,
        "number_of_friends": 5
      }
    ]
  },

https://tour.dgraph.io/basic/15/

{
  michael_number_friends(func: allofterms(name, "Michael")) @normalize {
    name : mynewname
    age
    number_of_friends : count(friend)
  }
}
"data": {
    "michael_number_friends": [
      {
        "number_of_friends": 5
      }
    ]
  },

The order is wrong. It should be

{
  michael_number_friends(func: allofterms(name, "Michael")) @normalize {
    mynewname : name
    age : age
    number_of_friends : count(friend)
  }
}

Check the docs Get started with Dgraph