Type alias SimpleQueryRemoveByKeysResult<T>

SimpleQueryRemoveByKeysResult<T>: {
    ignored: number;
    old?: DocumentMetadata[] | Document<T>[];
    removed: number;
}

Result of removing documents by keys.

See removeByKeys and removeByKeys.

Deprecated

Simple Queries have been deprecated in ArangoDB 3.4 and can be replaced with AQL queries.

Type Parameters

  • T extends Record<string, any> = any

Type declaration

  • ignored: number

    Number of documents not removed.

  • Optional old?: DocumentMetadata[] | Document<T>[]

    Documents that have been removed.

  • removed: number

    Number of documents removed.

Generated using TypeDoc