dosubot[bot] commented on issue #2572:
URL: 
https://github.com/apache/incubator-hugegraph/issues/2572#issuecomment-2226815220

   <!-- Answer -->
   您好,Gremlin 原生确实支持 `contains` 和 `regex` 操作,例如:
   
   ```gremlin
   g.V().hasLabel("person").has("like", Text.contains("doge"))
   ```
   
   或者基于内存的 `filter()`:
   
   ```gremlin
   g.V().filter{ it.get().value("name").contains("Template") }
   ```
   
   此外,Gremlin 还支持 `startWith` 和 `endWith` 等操作。您可以参考相关代码来实现这些功能。
   
   
   <!-- Dosu Comment Footer -->
   *To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
   


-- 
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