nebula 中双向边的语义问题

我插入了 2 -> 3 和 3 -> 2 两条 e1 类型边,然后用 go from 2 over e1 bidirect 查询,查出来的结果有两行 3,请问这个是什么含义?我看官方文档中的例子不是这样的,是对于每个双向关系只返回了一行。https://docs.nebula-graph.com.cn/manual-CN/2.query-language/4.statement-syntax/2.data-query-and-manipulation-statements/go-syntax/

(user@nebula) [test]> go from 2 over e1 bidirect;
===========
| e1._dst |
===========
| 3       |
-----------
| 3       |
-----------
Got 2 rows (Time spent: 1.935/2.918 ms)

Thu Sep 10 04:03:33 2020

go from 2 over e1 , 表示从2 作为起点的边

go from 2 over e1 reversely, 表示从2 作为终点的边

go from 2 over e1 bidirect,表示上面两者的和