meteor-tabular
meteor-tabular copied to clipboard
Selector
How can i selector with not operator? selector(){ return {Teacher:!""} }
That could work:
selector(){ return {Teacher: {$exists: true}} }
or this:
selector(){ return {Teacher: {$not: ""}} }