Node

interface SlimNodeDefinition {
    createdTime: number;
    externalId: string;
    instanceType: "node";
    lastUpdatedTime: number;
    space: string;
    version: number;
    wasModified: boolean;
}

Properties

createdTime: number

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

externalId: string

Unique identifier for the node

instanceType: "node"
lastUpdatedTime: number

The number of milliseconds since 00:00:00 Thursday, 1 January 1970, Coordinated Universal Time (UTC), minus leap seconds.

space: string

Id of the space that the node belongs to

version: number

Current version of the node

wasModified: boolean

Whether or not the node was modified by this ingestion. We only update the nodes if the input differs from the existing state.