The skip stage skips over the specified number of documents and passes the remaining documents into the next stage of the pipeline.
{"$skip": <positive integer>}
Examples
GET /c_patients?pipeline=[{"$match": {"c_gender": "f"}},{"$project": {"c_name": 1}},{"$skip": 1},{"$limit":1}]
{
"data": [
{
"_id": "59496035bfd25d0100661faf",
"c_name": {
"c_first": "Holly",
"c_last": "Forrester"
}
}
],
"hasMore": false,
"object": "list"
}