arangojs
Version:
The official ArangoDB JavaScript driver.
1,137 lines • 35.9 kB
TypeScript
/**
* ```ts
* import type {
* Graph,
* GraphVertexCollection,
* GraphEdgeCollection,
* } from "arangojs/graph.js";
* ```
*
* The "graph" module provides graph related types and interfaces
* for TypeScript.
*
* @packageDocumentation
*/
import { ArangoCollection, DocumentCollection, EdgeCollection } from "./collection.js";
import { Database } from "./database.js";
import { Document, DocumentData, DocumentMetadata, DocumentSelector, Edge, EdgeData, Patch } from "./documents.js";
/**
* Indicates whether the given value represents a {@link graph.Graph}.
*
* @param graph - A value that might be a Graph.
*/
export declare function isArangoGraph(graph: any): graph is Graph;
/**
* Options for retrieving a document from a graph collection.
*/
export type GraphCollectionReadOptions = {
/**
* If set to a document revision, the document will only be returned if its
* `_rev` property matches this value.
*
* See also {@link documents.DocumentMetadata}.
*/
rev?: string;
/**
* If set to `true`, `null` is returned instead of an exception being thrown
* if the document does not exist.
*
* Default: `false`
*/
graceful?: boolean;
/**
* If set to `true`, the request will explicitly permit ArangoDB to return a
* potentially dirty or stale result and arangojs will load balance the
* request without distinguishing between leaders and followers.
*
* Default: `false`
*/
allowDirtyRead?: boolean;
};
/**
* Options for inserting a document into a graph collection.
*/
export type GraphCollectionInsertOptions = {
/**
* If set to `true`, data will be synchronized to disk before returning.
*
* Default: `false`
*/
waitForSync?: boolean;
/**
* If set to `true`, the complete new document will be returned as the `new`
* property on the result object.
*
* Default: `false`
*/
returnNew?: boolean;
};
/**
* Options for replacing a document in a graph collection.
*/
export type GraphCollectionReplaceOptions = {
/**
* If set to a document revision, the document will only be modified if its
* `_rev` property matches this value.
*
* See also {@link documents.DocumentMetadata}.
*/
rev?: string;
/**
* If set to `true`, data will be synchronized to disk before returning.
*
* Default: `false`
*/
waitForSync?: boolean;
/**
* If set to `false`, properties with a value of `null` will be removed from
* the new document.
*
* Default: `true`
*/
keepNull?: boolean;
/**
* If set to `true`, the complete old document will be returned as the `old`
* property on the result object.
*
* Default: `false`
*/
returnOld?: boolean;
/**
* If set to `true`, the complete new document will be returned as the `new`
* property on the result object.
*
* Default: `false`
*/
returnNew?: boolean;
};
/**
* Options for removing a document from a graph collection.
*/
export type GraphCollectionRemoveOptions = {
/**
* If set to a document revision, the document will only be removed if its
* `_rev` property matches this value.
*
* See also {@link documents.DocumentMetadata}.
*/
rev?: string;
/**
* If set to `true`, data will be synchronized to disk before returning.
*
* Default: `false`
*/
waitForSync?: boolean;
/**
* If set to `true`, the complete old document will be returned as the `old`
* property on the result object.
*
* Default: `false`
*/
returnOld?: boolean;
};
/**
* Definition of a relation in a {@link graph.Graph}.
*/
export type EdgeDefinition = {
/**
* Name of the collection containing the edges.
*/
collection: string;
/**
* Array of names of collections containing the start vertices.
*/
from: string[];
/**
* Array of names of collections containing the end vertices.
*/
to: string[];
};
/**
* An edge definition used to define a collection of edges in a {@link graph.Graph}.
*/
export type EdgeDefinitionOptions = {
/**
* Collection containing the edges.
*/
collection: string | ArangoCollection;
/**
* Collection or collections containing the start vertices.
*/
from: (string | ArangoCollection)[] | string | ArangoCollection;
/**
* Collection or collections containing the end vertices.
*/
to: (string | ArangoCollection)[] | string | ArangoCollection;
};
/**
* General information about a graph.
*/
export type GraphInfo = {
/**
* Key of the document internally representing this graph.
*
* See {@link documents.DocumentMetadata}.
*
* @internal
*/
_key: string;
/**
* Unique identifier of the document internally representing this graph.
*
* See {@link documents.DocumentMetadata}.
*
* @internal
*/
_id: string;
/**
* Revision of the document internally representing this graph.
*
* See {@link documents.DocumentMetadata}.
*
* @internal
*/
_rev: string;
/**
* Name of the graph.
*/
name: string;
/**
* Definitions for the relations of the graph.
*/
edgeDefinitions: EdgeDefinition[];
/**
* Additional vertex collections. Documents within these collections do not
* have edges within this graph.
*/
orphanCollections: string[];
/**
* (Cluster only.) Number of shards that is used for every collection
* within this graph.
*/
numberOfShards?: number;
/**
* (Cluster only.) Replication factor used when initially creating
* collections for this graph.
*/
replicationFactor?: number;
/**
* (Cluster only.) Write concern for new collections in the graph.
*/
writeConcern?: number;
/**
* (Enterprise Edition cluster only.) If set to `true`, the graph is a
* SatelliteGraph.
*/
isSatellite?: boolean;
/**
* (Enterprise Edition cluster only.) If set to `true`, the graph has been
* created as a SmartGraph.
*/
isSmart?: boolean;
/**
* (Enterprise Edition cluster only.) Attribute containing the shard key
* value to use for smart sharding.
*/
smartGraphAttribute?: string;
/**
* (Enterprise Edition cluster only.) If set to `true`, the graph has been
* created as a Disjoint SmartGraph.
*/
isDisjoint?: boolean;
};
/**
* Option for creating a graph.
*/
export type CreateGraphOptions = {
/**
* If set to `true`, the request will wait until all modifications have been
* synchronized to disk before returning successfully.
*
* Default: `false`
*/
waitForSync?: boolean;
/**
* Additional vertex collections. Documents within these collections do not
* have edges within this graph.
*/
orphanCollections?: (string | ArangoCollection)[] | string | ArangoCollection;
/**
* (Cluster only.) Number of shards that is used for every collection
* within this graph.
*
* Has no effect when `replicationFactor` is set to `"satellite"`.
*/
numberOfShards?: number;
/**
* (Cluster only.) Replication factor used when initially creating
* collections for this graph.
*
* Default: `1`
*/
replicationFactor?: number | "satellite";
/**
* (Cluster only.) Write concern for new collections in the graph.
*
* Has no effect when `replicationFactor` is set to `"satellite"`.
*/
writeConcern?: number;
/**
* (Enterprise Edition cluster only.) If set to `true`, the graph will be
* created as a SmartGraph.
*
* Default: `false`
*/
isSmart?: boolean;
/**
* (Enterprise Edition cluster only.) Attribute containing the shard key
* value to use for smart sharding.
*/
smartGraphAttribute?: string;
/**
* (Enterprise Edition cluster only.) If set to `true`, the graph will be
* created as a Disjoint SmartGraph.
*
* Default: `false`
*/
isDisjoint?: boolean;
/**
* (Enterprise Edition cluster only.) Collections to be included in a Hybrid
* SmartGraph.
*/
satellites?: (string | ArangoCollection)[];
};
export type AddVertexCollectionOptions = {
/**
* (Enterprise Edition cluster only.) Collections to be included in a Hybrid
* SmartGraph.
*/
satellites?: (string | ArangoCollection)[];
};
export type AddEdgeDefinitionOptions = {
/**
* (Enterprise Edition cluster only.) Collections to be included in a Hybrid
* SmartGraph.
*/
satellites?: (string | ArangoCollection)[];
};
export type ReplaceEdgeDefinitionOptions = {
/**
* (Enterprise Edition cluster only.) Collections to be included in a Hybrid
* SmartGraph.
*/
satellites?: string[];
};
/**
* Represents a {@link collection.DocumentCollection} of vertices in a {@link graph.Graph}.
*
* @param T - Type to use for document data. Defaults to `any`.
*/
export declare class GraphVertexCollection<T extends Record<string, any> = any> implements ArangoCollection {
protected _db: Database;
protected _name: string;
protected _graph: Graph;
protected _collection: DocumentCollection<T>;
/**
* @internal
*/
constructor(db: Database, name: string, graph: Graph);
/**
* @internal
*
* Indicates that this object represents an ArangoDB collection.
*/
get isArangoCollection(): true;
/**
* Name of the collection.
*/
get name(): string;
/**
* A {@link collection.DocumentCollection} instance for this vertex collection.
*/
get collection(): DocumentCollection<T, T>;
/**
* The {@link graph.Graph} instance this vertex collection is bound to.
*/
get graph(): Graph;
/**
* Checks whether a vertex matching the given key or id exists in this
* collection.
*
* Throws an exception when passed a vertex or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a vertex from this collection).
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.vertexCollection("vertices");
* const exists = await collection.vertexExists("abc123");
* if (!exists) {
* console.log("Vertex does not exist");
* }
* ```
*/
vertexExists(selector: DocumentSelector): Promise<boolean>;
/**
* Retrieves the vertex matching the given key or id.
*
* Throws an exception when passed a vertex or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a vertex from this collection).
* @param options - Options for retrieving the vertex.
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.vertexCollection("vertices");
* try {
* const vertex = await collection.vertex("abc123");
* console.log(vertex);
* } catch (e: any) {
* console.error("Could not find vertex");
* }
* ```
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.vertexCollection("vertices");
* const vertex = await collection.vertex("abc123", { graceful: true });
* if (vertex) {
* console.log(vertex);
* } else {
* console.error("Could not find vertex");
* }
* ```
*/
vertex(selector: DocumentSelector, options?: GraphCollectionReadOptions): Promise<Document<T>>;
/**
* Retrieves the vertex matching the given key or id.
*
* Throws an exception when passed a vertex or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a vertex from this collection).
* @param graceful - If set to `true`, `null` is returned instead of an
* exception being thrown if the vertex does not exist.
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.vertexCollection("vertices");
* try {
* const vertex = await collection.vertex("abc123", false);
* console.log(vertex);
* } catch (e: any) {
* console.error("Could not find vertex");
* }
* ```
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.vertexCollection("vertices");
* const vertex = await collection.vertex("abc123", true);
* if (vertex) {
* console.log(vertex);
* } else {
* console.error("Could not find vertex");
* }
* ```
*/
vertex(selector: DocumentSelector, graceful: boolean): Promise<Document<T>>;
/**
* Inserts a new vertex with the given `data` into the collection.
*
* @param data - The contents of the new vertex.
* @param options - Options for inserting the vertex.
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.vertexCollection("friends");
* const result = await collection.save(
* { _key: "a", color: "blue", count: 1 },
* { returnNew: true }
* );
* console.log(result.new.color, result.new.count); // "blue" 1
* ```
*/
save(data: DocumentData<T>, options?: GraphCollectionInsertOptions): Promise<DocumentMetadata & {
new?: Document<T>;
}>;
/**
* Replaces an existing vertex in the collection.
*
* Throws an exception when passed a vertex or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a vertex from this collection).
* @param newData - The contents of the new vertex.
* @param options - Options for replacing the vertex.
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.collection("vertices");
* await collection.save({ _key: "a", color: "blue", count: 1 });
* const result = await collection.replace(
* "a",
* { color: "red" },
* { returnNew: true }
* );
* console.log(result.new.color, result.new.count); // "red" undefined
* ```
*/
replace(selector: DocumentSelector, newValue: DocumentData<T>, options?: GraphCollectionReplaceOptions): Promise<DocumentMetadata & {
new?: Document<T>;
old?: Document<T>;
}>;
/**
* Updates an existing vertex in the collection.
*
* Throws an exception when passed a vertex or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a vertex from this collection).
* @param newData - The data for updating the vertex.
* @param options - Options for updating the vertex.
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.collection("vertices");
* await collection.save({ _key: "a", color: "blue", count: 1 });
* const result = await collection.update(
* "a",
* { count: 2 },
* { returnNew: true }
* );
* console.log(result.new.color, result.new.count); // "blue" 2
* ```
*/
update(selector: DocumentSelector, newValue: Patch<DocumentData<T>>, options?: GraphCollectionReplaceOptions): Promise<DocumentMetadata & {
new?: Document<T>;
old?: Document<T>;
}>;
/**
* Removes an existing vertex from the collection.
*
* Throws an exception when passed a vertex or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a vertex from this collection).
* @param options - Options for removing the vertex.
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.vertexCollection("vertices");
* await collection.remove("abc123");
* // document with key "abc123" deleted
* ```
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.vertexCollection("vertices");
* const doc = await collection.vertex("abc123");
* await collection.remove(doc);
* // document with key "abc123" deleted
* ```
*/
remove(selector: DocumentSelector, options?: GraphCollectionRemoveOptions): Promise<DocumentMetadata & {
old?: Document<T>;
}>;
}
/**
* Represents a {@link collection.EdgeCollection} of edges in a {@link graph.Graph}.
*
* @param T - Type to use for document data. Defaults to `any`.
*/
export declare class GraphEdgeCollection<T extends Record<string, any> = any> implements ArangoCollection {
protected _db: Database;
protected _name: string;
protected _graph: Graph;
protected _collection: EdgeCollection<T>;
/**
* @internal
*/
constructor(db: Database, name: string, graph: Graph);
/**
* @internal
*
* Indicates that this object represents an ArangoDB collection.
*/
get isArangoCollection(): true;
/**
* Name of the collection.
*/
get name(): string;
/**
* A {@link collection.EdgeCollection} instance for this edge collection.
*/
get collection(): EdgeCollection<T, T>;
/**
* The {@link graph.Graph} instance this edge collection is bound to.
*/
get graph(): Graph;
/**
* Checks whether a edge matching the given key or id exists in this
* collection.
*
* Throws an exception when passed a edge or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a edge from this collection).
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.edgeCollection("friends")
* const exists = await collection.edgeExists("abc123");
* if (!exists) {
* console.log("Edge does not exist");
* }
* ```
*/
edgeExists(selector: DocumentSelector): Promise<boolean>;
/**
* Retrieves the edge matching the given key or id.
*
* Throws an exception when passed a edge or `_id` from a different
* collection, or if the edge does not exist.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a edge from this collection).
* @param options - Options for retrieving the edge.
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.edgeCollection("friends")
* try {
* const edge = await collection.edge("abc123");
* console.log(edge);
* } catch (e: any) {
* console.error("Could not find edge");
* }
* ```
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.edgeCollection("friends")
* const edge = await collection.edge("abc123", { graceful: true });
* if (edge) {
* console.log(edge);
* } else {
* console.error("Edge does not exist");
* }
* ```
*/
edge(selector: DocumentSelector, options?: GraphCollectionReadOptions): Promise<Edge<T>>;
/**
* Retrieves the edge matching the given key or id.
*
* Throws an exception when passed a edge or `_id` from a different
* collection, or if the edge does not exist.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a edge from this collection).
* @param graceful - If set to `true`, `null` is returned instead of an
* exception being thrown if the edge does not exist.
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.edgeCollection("friends")
* try {
* const edge = await collection.edge("abc123", false);
* console.log(edge);
* } catch (e: any) {
* console.error("Could not find edge");
* }
* ```
*
* @example
* ```js
* const graph = db.graph("some-graph");
* const collection = graph.edgeCollection("friends")
* const edge = await collection.edge("abc123", true);
* if (edge) {
* console.log(edge);
* } else {
* console.error("Edge does not exist");
* }
* ```
*/
edge(selector: DocumentSelector, graceful: boolean): Promise<Edge<T>>;
/**
* Inserts a new edge with the given `data` into the collection.
*
* @param data - The contents of the new edge.
* @param options - Options for inserting the edge.
*
* @example
* ```js
* const db = new Database();
* const collection = db.collection("friends");
* const result = await collection.save(
* { _from: "users/rana", _to: "users/mudasir", active: false },
* { returnNew: true }
* );
* ```
*/
save(data: EdgeData<T>, options?: GraphCollectionInsertOptions): Promise<DocumentMetadata & {
new?: Edge<T>;
}>;
/**
* Replaces an existing edge in the collection.
*
* Throws an exception when passed a edge or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a edge from this collection).
* @param newData - The contents of the new edge.
* @param options - Options for replacing the edge.
*
* @example
* ```js
* const db = new Database();
* const collection = db.collection("friends");
* await collection.save(
* {
* _key: "musadir",
* _from: "users/rana",
* _to: "users/mudasir",
* active: true,
* best: true
* }
* );
* const result = await collection.replace(
* "musadir",
* { active: false },
* { returnNew: true }
* );
* console.log(result.new.active, result.new.best); // false undefined
* ```
*/
replace(selector: DocumentSelector, newValue: EdgeData<T>, options?: GraphCollectionReplaceOptions): Promise<DocumentMetadata & {
new?: Edge<T>;
old?: Edge<T>;
}>;
/**
* Updates an existing edge in the collection.
*
* Throws an exception when passed a edge or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a edge from this collection).
* @param newData - The data for updating the edge.
* @param options - Options for updating the edge.
*
* @example
* ```js
* const db = new Database();
* const collection = db.collection("friends");
* await collection.save(
* {
* _key: "musadir",
* _from: "users/rana",
* _to: "users/mudasir",
* active: true,
* best: true
* }
* );
* const result = await collection.update(
* "musadir",
* { active: false },
* { returnNew: true }
* );
* console.log(result.new.active, result.new.best); // false true
* ```
*/
update(selector: DocumentSelector, newValue: Patch<EdgeData<T>>, options?: GraphCollectionReplaceOptions): Promise<DocumentMetadata & {
new?: Edge<T>;
old?: Edge<T>;
}>;
/**
* Removes an existing edge from the collection.
*
* Throws an exception when passed a edge or `_id` from a different
* collection.
*
* @param selector - Document `_key`, `_id` or object with either of those
* properties (e.g. a edge from this collection).
* @param options - Options for removing the edge.
*
* @example
* ```js
* const db = new Database();
* const collection = db.collection("friends");
* const doc = await collection.edge("musadir");
* await collection.remove(doc);
* // edge with key "musadir" deleted
* ```
*/
remove(selector: DocumentSelector, options?: GraphCollectionRemoveOptions): Promise<DocumentMetadata & {
old?: Edge<T>;
}>;
}
/**
* Represents a graph in a {@link database.Database}.
*/
export declare class Graph {
protected _name: string;
protected _db: Database;
/**
* @internal
*/
constructor(db: Database, name: string);
/**
* @internal
*
* Indicates that this object represents an ArangoDB Graph.
*/
get isArangoGraph(): true;
/**
* Name of the graph.
*/
get name(): string;
/**
* Checks whether the graph exists.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const result = await graph.exists();
* // result indicates whether the graph exists
* ```
*/
exists(): Promise<boolean>;
/**
* Retrieves general information about the graph.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const data = await graph.get();
* // data contains general information about the graph
* ```
*/
get(): Promise<GraphInfo>;
/**
* Creates a graph with the given `edgeDefinitions` and `options` for this
* graph's name.
*
* @param edgeDefinitions - Definitions for the relations of the graph.
* @param options - Options for creating the graph.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* // graph now exists
* ```
*/
create(edgeDefinitions: EdgeDefinitionOptions[], options?: CreateGraphOptions): Promise<GraphInfo>;
/**
* Deletes the graph from the database.
*
* @param dropCollections - If set to `true`, the collections associated with
* the graph will also be deleted.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* await graph.drop();
* // the graph "some-graph" no longer exists
* ```
*/
drop(dropCollections?: boolean): Promise<boolean>;
/**
* Returns a {@link graph.GraphVertexCollection} instance for the given collection
* name representing the collection in this graph.
*
* @param T - Type to use for document data. Defaults to `any`.
* @param collection - Name of the vertex collection.
*/
vertexCollection<T extends Record<string, any> = any>(collection: string | ArangoCollection): GraphVertexCollection<T>;
/**
* Fetches all vertex collections of this graph from the database and returns
* an array of their names.
*
* See also {@link graph.Graph#vertexCollections}.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* const vertexCollectionNames = await graph.listVertexCollections();
* // ["start-vertices", "end-vertices"]
* ```
*/
listVertexCollections(): Promise<string[]>;
/**
* Fetches all vertex collections of this graph from the database and returns
* an array of {@link graph.GraphVertexCollection} instances.
*
* See also {@link graph.Graph#listVertexCollections}.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* const vertexCollections = await graph.vertexCollections();
* for (const vertexCollection of vertexCollections) {
* console.log(vertexCollection.name);
* // "start-vertices"
* // "end-vertices"
* }
* ```
*/
vertexCollections(): Promise<GraphVertexCollection[]>;
/**
* Adds the given collection to this graph as a vertex collection.
*
* @param collection - Collection to add to the graph.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* await graph.addVertexCollection("more-vertices");
* // The collection "more-vertices" has been added to the graph
* const extra = db.collection("extra-vertices");
* await graph.addVertexCollection(extra);
* // The collection "extra-vertices" has been added to the graph
* ```
*/
addVertexCollection(collection: string | ArangoCollection, options?: AddVertexCollectionOptions): Promise<GraphInfo>;
/**
* Removes the given collection from this graph as a vertex collection.
*
* @param collection - Collection to remove from the graph.
* @param dropCollection - If set to `true`, the collection will also be
* deleted from the database.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* await graph.removeVertexCollection("start-vertices");
* // The collection "start-vertices" is no longer part of the graph.
* ```
*/
removeVertexCollection(collection: string | ArangoCollection, dropCollection?: boolean): Promise<GraphInfo>;
/**
* Returns a {@link graph.GraphEdgeCollection} instance for the given collection
* name representing the collection in this graph.
*
* @param T - Type to use for document data. Defaults to `any`.
* @param collection - Name of the edge collection.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* const graphEdgeCollection = graph.edgeCollection("edges");
* // Access the underlying EdgeCollection API:
* const edgeCollection = graphEdgeCollection.collection;
* ```
*/
edgeCollection<T extends Record<string, any> = any>(collection: string | ArangoCollection): GraphEdgeCollection<T>;
/**
* Fetches all edge collections of this graph from the database and returns
* an array of their names.
*
* See also {@link graph.Graph#edgeCollections}.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* const edgeCollectionNames = await graph.listEdgeCollections();
* // ["edges"]
* ```
*/
listEdgeCollections(): Promise<string[]>;
/**
* Fetches all edge collections of this graph from the database and returns
* an array of {@link graph.GraphEdgeCollection} instances.
*
* See also {@link graph.Graph#listEdgeCollections}.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* const graphEdgeCollections = await graph.edgeCollections();
* for (const collection of graphEdgeCollection) {
* console.log(collection.name);
* // "edges"
* }
* ```
*/
edgeCollections(): Promise<GraphEdgeCollection[]>;
/**
* Adds an edge definition to this graph.
*
* @param edgeDefinition - Definition of a relation in this graph.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* await graph.addEdgeDefinition({
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* });
* // The edge definition has been added to the graph
* ```
*/
addEdgeDefinition(edgeDefinition: EdgeDefinitionOptions, options?: AddEdgeDefinitionOptions): Promise<GraphInfo>;
/**
* Replaces an edge definition in this graph. The existing edge definition
* for the given edge collection will be overwritten.
*
* @param edgeDefinition - Definition of a relation in this graph.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* await graph.replaceEdgeDefinition({
* collection: "edges",
* from: ["start-vertices"],
* to: ["other-vertices"],
* });
* // The edge definition for "edges" has been replaced
* ```
*/
replaceEdgeDefinition(edgeDefinition: EdgeDefinitionOptions, options?: ReplaceEdgeDefinitionOptions): Promise<GraphInfo>;
/**
* Replaces an edge definition in this graph. The existing edge definition
* for the given edge collection will be overwritten.
*
* @param collection - Edge collection for which to replace the definition.
* @param edgeDefinition - Definition of a relation in this graph.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* await graph.replaceEdgeDefinition("edges", {
* collection: "edges",
* from: ["start-vertices"],
* to: ["other-vertices"],
* });
* // The edge definition for "edges" has been replaced
* ```
*/
replaceEdgeDefinition(collection: string | ArangoCollection, edgeDefinition: EdgeDefinitionOptions, options?: ReplaceEdgeDefinitionOptions): Promise<GraphInfo>;
/**
* Removes the edge definition for the given edge collection from this graph.
*
* @param collection - Edge collection for which to remove the definition.
* @param dropCollection - If set to `true`, the collection will also be
* deleted from the database.
*
* @example
* ```js
* const db = new Database();
* const graph = db.graph("some-graph");
* const info = await graph.create([
* {
* collection: "edges",
* from: ["start-vertices"],
* to: ["end-vertices"],
* },
* ]);
* await graph.removeEdgeDefinition("edges");
* // The edge definition for "edges" has been replaced
* ```
*/
removeEdgeDefinition(collection: string | ArangoCollection, dropCollection?: boolean): Promise<GraphInfo>;
}
//# sourceMappingURL=graph.d.ts.map