Shortest path query problem

This is not a bug.
In the dataset, name field is not provided for all nodes of type Person.
The path query works well for Michael and Sarah because name field is defined for them.

For other entities like Amit, Hyung Sin, Luke, Artyom name@en field is defined using a facet.
To make the query work for them, you can either use the following shortest path query or add name field to all other entities.

{
 path as shortest(from: 0xb, to: 0x2) {
  friend
 }
 path(func: uid(path)) {
   name
   name@en
 }
}

The path query tries to see if name field is defined for the nodes on path. If it is not defined, it does not return any field for that node.