ToMillis

Copied!
( value )

Description

The ToMillis function converts a value to the number of milliseconds since Unix epoch (midnight, January 1, 1970), if possible.

Attempting to convert a value to a number of milliseconds which has no numeric representation results in an "invalid argument" error.

Parameters

Parameter Type Definition and Requirements

value

Any

The value to attempt to convert to a number of milliseconds since Unix epoch.

If you provide a Number, it is interpreted as the number of microseconds since Unix epoch.

Returns

A Number representing the number of milliseconds since Unix epoch.

Examples

The following query calls ToMillis twice:

  1. To convert 1 second after Unix epoch into milliseconds.

  2. To convert the current transaction time into milliseconds.

Copied!
client.query([
  q.(q.(1, 'second')),
  q.(q.('2020-07-06T12:34:56.789Z')),
])
.then((ret) => console.log(ret))
.catch((err) => console.error(
  'Error: [%s] %s: %s',
  err.name,
  err.message,
  err.errors()[0].description,
))
[ 1000, 1594038896789 ]
Query metrics:
  •    bytesIn:  93

  •   bytesOut:  33

  • computeOps:   1

  •    readOps:   0

  •   writeOps:   0

  •  readBytes:   0

  • writeBytes:   0

  •  queryTime: 4ms

  •    retries:   0

Is this article helpful? 

Tell Fauna how the article can be improved:
Visit Fauna's forums or email docs@fauna.com

Thank you for your feedback!