Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Conditional grouping with $exists inside $cond

I have two keys A and B and their existence in the document is mutually exclusive. I have to group by A when A exists and group by B when B exists. So I am $projecting the required value into a computed key called MyKey on which I'll perform a $group. But it looks like I'm making a mistake with the syntax. I tried writing $project in two ways:

{$project: {MyKey: {$cond: [{$exists: ["$A", true]}, "$A", "$B"]}}}

and

{$project: {MyKey: {$cond: [{"A": {$exists:true}}, "$A", "$B"]}}}

But I keep getting the error:

{ "errmsg" : "exception: invalid operator '$exists'", "code" : 15999, "ok" : 0 } ...

What's going wrong?

like image 262
Aafreen Sheikh Avatar asked Jan 08 '13 11:01

Aafreen Sheikh


3 Answers

Use $ifNull instead of $cond in your $project:

{ $project: {MyKey: {$ifNull: ['$A', '$B'] }}}

If A exists and is not null its value will be used; otherwise the value of B is used.

like image 92
JohnnyHK Avatar answered Oct 11 '22 01:10

JohnnyHK


if one wants to check $exists with in $cond an alternative approach is to use $not with $cond

{$project: {MyKey: {$cond: [{$not: ["$A"]}, "$B", "$A"]}}} 

and truth table for $not is as

enter image description here

Hopes that Helps

like image 61
Imran Avatar answered Oct 11 '22 02:10

Imran


You can simulate exists with

$ne : [$var_to_check, undefined]

This returns true if the var is defined

like image 21
Delcon Avatar answered Oct 11 '22 01:10

Delcon