Skip to main content

timelines

Creates, updates, deletes, gets or lists a timelines resource.

Overview

Nametimelines
TypeResource
Iddeno.revisions.timelines

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
domainsarrayDomains routed to this timeline
partitionobjectPartition key-value pairs identifying this timeline
slugstringTimeline slug derived from the partition config name

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectrevisionGet the timelines (deployment targets) where this revision is active.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
revisionstringRevision ID (globally unique)

SELECT examples

Get the timelines (deployment targets) where this revision is active.

SELECT
domains,
partition,
slug
FROM deno.revisions.timelines
WHERE revision = '{{ revision }}' -- required
;