Vinelab / NeoEloquent

The Neo4j OGM for Laravel
MIT License
633 stars 197 forks source link

How Can I Do Search with "like" #362

Closed ENGAHMAD97 closed 2 years ago

Mulkave commented 2 years ago

You can do so with Regular Expressions in Neo4j. From the example it would be:

Person::where('name', '=~', 'Tim.*`)->get();
ENGAHMAD97 commented 2 years ago

thank you