GraphScope icon indicating copy to clipboard operation
GraphScope copied to clipboard

[BUG] A Bug in group() when querying BI3

Open BingqingLyu opened this issue 3 years ago • 0 comments

Describe the bug A clear and concise description of what the bug is.

A Encode/Decode error occurs when running BI3 as follows:

g.V().has("COUNTRY", "name", "China").in("ISPARTOF").in("ISLOCATEDIN").as("person")
.in("HASMODERATOR").as("forum") .out("CONTAINEROF").in("0..6", "REPLYOF").endV().as("msg")
.out("HASTAG").out("HASTYPE").has("TAGCLASS", "name", "Song")
.group()
.by(select("forum"))
.by(dedup().count().as("msgCnt"))
.order()
.by(select("msgCnt"), desc)
.by(select(keys).values("id"), asc)
.limit(20)

BingqingLyu avatar Aug 15 '22 02:08 BingqingLyu