The synchronization query to use when we listen for changes to nodes. The nodes must also match the specified filter.

interface SyncNodeTableExpressionV3 {
    limit?: number;
    nodes: {
        chainTo?: TableExpressionChainToDefinition;
        direction?: "outwards" | "inwards";
        filter?: TableExpressionFilterDefinition;
        from?: string;
        through?: NodeTableExpressionThrough;
    };
}

Properties

Properties

limit?: number

Limits the number of instances in the result set generated by this table expression.

nodes: {
    chainTo?: TableExpressionChainToDefinition;
    direction?: "outwards" | "inwards";
    filter?: TableExpressionFilterDefinition;
    from?: string;
    through?: NodeTableExpressionThrough;
}