meteor-tabular icon indicating copy to clipboard operation
meteor-tabular copied to clipboard

Selector

Open josielmoraes opened this issue 7 years ago • 1 comments

How can i selector with not operator? selector(){ return {Teacher:!""} }

josielmoraes avatar May 30 '18 14:05 josielmoraes

That could work:

selector(){ return {Teacher: {$exists: true}} }

or this:

selector(){ return {Teacher: {$not: ""}} }

ruerob avatar Aug 21 '18 07:08 ruerob