Type alias SimpleQueryRemoveByKeysOptions

SimpleQueryRemoveByKeysOptions: {
    returnOld?: boolean;
    silent?: boolean;
    waitForSync?: boolean;
}

Options for removing documents by keys.

Deprecated

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

Type declaration

  • Optional returnOld?: boolean

    If set to true, the complete old document will be returned as the old property on the result object. Has no effect if silent is set to true.

    Default: false

  • Optional silent?: boolean

    If set to true, no data will be returned by the server. This option can be used to reduce network traffic.

    Default: false

  • Optional waitForSync?: boolean

    If set to true, the request will wait until all modifications have been synchronized to disk before returning successfully.

    Default: false

Generated using TypeDoc