Azure Cosmos DB Graph Wildcard search
问题 Is it possible to search Vertex properties with a contains in Azure Cosmos Graph DB? For example, I would like to find all persons which have 'Jr' in their name? g.V().hasLabel('person').has('name',within('Jr')).values('name') Seems like the within('') function only filters values that are exactly equal to 'Jr' . I am looking for a contains. Ideally case insensitive. 回答1: None of the text matching functions are available for CosmosDB at this time. However, I was able to implement a wildcard