aggregation: Should have a $range operator to generate a sequence.

XMLWordPrintableJSON

    • Fully Compatible
    • Query 12 (04/04/16)
    • None
    • 3
    • None
    • None
    • None
    • None
    • None
    • None

      Syntax

      {$range: [<start>, <end>, <step>]}
      

      Example

      Input

      {_id: 0}
      

      Pipeline

      db.coll.aggregate([{
          $project: {
              x: {$range: [0, 6, 2]}
          }
      }])
      

      Output

      {_id: 0, x: [0, 2, 4]}
      

      Additional Notes

            Assignee:
            Benjamin Murphy (Inactive)
            Reporter:
            Craig Wilson
            Votes:
            0 Vote for this issue
            Watchers:
            8 Start watching this issue

              Created:
              Updated:
              Resolved: