Azure Graph Vertices property filter

Mohan Loganathan 1 Reputation point
2022-01-03T19:22:57.273+00:00

Hi, I am trying to identify the list of filter properties in Azure Vertices (Ex: for less than its LE, greater than its GE) in Graph Database. Similarly, I am looking for LIKE filter condition (Ex: first name like 'Mohan'). Could anyone of you help to find the syntax for the filter like/contains?

Ex: g.V().hasLabel('Person').has('PersonName','MohanRaj')

Thanks.

Azure Cosmos DB
Azure Cosmos DB
An Azure NoSQL database service for app development.
1,452 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Mohan Loganathan 1 Reputation point
    2022-01-03T20:33:41.763+00:00

    Found the syntax. Its g.V().hasLabel('Person').has('Name', containing('Mohan'))

    0 comments No comments