Interface LiveQueryMove

An object that describes how a document's position in a live query's list of matching documents has changed since the previous live query event.

Use DQL (Ditto Query Language) instead. For more information see: https://ditto.com/link/dql-legacy-to-dql-adoption

interface LiveQueryMove {
    from: number;
    to: number;
}

Properties

Properties

from: number

The index of the document in the list of matching documents from the previous live query event.

Use DQL (Ditto Query Language) instead. For more information see: https://ditto.com/link/dql-legacy-to-dql-adoption

to: number

The index of the document in the list of matching documents from the new live query event.

Use DQL (Ditto Query Language) instead. For more information see: https://ditto.com/link/dql-legacy-to-dql-adoption