Check out v4 of the Fauna CLI

v4 of the Fauna CLI is now in beta.

The new version introduces enhancements to the developer experience, including an improved authentication workflow. To get started, check out the CLI v4 quick start.

Time.fromString()

Convert a time String to a Time value.

Signature

Time.fromString(timeString: String) => Time

Description

The Time.fromString() method converts an ISO 8601 timeString to a Time value.

Parameter fields:

Time field Description

yyyy

Four-digit year.

MM

Month, from 01 to 12.

dd

Day, from 01 to 31.

T

Date and time separator.

hh

Hours, from 00 to 23.

mm

Minutes, from 00 to 59.

ss

Seconds, from 00 to 59, which can also be expressed as a decimal fraction to give nanosecond resolution.

TZO

Timezone offset from UTC which can be one of:

Timezone Description

Z

UTC, no offset

+hhmm

Positive hour and minute offset from UTC.

-hhmm

Negative hour and minute offset from UTC.

This method is equivalent to the Time() method.

Parameters

Parameter Type Required Description

timeString

String

Yes

Time string in the form yyyy-MM-ddThh:mm:ssTZO.

Return value

Type Description

Time

Object representing timeString.

Examples

Convert a time String to a Time value:

Time.fromString("2099-10-20T21:15:09.890729Z")
Time("2099-10-20T21:15:09.890729Z")

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!