skysider commented on issue #2572:
URL: 
https://github.com/apache/incubator-hugegraph/issues/2572#issuecomment-2245236266

   @imbajin @dosu
   尝试了一下`g.V().hasLabel("person").has("like", Text.contains("doge"))` 
这种不行,另外一种基于filter的可以:
   ```
   g.V().filter{ it.get().value("name").contains("Template") }
   ```
   最终有效的语句:
   ```
   g.V().filter{ it.get().value("name").contains("Template") }
   ```
   或者
   ```
   g.V().filter(values("name").is(Text.contains("Template")))
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to