Type alias DocumentMetadata

DocumentMetadata: {
    _id: string;
    _key: string;
    _rev: string;
}

Common ArangoDB metadata properties of a document.

Type declaration

  • _id: string

    Unique ID of the document, which is composed of the collection name and the document _key.

  • _key: string

    Key of the document, which uniquely identifies the document within its collection.

  • _rev: string

    Revision of the document data.

Generated using TypeDoc