Type alias VersionInfo

VersionInfo: {
    details?: {
        [key: string]: string;
    };
    license: "community" | "enterprise";
    server: string;
    version: string;
}

Result of retrieving database version information.

Type declaration

  • Optional details?: {
        [key: string]: string;
    }

    Additional information about the ArangoDB server.

    • [key: string]: string
  • license: "community" | "enterprise"

    ArangoDB license type or "edition".

  • server: string

    Value identifying the server type, i.e. "arango".

  • version: string

    ArangoDB server version.

Generated using TypeDoc