Year

Copied!
( timestamp )

Description

The Year function extracts the year from a Timestamp.

Parameters

Parameter Type Definition and Requirements

timestamp

A Timestamp from which the year should be extracted.

Returns

A Number which represents the value of the year from the provided timestamp.

Examples

The following query returns the year from a timestamp:

Copied!
client.query(
  q.(q.('2019-04-29T12:51:17Z'))
)
.then((ret) => console.log(ret))
.catch((err) => console.error(
  'Error: [%s] %s: %s',
  err.name,
  err.message,
  err.errors()[0].description,
))
2019
Query metrics:
  •    bytesIn:  40

  •   bytesOut:  17

  • computeOps:   1

  •    readOps:   0

  •   writeOps:   0

  •  readBytes:   0

  • writeBytes:   0

  •  queryTime: 3ms

  •    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!