<slide>
<title>Advanced querying operators</title>

<blurb>Operators start with a '$', so use single quotes!</blurb>

<div effect="fade-out">
<blurb>Comparison:</blurb>
<list>
    <bullet>$lt, $lte, $gt, $gte (&lt;, &lt;=, &gt;, &gt;=)</bullet>
    <bullet>$ne (not equal)</bullet>
</list>
<blurb>Logical:</blurb>
<list>
    <bullet>$or, $and</bullet>
    <bullet>$nor (not or)</bullet>
    <bullet>$not</bullet>
</list>
</div>

<div effect="fade-in-out">
<blurb>Meta:</blurb>
<list>
    <bullet>$exists (field exists)</bullet>
    <bullet>$type (field type)</bullet>
</list>
<blurb>Evaluation:</blurb>
<list>
    <bullet>$mod (modulo)</bullet>
    <bullet>$where (JS expression)</bullet>
</list>
</div>

<div effect="fade-in">
<blurb>Array:</blurb>
<list>
    <bullet>$in (value needs to be one of the elements of the given array)</bullet>
    <bullet>$nin (not in)</bullet>
    <bullet>$all (value needs to match all elements of the given array)</bullet>
    <bullet>$size (exact size of array)</bullet>
	<bullet>$elemMatch (element in an array matches the specified match expression)</bullet>
</list>
</div>
</slide>
