Why does Dgraph shortest path return more hops than Neo4j for the same data and how to get Neo4j-like paths in Dgraph?

Following data I can share

{
    set{
        _:node_5340 <dgraph.type> "People" .
        _:node_5340 <nt> "People" .
        _:node_5340 <title> "person1" .

        _:node_5120 <dgraph.type> "Entity" .
        _:node_5120 <nt> "Entity" .
        _:node_5120 <title> "abc llc" .

        _:node_5163 <dgraph.type> "Function" .
        _:node_5163 <nt> "Function" .
        _:node_5163 <title> "rfp" .

        _:node_5260 <dgraph.type> "Functional_Role" .
        _:node_5260 <nt> "Functional_Role" .
        _:node_5260 <title> "senior business development & client services operations associate" .

        _:node_5125 <dgraph.type> "Office_Location" .
        _:node_5125 <nt> "Office_Location" .
        _:node_5125 <title> "new york city" .

        _:node_5292 <dgraph.type> "People" .
        _:node_5292 <nt> "People" .
        _:node_5292 <title> "cai, caroline" .

        _:node_5152 <dgraph.type> "Function" .
        _:node_5152 <nt> "Function" .
        _:node_5152 <title> "admistrative assistant" .

        _:node_1013 <dgraph.type> "Entity" .
        _:node_1013 <nt> "Entity" .
        _:node_1013 <title> "test entity" .

        _:node_8192 <dgraph.type> "Initiative" .
        _:node_8192 <nt> "Initiative" .
        _:node_8192 <title> "test" .

        _:node_5340 <CONNECTED> _:node_5120 .
        _:node_5340 <CONNECTED> _:node_5163 .
        _:node_5340 <CONNECTED> _:node_5260 .
        _:node_5340 <CONNECTED> _:node_5125 .

        _:node_1013 <CONNECTED> _:node_5163 .

        _:node_5292 <CONNECTED> _:node_5120 .

        _:node_5152 <OWNER> _:node_5292 .

        _:node_1013 <CONNECTED> _:node_5152 .

        _:node_8192 <CONNECTED> _:node_1013 .

    }
}