Interface IZDatabaseDocumentCollection

Represents a collection of documents in a document db.

interface IZDatabaseDocumentCollection {
    join: {
        as: string;
        foreign: string;
        local: string;
        target: string;
    }[];
    name: string;
}

Properties

Properties

join: {
    as: string;
    foreign: string;
    local: string;
    target: string;
}[]

A list of left outer join targets.

Type declaration

  • as: string
  • foreign: string
  • local: string
  • target: string
name: string

The collection name.

Generated using TypeDoc