querymen
querymen copied to clipboard
querying ref / nested properties
Hi,
How can i use queryman to query references schema properties? lets say i have City Model and Streets Model where
id: 123,
name: 'my city',
streets: [..]
}
where streets is sub resource ref fields for example in the City Schema its defined like this:
type: Schema.ObjectId,
ref: 'Streets',
field: 'cityId'
}]
so when doing query man i want to search bit city name and streets name like so:
term: {
type: RegExp,
paths: ['name', 'streets.name'],
}
url?term="york"
so if i search for york it will give me cities that have "york" in their name and streets that have "york" in their name also.
hope i was clear,
Thanks!
+1
+1
+1
Anyone found a way to do this?
+1