db.command.aggregate.second
1. Operator Description
Function: Returns the second for a date field, which is an integer between 0 and 59, and may be equal to 60 in special cases (leap second).
Declaration: db.command.aggregate.second(<date field>)
2. Operator Parameters
Field | Type | Required | Description |
---|---|---|---|
- | Expression | Required | aggregate expression |
3. Sample Code
Suppose the collection dates
contains the following documents:
{
"_id": 1,
"date": ISODate("2019-05-14T09:38:51.686Z")
}
We use second()
to project the date
field and obtain the corresponding second:
// Sample code in the Cloud Function environment
const tcb = require('@cloudbase/node-sdk')
const app = tcb.init({
env: 'xxx'
})
const db = app.database()
const $ = db.command.aggregate
const _ = db.command
exports.main = async (event, context) => {
const res = await db
.collection('dates')
.aggregate()
.project({
_id: 0,
second: $.second('$date')
})
.end()
console.log(res.data)
}
The output is as follows:
{
"second": 51
}