-
Notifications
You must be signed in to change notification settings - Fork 525
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] hasLabel() cannot be queried after inE() #1950
Comments
The exception can also be triggered when we remove the label In addition, I find that if I execute this query as the following way, it does not throw exception but return the correct result.
|
@zhengyingying Yes it looks fixed, but due to v0.12.0 version does not contain the latest code, you can try cherry-pick that commit and execute how to cherry-pick and package manually: git checkout master
git pull
git checkout -b release-0.12 origin/release-0.12
git cherry-pick cadeade476e5e9773471cbc67b1a65ed505eba77
mvn package -DskipTests |
@javeme Thanks! I will try to do it. In addition, may I ask the cause of this bug? |
@javeme
How can I solve it? |
Bug Type (问题类型)
No response
Before submit
Environment (环境信息)
Expected & Actual behavior (期望与实际表现)
We execute the query
g.V().inE('el0').hasLabel('el0','el1')
and expect it returns some edges.But it throws an exception
java.lang.IllegalStateException: Illegal key 'LABEL' with more than one value
.Reproduce
The schema of the simplify graph as follows.
The text was updated successfully, but these errors were encountered: