FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date.

Fauna accounts created after August 21, 2024 must use FQL v10. These accounts will not be able to run FQL v4 queries or access the v4 Dashboard.

For more details, see the v4 EOL announcement and migration guide. Contact support@fauna.com with any questions.

Second

This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics.

Second( timestamp )
second( timestamp )
Second( timestamp )
Second( timestamp )
Second( timestamp )
Second( timestamp )

Description

The Second function extracts the seconds value from a Timestamp.

Parameters

Parameter Type Definition and Requirements

timestamp

Timestamp

The timestamp from which to extract the seconds value.

Returns

A Number which represents the value of the seconds, in the range 0 to 59, from the provided timestamp.

Examples

The following query returns the seconds value from a timestamp:

client.query(
  q.Second(q.Time('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,
))
17
result = client.query(
  q.second(q.time("2019-04-29T12:51:17Z"))
)
print(result)
17
result, err := client.Query(
	f.Second(f.Time("2019-04-29T12:51:17Z")))

if err != nil {
	fmt.Fprintln(os.Stderr, err)
} else {
	fmt.Println(result)
}
17
try
{
    Value result = await client.Query(
        Second(Time("2019-04-29T12:51:17Z"))
    );
    Console.WriteLine(result);
}
catch (Exception e)
{
    Console.WriteLine($"ERROR: {e.Message}");
}
LongV(17)
System.out.println(
    client.query(
        Second(Time(Value("2019-04-29T12:51:17Z")))
    ).get()
);
17
Second(Time('2019-04-29T12:51:17Z'))
17
Query metrics:
  •    bytesIn:  42

  •   bytesOut:  15

  • computeOps:   1

  •    readOps:   0

  •   writeOps:   0

  •  readBytes:   0

  • writeBytes:   0

  •  queryTime: 2ms

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