I need to find a query where the statement in the title holds true with the training_sample db of mongodb. This is the data structure (directional graph):
{
_id: ObjectId("56e9b39c732b6122f878f882"),
airline: { id: 3778, name: 'Oman Air', alias: 'WY', iata: 'OMA' },
src_airport: 'LHR',
dst_airport: 'MCT',
codeshare: '',
stops: 0,
airplane: 333
}
How do I do this?
One option is to use
$lookup
:$lookup
pipeline to add to each document the opposite directions if exists$match
only documents with empty opposite fieldSee how it works on the playground example