EDIT:
“econtains” is the wrong operator. This query works:
```dataview
LIST
WHERE contains(company,"Disney")
```
====================
I’ve seen several examples on here of using the WHERE clause in interesting ways but none seem to address my use case. I’d like to use a WHERE LIKE style phrase. I understand that the closest to a “LIKE” operator is the “contains” clause in Dataview.
Use Case follows.
I use meta fields to create a lite CRM in Obsidian.
I have “company” notes spread across multiple folders in Obsidian. When I create a note for a person I will add a YAML field for “company” and use internal linking to insert the company name property.
I have a field for “company” that looks like this for each “person” note:
---
company: [[Notes/Disney]]
date: 2021-09-03
tags: contact
---
I’d like to use Dataview to display all notes with the company “Disney” meta field. I don’t want to worry about the folder that the “Disney” note is in. I’ve tried variations of this Dataview query but they all fail:
```dataview
LIST
WHERE econtains(company,"Disney")
```
I get zero result for the above query