What i have so far
{
  $or: [
    { ax: 300 },
    { ax: 301 },
  ]
}
What i have so far
{
  $or: [
    { ax: 300 },
    { ax: 301 },
  ]
}
document schema is like
{ ax: [Number] }
Need a query to return these 2 things:
{ ax: [300, 100, 150, ...] }
}
{ ax: [300, 301, ...] }
but not these:
{ ax: [300, 302-319, ... ] }