Options
All
  • Public
  • Public/Protected
  • All
Menu

Module "documents"

import type { Document, Edge } from "arangojs/document";

TODO

Index

Type aliases

Document

Document<T>: T & DocumentMetadata & Partial<EdgeMetadata>

TODO

Type parameters

  • T: object

DocumentData

DocumentData<T>: T & Partial<DocumentMetadata> & Partial<EdgeMetadata>

TODO

Type parameters

  • T: object

DocumentMetadata

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

TODO

Type declaration

  • _id: string
  • _key: string
  • _rev: string

DocumentSelector

DocumentSelector: ObjectWithId | ObjectWithKey | string

TODO

Edge

TODO

Type parameters

  • T: object

EdgeData

EdgeData<T>: T & Partial<DocumentMetadata> & EdgeMetadata

TODO

Type parameters

  • T: object

EdgeMetadata

EdgeMetadata: { _from: string; _to: string }

TODO

Type declaration

  • _from: string
  • _to: string

ObjectWithId

ObjectWithId: { _id: string }

TODO

Type declaration

  • [key: string]: any
  • _id: string

ObjectWithKey

ObjectWithKey: { _key: string }

TODO

Type declaration

  • [key: string]: any
  • _key: string

Generated using TypeDoc