how do i query against nested properties?
Open
- Dominant language
- JavaScript
- Stars
- 276
- Forks
- 48
- PR merge metrics
- No merged PRs in 30d
Description
my first thought was to try a dot-separated path
``` js
q = new Query().eq('user.id', id);
```
but the only way i've found to work is to use an array of path segments
``` js
q = new Query().eq(['user', 'id'], id);
```
should the dot-separated path work or is the array the right way?
Contributor guide
Assessment
This issue has not been assessed yet.