API Specification

This page contains the specification for all classes and methods available in python-arango.

ArangoClient

class arango.client.ArangoClient(hosts: Union[str, Sequence[str]] = 'http://127.0.0.1:8529', host_resolver: str = 'roundrobin', resolver_max_tries: Optional[int] = None, http_client: Optional[arango.http.HTTPClient] = None, serializer: Callable[[...], str] = <function ArangoClient.<lambda>>, deserializer: Callable[[str], Any] = <function ArangoClient.<lambda>>, verify_override: Union[bool, str, None] = None, request_timeout: Any = 60)[source]

ArangoDB client.

Parameters:
  • hosts (str | [str]) – Host URL or list of URLs (coordinators in a cluster).
  • host_resolver (str) – Host resolver. This parameter used for clusters (when multiple host URLs are provided). Accepted values are “roundrobin” and “random”. Any other value defaults to round robin.
  • resolver_max_tries (int) – Number of attempts to process an HTTP request before throwing a ConnectionAbortedError. Must not be lower than the number of hosts.
  • http_client (arango.http.HTTPClient) – User-defined HTTP client.
  • serializer (callable) – User-defined JSON serializer. Must be a callable which takes a JSON data type object as its only argument and return the serialized string. If not given, json.dumps is used by default.
  • deserializer (callable) – User-defined JSON de-serializer. Must be a callable which takes a JSON serialized string as its only argument and return the de-serialized object. If not given, json.loads is used by default.
  • verify_override (Union[bool, str, None]) – Override TLS certificate verification. This will override the verify method of the underlying HTTP client. None: Do not change the verification behavior of the underlying HTTP client. True: Verify TLS certificate using the system CA certificates. False: Do not verify TLS certificate. str: Path to a custom CA bundle file or directory.
  • request_timeout (Any) – This is the default request timeout (in seconds) for http requests issued by the client if the parameter http_client is not secified. The default value is 60. None: No timeout. int: Timeout value in seconds.
close() → None[source]

Close HTTP sessions.

hosts

Return the list of ArangoDB host URLs.

Returns:List of ArangoDB host URLs.
Return type:[str]
version

Return the client version.

Returns:Client version.
Return type:str
request_timeout

Return the request timeout of the http client.

Returns:Request timeout.
Return type:Any
db(name: str = '_system', username: str = 'root', password: str = '', verify: bool = False, auth_method: str = 'basic', superuser_token: Optional[str] = None, verify_certificate: bool = True) → arango.database.StandardDatabase[source]

Connect to an ArangoDB database and return the database API wrapper.

Parameters:
  • name (str) – Database name.
  • username (str) – Username for basic authentication.
  • password (str) – Password for basic authentication.
  • verify (bool) – Verify the connection by sending a test request.
  • auth_method (str) – HTTP authentication method. Accepted values are “basic” (default) and “jwt”. If set to “jwt”, the token is refreshed automatically using ArangoDB username and password. This assumes that the clocks of the server and client are synchronized.
  • superuser_token (str) – User generated token for superuser access. If set, parameters username, password and auth_method are ignored. This token is not refreshed automatically.
  • verify_certificate (bool) – Verify TLS certificates.
Returns:

Standard database API wrapper.

Return type:

arango.database.StandardDatabase

Raises:

arango.exceptions.ServerConnectionError – If verify was set to True and the connection fails.

AsyncDatabase

class arango.database.AsyncDatabase(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], return_result: bool)[source]

Database API wrapper tailored specifically for async execution.

See arango.database.StandardDatabase.begin_async_execution().

Parameters:
  • connection – HTTP connection.
  • return_result (bool) – If set to True, API executions return instances of arango.job.AsyncJob, which you can use to retrieve results from server once available. If set to False, API executions return None and no results are stored on server.
analyzer(name: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return analyzer details.

Parameters:name (str) – Analyzer name.
Returns:Analyzer details.
Return type:dict
Raises:arango.exceptions.AnalyzerGetError – If retrieval fails.
analyzers() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return list of analyzers.

Returns:List of analyzers.
Return type:[dict]
Raises:arango.exceptions.AnalyzerListError – If retrieval fails.
aql

Return AQL (ArangoDB Query Language) API wrapper.

Returns:AQL API wrapper.
Return type:arango.aql.AQL
async_jobs(status: str, count: Optional[int] = None) → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None]

Return IDs of async jobs with given status.

Parameters:
  • status (str) – Job status (e.g. “pending”, “done”).
  • count (int) – Max number of job IDs to return.
Returns:

List of job IDs.

Return type:

[str]

Raises:

arango.exceptions.AsyncJobListError – If retrieval fails.

backup

Return Backup API wrapper.

Returns:Backup API wrapper.
Return type:arango.backup.Backup
clear_async_jobs(threshold: Optional[int] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Clear async job results from the server.

Async jobs that are still queued or running are not stopped.

Parameters:threshold (int | None) – If specified, only the job results created prior to the threshold (a unix timestamp) are deleted. Otherwise, all job results are deleted.
Returns:True if job results were cleared successfully.
Return type:bool
Raises:arango.exceptions.AsyncJobClearError – If operation fails.
cluster

Return Cluster API wrapper.

Returns:Cluster API wrapper.
Return type:arango.cluster.Cluster
collection(name: str) → arango.collection.StandardCollection

Return the standard collection API wrapper.

Parameters:name (str) – Collection name.
Returns:Standard collection API wrapper.
Return type:arango.collection.StandardCollection
collections() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return the collections in the database.

Returns:Collections in the database and their details.
Return type:[dict]
Raises:arango.exceptions.CollectionListError – If retrieval fails.
conn

Return the HTTP connection.

Returns:HTTP connection.
Return type:arango.connection.BasicConnection | arango.connection.JwtConnection | arango.connection.JwtSuperuserConnection
context

Return the API execution context.

Returns:API execution context. Possible values are “default”, “async”, “batch” and “transaction”.
Return type:str
create_analyzer(name: str, analyzer_type: str, properties: Optional[Dict[str, Any]] = None, features: Optional[Sequence[str]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create an analyzer.

Parameters:
  • name (str) – Analyzer name.
  • analyzer_type (str) – Analyzer type.
  • properties (dict | None) – Analyzer properties.
  • features (list | None) – Analyzer features.
Returns:

Analyzer details.

Return type:

dict

Raises:

arango.exceptions.AnalyzerCreateError – If create fails.

create_arangosearch_view(name: str, properties: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewCreateError – If create fails.

create_collection(name: str, sync: bool = False, system: bool = False, edge: bool = False, user_keys: bool = True, key_increment: Optional[int] = None, key_offset: Optional[int] = None, key_generator: str = 'traditional', shard_fields: Optional[Sequence[str]] = None, shard_count: Optional[int] = None, replication_factor: Optional[int] = None, shard_like: Optional[str] = None, sync_replication: Optional[bool] = None, enforce_replication_factor: Optional[bool] = None, sharding_strategy: Optional[str] = None, smart_join_attribute: Optional[str] = None, write_concern: Optional[int] = None, schema: Optional[Dict[str, Any]] = None, computedValues: Optional[List[Dict[str, Any]]] = None) → Union[arango.collection.StandardCollection, arango.job.AsyncJob[arango.collection.StandardCollection][arango.collection.StandardCollection], arango.job.BatchJob[arango.collection.StandardCollection][arango.collection.StandardCollection], None]

Create a new collection.

Parameters:
  • name (str) – Collection name.
  • sync (bool | None) – If set to True, document operations via the collection will block until synchronized to disk by default.
  • system (bool) – If set to True, a system collection is created. The collection name must have leading underscore “_” character.
  • edge (bool) – If set to True, an edge collection is created.
  • key_generator (str) – Used for generating document keys. Allowed values are “traditional” or “autoincrement”.
  • user_keys (bool) – If set to True, users are allowed to supply document keys. If set to False, the key generator is solely responsible for supplying the key values.
  • key_increment (int) – Key increment value. Applies only when value of key_generator is set to “autoincrement”.
  • key_offset (int) – Key offset value. Applies only when value of key_generator is set to “autoincrement”.
  • shard_fields ([str]) – Field(s) used to determine the target shard.
  • shard_count (int) – Number of shards to create.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • shard_like (str) – Name of prototype collection whose sharding specifics are imitated. Prototype collections cannot be dropped before imitating collections. Applies to enterprise version of ArangoDB only.
  • sync_replication (bool) – If set to True, server reports success only when collection is created in all replicas. You can set this to False for faster server response, and if full replication is not a concern.
  • enforce_replication_factor (bool) – Check if there are enough replicas available at creation time, or halt the operation.
  • sharding_strategy (str) – Sharding strategy. Available for ArangoDB version and up only. Possible values are “community-compat”, “enterprise-compat”, “enterprise-smart-edge-compat”, “hash” and “enterprise-hash-smart-edge”. Refer to ArangoDB documentation for more details on each value.
  • smart_join_attribute (str) – Attribute of the collection which must contain the shard key value of the smart join collection. The shard key for the documents must contain the value of this attribute, followed by a colon “:” and the primary key of the document. Requires parameter shard_like to be set to the name of another collection, and parameter shard_fields to be set to a single shard key attribute, with another colon “:” at the end. Available only for enterprise version of ArangoDB.
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
  • schema (dict) – Optional dict specifying the collection level schema for documents. See ArangoDB documentation for more information on document schema validation.
  • computedValues (list) – Array of computed values for the new collection enabling default values to new documents or the maintenance of auxiliary attributes for search queries. Available in ArangoDB version 3.10 or greater. See ArangoDB documentation for more information on computed values.
Returns:

Standard collection API wrapper.

Return type:

arango.collection.StandardCollection

Raises:

arango.exceptions.CollectionCreateError – If create fails.

create_database(name: str, users: Optional[Sequence[Dict[str, Any]]] = None, replication_factor: Union[int, str, None] = None, write_concern: Optional[int] = None, sharding: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Create a new database.

Parameters:
  • name (str) – Database name.
  • users ([dict]) – List of users with access to the new database, where each user is a dictionary with fields “username”, “password”, “active” and “extra” (see below for example). If not set, only the admin and current user are granted access.
  • replication_factor (int | str) – Default replication factor for collections created in this database. Special values include “satellite” which replicates the collection to every DBServer, and 1 which disables replication. Used for clusters only.
  • write_concern (int) – Default write concern for collections created in this database. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time, however. Value of this parameter can not be larger than the value of replication_factor. Used for clusters only.
  • sharding (str) – Sharding method used for new collections in this database. Allowed values are: “”, “flexible” and “single”. The first two are equivalent. Used for clusters only.
Returns:

True if database was created successfully.

Return type:

bool

Raises:

arango.exceptions.DatabaseCreateError – If create fails.

Here is an example entry for parameter users:

{
    'username': 'john',
    'password': 'password',
    'active': True,
    'extra': {'Department': 'IT'}
}
create_graph(name: str, edge_definitions: Optional[Sequence[Dict[str, Any]]] = None, orphan_collections: Optional[Sequence[str]] = None, smart: Optional[bool] = None, disjoint: Optional[bool] = None, smart_field: Optional[str] = None, shard_count: Optional[int] = None, replication_factor: Optional[int] = None, write_concern: Optional[int] = None) → Union[arango.graph.Graph, arango.job.AsyncJob[arango.graph.Graph][arango.graph.Graph], arango.job.BatchJob[arango.graph.Graph][arango.graph.Graph], None]

Create a new graph.

Parameters:
  • name (str) – Graph name.
  • edge_definitions ([dict] | None) – List of edge definitions, where each edge definition entry is a dictionary with fields “edge_collection”, “from_vertex_collections” and “to_vertex_collections” (see below for example).
  • orphan_collections ([str] | None) – Names of additional vertex collections that are not in edge definitions.
  • smart (bool | None) – If set to True, sharding is enabled (see parameter smart_field below). Applies only to enterprise version of ArangoDB.
  • disjoint (bool | None) – If set to True, create a disjoint SmartGraph instead of a regular SmartGraph. Applies only to enterprise version of ArangoDB.
  • smart_field (str | None) – Document field used to shard the vertices of the graph. To use this, parameter smart must be set to True and every vertex in the graph must have the smart field. Applies only to enterprise version of ArangoDB.
  • shard_count (int | None) – Number of shards used for every collection in the graph. To use this, parameter smart must be set to True and every vertex in the graph must have the smart field. This number cannot be modified later once set. Applies only to enterprise version of ArangoDB.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
Returns:

Graph API wrapper.

Return type:

arango.graph.Graph

Raises:

arango.exceptions.GraphCreateError – If create fails.

Here is an example entry for parameter edge_definitions:

[
    {
        'edge_collection': 'teach',
        'from_vertex_collections': ['teachers'],
        'to_vertex_collections': ['lectures']
    }
]
create_task(name: str, command: str, params: Optional[Dict[str, Any]] = None, period: Optional[int] = None, offset: Optional[int] = None, task_id: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new server task.

Parameters:
  • name (str) – Name of the server task.
  • command (str) – Javascript command to execute.
  • params (dict | None) – Optional parameters passed into the Javascript command.
  • period (int | None) – Number of seconds to wait between executions. If set to 0, the new task will be “timed”, meaning it will execute only once and be deleted afterwards.
  • offset (int | None) – Initial delay before execution in seconds.
  • task_id (str | None) – Pre-defined ID for the new server task.
Returns:

Details of the new task.

Return type:

dict

Raises:

arango.exceptions.TaskCreateError – If create fails.

create_user(username: str, password: Optional[str] = None, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new user.

Parameters:
  • username (str) – Username.
  • password (str | None) – Password.
  • active (bool | None) – True if user is active, False otherwise.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserCreateError – If create fails.

create_view(name: str, view_type: str, properties: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewCreateError – If create fails.

databases() → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None]

Return the names all databases.

Returns:Database names.
Return type:[str]
Raises:arango.exceptions.DatabaseListError – If retrieval fails.
db_name

Return the name of the current database.

Returns:Database name.
Return type:str
delete_analyzer(name: str, force: bool = False, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete an analyzer.

Parameters:
  • name (str) – Analyzer name.
  • force (bool) – Remove the analyzer configuration even if in use.
  • ignore_missing (bool) – Do not raise an exception on missing analyzer.
Returns:

True if analyzer was deleted successfully, False if analyzer was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.AnalyzerDeleteError – If delete fails.

delete_collection(name: str, ignore_missing: bool = False, system: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete the collection.

Parameters:
  • name (str) – Collection name.
  • ignore_missing (bool) – Do not raise an exception on missing collection.
  • system (bool) – Whether the collection is a system collection.
Returns:

True if collection was deleted successfully, False if collection was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.CollectionDeleteError – If delete fails.

delete_database(name: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete the database.

Parameters:
  • name (str) – Database name.
  • ignore_missing (bool) – Do not raise an exception on missing database.
Returns:

True if database was deleted successfully, False if database was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.DatabaseDeleteError – If delete fails.

delete_document(document: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, ignore_missing: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Delete a document.

Parameters:
  • document (str | dict) – Document ID, key or body. Document body must contain the “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • ignore_missing (bool) – Do not raise an exception on missing document. This parameter has no effect in transactions where an exception is always raised on failures.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision), or True if parameter silent was set to True, or False if document was not found and ignore_missing was set to True (does not apply in transactions).

Return type:

bool | dict

Raises:
delete_graph(name: str, ignore_missing: bool = False, drop_collections: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Drop the graph of the given name from the database.

Parameters:
  • name (str) – Graph name.
  • ignore_missing (bool) – Do not raise an exception on missing graph.
  • drop_collections (bool | None) – Drop the collections of the graph also. This is only if they are not in use by other graphs.
Returns:

True if graph was deleted successfully, False if graph was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.GraphDeleteError – If delete fails.

delete_task(task_id: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a server task.

Parameters:
  • task_id (str) – Server task ID.
  • ignore_missing (bool) – Do not raise an exception on missing task.
Returns:

True if task was successfully deleted, False if task was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.TaskDeleteError – If delete fails.

delete_user(username: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a user.

Parameters:
  • username (str) – Username.
  • ignore_missing (bool) – Do not raise an exception on missing user.
Returns:

True if user was deleted successfully, False if user was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.UserDeleteError – If delete fails.

delete_view(name: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a view.

Parameters:
  • name (str) – View name.
  • ignore_missing (bool) – Do not raise an exception on missing view.
Returns:

True if view was deleted successfully, False if view was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.ViewDeleteError – If delete fails.

details() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return ArangoDB server details.

Returns:Server details.
Return type:dict
Raises:arango.exceptions.ServerDetailsError – If retrieval fails.
document(document: Dict[str, Any], rev: Optional[str] = None, check_rev: bool = True) → Union[Dict[str, Any], None, arango.job.AsyncJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]], arango.job.BatchJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]]]

Return a document.

Parameters:
  • document (str | dict) – Document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
Returns:

Document, or None if not found.

Return type:

dict | None

Raises:
echo() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return details of the last request (e.g. headers, payload).

Returns:Details of the last request.
Return type:dict
Raises:arango.exceptions.ServerEchoError – If retrieval fails.
encryption() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Rotate the user-supplied keys for encryption.

This method is available only for enterprise edition of ArangoDB.

Returns:New TLS data.
Return type:dict
Raises:arango.exceptions.ServerEncryptionError – If retrieval fails.
engine() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return the database engine details.

Returns:Database engine details.
Return type:dict
Raises:arango.exceptions.ServerEngineError – If retrieval fails.
execute_transaction(command: str, params: Optional[Dict[str, Any]] = None, read: Optional[Sequence[str]] = None, write: Optional[Sequence[str]] = None, sync: Optional[bool] = None, timeout: Optional[numbers.Number] = None, max_size: Optional[int] = None, allow_implicit: Optional[bool] = None, intermediate_commit_count: Optional[int] = None, intermediate_commit_size: Optional[int] = None, allow_dirty_read: bool = False) → Union[Any, arango.job.AsyncJob[typing.Any][Any], arango.job.BatchJob[typing.Any][Any], None]

Execute raw Javascript command in transaction.

Parameters:
  • command (str) – Javascript command to execute.
  • read ([str] | None) – Names of collections read during transaction. If parameter allow_implicit is set to True, any undeclared read collections are loaded lazily.
  • write ([str] | None) – Names of collections written to during transaction. Transaction fails on undeclared write collections.
  • params (dict | None) – Optional parameters passed into the Javascript command.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • timeout (int | None) – Timeout for waiting on collection locks. If set to 0, ArangoDB server waits indefinitely. If not set, system default value is used.
  • max_size (int | None) – Max transaction size limit in bytes.
  • allow_implicit (bool | None) – If set to True, undeclared read collections are loaded lazily. If set to False, transaction fails on any undeclared collections.
  • intermediate_commit_count (int | None) – Max number of operations after which an intermediate commit is performed automatically.
  • intermediate_commit_size (int | None) – Max size of operations in bytes after which an intermediate commit is performed automatically.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Return value of command.

Return type:

Any

Raises:

arango.exceptions.TransactionExecuteError – If execution fails.

foxx

Return Foxx API wrapper.

Returns:Foxx API wrapper.
Return type:arango.foxx.Foxx
graph(name: str) → arango.graph.Graph

Return the graph API wrapper.

Parameters:name (str) – Graph name.
Returns:Graph API wrapper.
Return type:arango.graph.Graph
graphs() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

List all graphs in the database.

Returns:Graphs in the database.
Return type:[dict]
Raises:arango.exceptions.GraphListError – If retrieval fails.
has_collection(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if collection exists in the database.

Parameters:name (str) – Collection name.
Returns:True if collection exists, False otherwise.
Return type:bool
has_database(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a database exists.

Parameters:name (str) – Database name.
Returns:True if database exists, False otherwise.
Return type:bool
has_document(document: Dict[str, Any], rev: Optional[str] = None, check_rev: bool = True) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a document exists.

Parameters:
  • document (str | dict) – Document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
Returns:

True if document exists, False otherwise.

Return type:

bool

Raises:
has_graph(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a graph exists in the database.

Parameters:name (str) – Graph name.
Returns:True if graph exists, False otherwise.
Return type:bool
has_user(username: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if user exists.

Parameters:username (str) – Username.
Returns:True if user exists, False otherwise.
Return type:bool
insert_document(collection: str, document: Dict[str, Any], return_new: bool = False, sync: Optional[bool] = None, silent: bool = False, overwrite: bool = False, return_old: bool = False, overwrite_mode: Optional[str] = None, keep_none: Optional[bool] = None, merge: Optional[bool] = None) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Insert a new document.

Parameters:
  • collection (str) – Collection name.
  • document (dict) – Document to insert. If it contains the “_key” or “_id” field, the value is used as the key of the new document (otherwise it is auto-generated). Any “_rev” field is ignored.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • overwrite (bool) – If set to True, operation does not fail on duplicate key and the existing document is replaced.
  • return_old (bool) – Include body of the old document if replaced. Applies only when value of overwrite is set to True.
  • overwrite_mode (str | None) – Overwrite behavior used when the document key exists already. Allowed values are “replace” (replace-insert) or “update” (update-insert). Implicitly sets the value of parameter overwrite.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely. Applies only when overwrite_mode is set to “update” (update-insert).
  • merge (bool | None) – If set to True (default), sub-dictionaries are merged instead of the new one overwriting the old one. Applies only when overwrite_mode is set to “update” (update-insert).
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

jwt_secrets() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return information on currently loaded JWT secrets.

Returns:Information on currently loaded JWT secrets.
Return type:dict
log_levels() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return current logging levels.

Returns:Current logging levels.
Return type:dict
metrics() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return server metrics in Prometheus format.

Returns:Server metrics in Prometheus format.
Return type:str
name

Return database name.

Returns:Database name.
Return type:str
permission(username: str, database: str, collection: Optional[str] = None) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • database (str) – Database name.
  • collection (str | None) – Collection name.
Returns:

Permission for given database or collection.

Return type:

str

Raises:

arango.exceptions.PermissionGetError – If retrieval fails.

permissions(username: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return user permissions for all databases and collections.

Parameters:username (str) – Username.
Returns:User permissions for all databases and collections.
Return type:dict
Raises:arango.exceptions.PermissionListError – If retrieval fails.
pregel

Return Pregel API wrapper.

Returns:Pregel API wrapper.
Return type:arango.pregel.Pregel
properties() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return database properties.

Returns:Database properties.
Return type:dict
Raises:arango.exceptions.DatabasePropertiesError – If retrieval fails.
read_log(upto: Union[int, str, None] = None, level: Union[int, str, None] = None, start: Optional[int] = None, size: Optional[int] = None, offset: Optional[int] = None, search: Optional[str] = None, sort: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Read the global log from server.

Parameters:
  • upto (int | str) – Return the log entries up to the given level (mutually exclusive with parameter level). Allowed values are “fatal”, “error”, “warning”, “info” (default) and “debug”.
  • level (int | str) – Return the log entries of only the given level (mutually exclusive with upto). Allowed values are “fatal”, “error”, “warning”, “info” (default) and “debug”.
  • start (int) – Return the log entries whose ID is greater or equal to the given value.
  • size (int) – Restrict the size of the result to the given value. This can be used for pagination.
  • offset (int) – Number of entries to skip (e.g. for pagination).
  • search (str) – Return only the log entries containing the given text.
  • sort (str) – Sort the log entries according to the given fashion, which can be “sort” or “desc”.
Returns:

Server log entries.

Return type:

dict

Raises:

arango.exceptions.ServerReadLogError – If read fails.

reload_jwt_secrets() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Hot-reload JWT secrets.

Calling this without payload reloads JWT secrets from disk. Only files specified via arangod startup option --server.jwt-secret-keyfile or --server.jwt-secret-folder are used. It is not possible to change the location where files are loaded from without restarting the server.

Returns:Information on reloaded JWT secrets.
Return type:dict
reload_routing() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Reload the routing information.

Returns:True if routing was reloaded successfully.
Return type:bool
Raises:arango.exceptions.ServerReloadRoutingError – If reload fails.
reload_tls() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Reload TLS data (server key, client-auth CA).

Returns:New TLS data.
Return type:dict
rename_view(name: str, new_name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Rename a view.

Parameters:
  • name (str) – View name.
  • new_name (str) – New view name.
Returns:

True if view was renamed successfully.

Return type:

bool

Raises:

arango.exceptions.ViewRenameError – If delete fails.

replace_arangosearch_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Replace an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewReplaceError – If replace fails.

replace_document(document: Dict[str, Any], check_rev: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Replace a document.

Parameters:
  • document (dict) – New document to replace the old one with. It must contain the “_id” field. Edge document must also have “_from” and “_to” fields.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • return_new (bool) – Include body of the new document in the result.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
replace_user(username: str, password: str, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Replace a user.

Parameters:
  • username (str) – Username.
  • password (str) – New password.
  • active (bool | None) – Whether the user is active.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserReplaceError – If replace fails.

replace_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Replace a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewReplaceError – If replace fails.

replication

Return Replication API wrapper.

Returns:Replication API wrapper.
Return type:arango.replication.Replication
required_db_version() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return required version of target database.

Returns:Required version of target database.
Return type:str
Raises:arango.exceptions.ServerRequiredDBVersionError – If retrieval fails.
reset_permission(username: str, database: str, collection: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Reset user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • database (str) – Database name.
  • collection (str) – Collection name.
Returns:

True if permission was reset successfully.

Return type:

bool

Raises:

arango.exceptions.PermissionRestError – If reset fails.

role() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return server role.

Returns:Server role. Possible values are “SINGLE” (server which is not in a cluster), “COORDINATOR” (cluster coordinator), “PRIMARY”, “SECONDARY”, “AGENT” (Agency node in a cluster) or “UNDEFINED”.
Return type:str
Raises:arango.exceptions.ServerRoleError – If retrieval fails.
run_tests(tests: Sequence[str]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Run available unittests on the server.

Parameters:tests ([str]) – List of files containing the test suites.
Returns:Test results.
Return type:dict
Raises:arango.exceptions.ServerRunTestsError – If execution fails.
set_log_levels(**kwargs) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Set the logging levels.

This method takes arbitrary keyword arguments where the keys are the logger names and the values are the logging levels. For example:

arango.set_log_levels(
    agency='DEBUG',
    collector='INFO',
    threads='WARNING'
)

Keys that are not valid logger names are ignored.

Returns:New logging levels.
Return type:dict
shutdown() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Initiate server shutdown sequence.

Returns:True if the server was shutdown successfully.
Return type:bool
Raises:arango.exceptions.ServerShutdownError – If shutdown fails.
statistics(description: bool = False) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return server statistics.

Returns:Server statistics.
Return type:dict
Raises:arango.exceptions.ServerStatisticsError – If retrieval fails.
status() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return ArangoDB server status.

Returns:Server status.
Return type:dict
Raises:arango.exceptions.ServerStatusError – If retrieval fails.
task(task_id: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return the details of an active server task.

Parameters:task_id (str) – Server task ID.
Returns:Server task details.
Return type:dict
Raises:arango.exceptions.TaskGetError – If retrieval fails.
tasks() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return all currently active server tasks.

Returns:Currently active server tasks.
Return type:[dict]
Raises:arango.exceptions.TaskListError – If retrieval fails.
time() → Union[datetime.datetime, arango.job.AsyncJob[datetime.datetime][datetime.datetime], arango.job.BatchJob[datetime.datetime][datetime.datetime], None]

Return server system time.

Returns:Server system time.
Return type:datetime.datetime
Raises:arango.exceptions.ServerTimeError – If retrieval fails.
tls() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return TLS data (server key, client-auth CA).

Returns:TLS data.
Return type:dict
update_arangosearch_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Update an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewUpdateError – If update fails.

update_document(document: Dict[str, Any], check_rev: bool = True, merge: bool = True, keep_none: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Update a document.

Parameters:
  • document (dict) – Partial or full document with the updated values. It must contain the “_id” field.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • merge (bool | None) – If set to True, sub-dictionaries are merged instead of the new one overwriting the old one.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely.
  • return_new (bool) – Include body of the new document in the result.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
update_permission(username: str, permission: str, database: str, collection: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Update user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • permission (str) – Allowed values are “rw” (read and write), “ro” (read only) or “none” (no access).
  • database (str) – Database name.
  • collection (str | None) – Collection name.
Returns:

True if access was granted successfully.

Return type:

bool

Raises:

arango.exceptions.PermissionUpdateError – If update fails.

update_user(username: str, password: Optional[str] = None, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Update a user.

Parameters:
  • username (str) – Username.
  • password (str | None) – New password.
  • active (bool | None) – Whether the user is active.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserUpdateError – If update fails.

update_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Update a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewUpdateError – If update fails.

user(username: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return user details.

Parameters:username (str) – Username.
Returns:User details.
Return type:dict
Raises:arango.exceptions.UserGetError – If retrieval fails.
username

Return the username.

Returns:Username.
Return type:str
users() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return all user details.

Returns:List of user details.
Return type:[dict]
Raises:arango.exceptions.UserListError – If retrieval fails.
version() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return ArangoDB server version.

Returns:Server version.
Return type:str
Raises:arango.exceptions.ServerVersionError – If retrieval fails.
view(name: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return view details.

Returns:View details.
Return type:dict
Raises:arango.exceptions.ViewGetError – If retrieval fails.
views() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return list of views and their summaries.

Returns:List of views.
Return type:[dict]
Raises:arango.exceptions.ViewListError – If retrieval fails.
wal

Return WAL (Write-Ahead Log) API wrapper.

Returns:WAL API wrapper.
Return type:arango.wal.WAL

AsyncJob

class arango.job.AsyncJob(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], job_id: str, response_handler: Callable[[arango.response.Response], T])[source]

Job for tracking and retrieving result of an async API execution.

Parameters:
  • connection – HTTP connection.
  • job_id (str) – Async job ID.
  • response_handler (callable) – HTTP response handler.
id

Return the async job ID.

Returns:Async job ID.
Return type:str
status() → str[source]

Return the async job status from server.

Once a job result is retrieved via func:arango.job.AsyncJob.result method, it is deleted from server and subsequent status queries will fail.

Returns:Async job status. Possible values are “pending” (job is still in queue), “done” (job finished or raised an error), or “cancelled” (job was cancelled before completion).
Return type:str
Raises:arango.exceptions.AsyncJobStatusError – If retrieval fails.
result() → T[source]

Return the async job result from server.

If the job raised an exception, it is propagated up at this point.

Once job result is retrieved, it is deleted from server and subsequent queries for result will fail.

Returns:

Async job result.

Raises:
cancel(ignore_missing: bool = False) → bool[source]

Cancel the async job.

An async job cannot be cancelled once it is taken out of the queue.

Parameters:ignore_missing (bool) – Do not raise an exception on missing job.
Returns:True if job was cancelled successfully, False if the job was not found but ignore_missing was set to True.
Return type:bool
Raises:arango.exceptions.AsyncJobCancelError – If cancel fails.
clear(ignore_missing: bool = False) → bool[source]

Delete the job result from the server.

Parameters:ignore_missing (bool) – Do not raise an exception on missing job.
Returns:True if result was deleted successfully, False if the job was not found but ignore_missing was set to True.
Return type:bool
Raises:arango.exceptions.AsyncJobClearError – If delete fails.

AQL

class arango.aql.AQL(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor])[source]

AQL (ArangoDB Query Language) API wrapper.

Parameters:
  • connection – HTTP connection.
  • executor – API executor.
cache

Return the query cache API wrapper.

Returns:Query cache API wrapper.
Return type:arango.aql.AQLQueryCache
explain(query: str, all_plans: bool = False, max_plans: Optional[int] = None, opt_rules: Optional[Sequence[str]] = None, bind_vars: Optional[MutableMapping[str, str]] = None) → Union[Dict[str, Any], List[Dict[str, Any]], arango.job.AsyncJob[typing.Union[typing.Dict[str, typing.Any], typing.List[typing.Dict[str, typing.Any]]]][Union[Dict[str, Any], List[Dict[str, Any]]]], arango.job.BatchJob[typing.Union[typing.Dict[str, typing.Any], typing.List[typing.Dict[str, typing.Any]]]][Union[Dict[str, Any], List[Dict[str, Any]]]], None][source]

Inspect the query and return its metadata without executing it.

Parameters:
  • query (str) – Query to inspect.
  • all_plans (bool) – If set to True, all possible execution plans are returned in the result. If set to False, only the optimal plan is returned.
  • max_plans (int) – Total number of plans generated by the optimizer.
  • opt_rules (list) – List of optimizer rules.
  • bind_vars (dict) – Bind variables for the query.
Returns:

Execution plan, or plans if all_plans was set to True.

Return type:

dict | list

Raises:

arango.exceptions.AQLQueryExplainError – If explain fails.

validate(query: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Parse and validate the query without executing it.

Parameters:query (str) – Query to validate.
Returns:Query details.
Return type:dict
Raises:arango.exceptions.AQLQueryValidateError – If validation fails.
execute(query: str, count: bool = False, batch_size: Optional[int] = None, ttl: Optional[numbers.Number] = None, bind_vars: Optional[MutableMapping[str, str]] = None, full_count: Optional[bool] = None, max_plans: Optional[int] = None, optimizer_rules: Optional[Sequence[str]] = None, cache: Optional[bool] = None, memory_limit: int = 0, fail_on_warning: Optional[bool] = None, profile: Optional[bool] = None, max_transaction_size: Optional[int] = None, max_warning_count: Optional[int] = None, intermediate_commit_count: Optional[int] = None, intermediate_commit_size: Optional[int] = None, satellite_sync_wait: Optional[int] = None, stream: Optional[bool] = None, skip_inaccessible_cols: Optional[bool] = None, max_runtime: Optional[numbers.Number] = None, fill_block_cache: Optional[bool] = None, allow_dirty_read: bool = False) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Execute the query and return the result cursor.

Parameters:
  • query (str) – Query to execute.
  • count (bool) – If set to True, the total document count is included in the result cursor.
  • batch_size (int) – Number of documents fetched by the cursor in one round trip.
  • ttl (int) – Server side time-to-live for the cursor in seconds.
  • bind_vars (dict) – Bind variables for the query.
  • full_count (bool) – This parameter applies only to queries with LIMIT clauses. If set to True, the number of matched documents before the last LIMIT clause executed is included in the cursor. This is similar to MySQL SQL_CALC_FOUND_ROWS hint. Using this disables a few LIMIT optimizations and may lead to a longer query execution.
  • max_plans (int) – Max number of plans the optimizer generates.
  • optimizer_rules ([str]) – List of optimizer rules.
  • cache (bool) – If set to True, the query cache is used. The operation mode of the query cache must be set to “on” or “demand”.
  • memory_limit (int) – Max amount of memory the query is allowed to use in bytes. If the query goes over the limit, it fails with error “resource limit exceeded”. Value 0 indicates no limit.
  • fail_on_warning (bool) – If set to True, the query throws an exception instead of producing a warning. This parameter can be used during development to catch issues early. If set to False, warnings are returned with the query result. There is a server configuration option “–query.fail-on-warning” for setting the default value for this behaviour so it does not need to be set per-query.
  • profile (bool) – Return additional profiling details in the cursor, unless the query cache is used.
  • max_transaction_size (int) – Transaction size limit in bytes.
  • max_warning_count (int) – Max number of warnings returned.
  • intermediate_commit_count (int) – Max number of operations after which an intermediate commit is performed automatically.
  • intermediate_commit_size (int) – Max size of operations in bytes after which an intermediate commit is performed automatically.
  • satellite_sync_wait (int | float) – Number of seconds in which the server must synchronize the satellite collections involved in the query. When the threshold is reached, the query is stopped. Available only for enterprise version of ArangoDB.
  • stream (bool) – If set to True, query is executed in streaming fashion: query result is not stored server-side but calculated on the fly. Note: long-running queries hold collection locks for as long as the cursor exists. If set to False, query is executed right away in its entirety. Results are either returned right away (if the result set is small enough), or stored server-side and accessible via cursors (while respecting the ttl). You should use this parameter only for short-running queries or without exclusive locks. Note: parameters cache, count and full_count do not work for streaming queries. Query statistics, warnings and profiling data are made available only after the query is finished. Default value is False.
  • skip_inaccessible_cols (bool) – If set to True, collections without user access are skipped, and query executes normally instead of raising an error. This helps certain use cases: a graph may contain several collections, and users with different access levels may execute the same query. This parameter lets you limit the result set by user access. Cannot be used in transactions and is available only for enterprise version of ArangoDB. Default value is False.
  • max_runtime (int | float) – Query must be executed within this given timeout or it is killed. The value is specified in seconds. Default value is 0.0 (no timeout).
  • fill_block_cache (bool) – If set to true or not specified, this will make the query store the data it reads via the RocksDB storage engine in the RocksDB block cache. This is usually the desired behavior. The option can be set to false for queries that are known to either read a lot of data which would thrash the block cache, or for queries that read data which are known to be outside of the hot set. By setting the option to false, data read by the query will not make it into the RocksDB block cache if not already in there, thus leaving more room for the actual hot set.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Result cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.AQLQueryExecuteError – If execute fails.

kill(query_id: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Kill a running query.

Parameters:query_id (str) – Query ID.
Returns:True if kill request was sent successfully.
Return type:bool
Raises:arango.exceptions.AQLQueryKillError – If the send fails.
queries() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None][source]

Return the currently running AQL queries.

Returns:Running AQL queries.
Return type:[dict]
Raises:arango.exceptions.AQLQueryListError – If retrieval fails.
slow_queries() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None][source]

Return a list of all slow AQL queries.

Returns:Slow AQL queries.
Return type:[dict]
Raises:arango.exceptions.AQLQueryListError – If retrieval fails.
clear_slow_queries() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Clear slow AQL queries.

Returns:True if slow queries were cleared successfully.
Return type:bool
Raises:arango.exceptions.AQLQueryClearError – If operation fails.
tracking() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return AQL query tracking properties.

Returns:AQL query tracking properties.
Return type:dict
Raises:arango.exceptions.AQLQueryTrackingGetError – If retrieval fails.
set_tracking(enabled: Optional[bool] = None, max_slow_queries: Optional[int] = None, slow_query_threshold: Optional[int] = None, max_query_string_length: Optional[int] = None, track_bind_vars: Optional[bool] = None, track_slow_queries: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Configure AQL query tracking properties

Parameters:
  • enabled (bool) – Track queries if set to True.
  • max_slow_queries (int) – Max number of slow queries to track. Oldest entries are discarded first.
  • slow_query_threshold (int) – Runtime threshold (in seconds) for treating a query as slow.
  • max_query_string_length (int) – Max query string length (in bytes) tracked.
  • track_bind_vars (bool) – If set to True, track bind variables used in queries.
  • track_slow_queries (bool) – If set to True, track slow queries whose runtimes exceed slow_query_threshold. To use this, parameter enabled must be set to True.
Returns:

Updated AQL query tracking properties.

Return type:

dict

Raises:

arango.exceptions.AQLQueryTrackingSetError – If operation fails.

functions() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None][source]

List the AQL functions defined in the database.

Returns:AQL functions.
Return type:[dict]
Raises:arango.exceptions.AQLFunctionListError – If retrieval fails.
create_function(name: str, code: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Create a new AQL function.

Parameters:
  • name (str) – AQL function name.
  • code (str) – Function definition in Javascript.
Returns:

Whether the AQL function was newly created or an existing one was replaced.

Return type:

dict

Raises:

arango.exceptions.AQLFunctionCreateError – If create fails.

delete_function(name: str, group: bool = False, ignore_missing: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Delete an AQL function.

Parameters:
  • name (str) – AQL function name.
  • group (bool) – If set to True, value of parameter name is treated as a namespace prefix, and all functions in the namespace are deleted. If set to False, the value of name must be a fully qualified function name including any namespaces.
  • ignore_missing (bool) – Do not raise an exception on missing function.
Returns:

Number of AQL functions deleted if operation was successful, False if function(s) was not found and ignore_missing was set to True.

Return type:

dict | bool

Raises:

arango.exceptions.AQLFunctionDeleteError – If delete fails.

query_rules() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None][source]

Return the available optimizer rules for AQL queries

Returns:The available optimizer rules for AQL queries
Return type:dict
Raises:arango.exceptions.AQLQueryRulesGetError – If retrieval fails.

AQLQueryCache

class arango.aql.AQLQueryCache(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor])[source]

AQL Query Cache API wrapper.

properties() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the query cache properties.

Returns:Query cache properties.
Return type:dict
Raises:arango.exceptions.AQLCachePropertiesError – If retrieval fails.
configure(mode: Optional[str] = None, max_results: Optional[int] = None, max_results_size: Optional[int] = None, max_entry_size: Optional[int] = None, include_system: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Configure the query cache properties.

Parameters:
  • mode (str) – Operation mode. Allowed values are “off”, “on” and “demand”.
  • max_results (int) – Max number of query results stored per database-specific cache.
  • max_results_size (int) – Max cumulative size of query results stored per database-specific cache.
  • max_entry_size (int) – Max entry size of each query result stored per database-specific cache.
  • include_system (bool) – Store results of queries in system collections.
Returns:

Query cache properties.

Return type:

dict

Raises:

arango.exceptions.AQLCacheConfigureError – If operation fails.

entries() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None][source]

Return the query cache entries.

Returns:Query cache entries.
Return type:[dict]
Raises:AQLCacheEntriesError – If retrieval fails.
clear() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Clear the query cache.

Returns:True if query cache was cleared successfully.
Return type:bool
Raises:arango.exceptions.AQLCacheClearError – If operation fails.

Backup

class arango.backup.Backup(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor])[source]
get(backup_id: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return backup details.

Parameters:backup_id (str) – If set, details on only the specified backup is returned. Otherwise, details on all backups are returned.
Returns:Backup details.
Return type:dict
Raises:arango.exceptions.BackupGetError – If delete fails.
create(label: Optional[str] = None, allow_inconsistent: Optional[bool] = None, force: Optional[bool] = None, timeout: Optional[numbers.Number] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Create a backup when the global write lock can be obtained.

Parameters:
  • label (str) – Backup label. If not given, a UUID is used.
  • allow_inconsistent (bool) – Allow inconsistent backup when the global transaction lock cannot be acquired before timeout. Default value is False.
  • force (bool) – Forcefully abort all running transactions to ensure a consistent backup when the global transaction lock cannot be acquired before timeout. Default (and highly recommended) value is False.
  • timeout (int) – Timeout in seconds for creating the backup. Default value is 120 seconds.
Returns:

Result of the create operation.

Return type:

dict

Raises:

arango.exceptions.BackupCreateError – If create fails.

delete(backup_id: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Delete a backup.

Parameters:backup_id (str) – Backup ID.
Returns:True if the backup was deleted successfully.
Return type:bool
Raises:arango.exceptions.BackupDeleteError – If delete fails.
download(backup_id: Optional[str] = None, repository: Optional[str] = None, abort: Optional[bool] = None, config: Optional[Dict[str, Any]] = None, download_id: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Manage backup downloads.

Parameters:
  • backup_id (str) – Backup ID used for scheduling a download. Mutually exclusive with parameter download_id.
  • repository (str) – Remote repository URL (e.g. “local://tmp/backups”). Required for scheduling a download and mutually exclusive with parameter download_id.
  • abort (bool) – If set to True, running download is aborted. Used with parameter download_id.
  • config (dict) – Remote repository configuration. Required for scheduling a download and mutually exclusive with parameter download_id.
  • download_id (str) – Download ID. Mutually exclusive with parameters backup_id, repository, and config.
Returns:

Download details.

Return type:

dict

Raises:

arango.exceptions.BackupDownloadError – If operation fails.

upload(backup_id: Optional[str] = None, repository: Optional[str] = None, abort: Optional[bool] = None, config: Optional[Dict[str, Any]] = None, upload_id: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Manage backup uploads.

Parameters:
  • backup_id (str) – Backup ID used for scheduling an upload. Mutually exclusive with parameter upload_id.
  • repository (str) – Remote repository URL (e.g. “local://tmp/backups”). Required for scheduling a upload and mutually exclusive with parameter upload_id.
  • config (dict) – Remote repository configuration. Required for scheduling an upload and mutually exclusive with parameter upload_id.
  • upload_id (str) – Upload ID. Mutually exclusive with parameters backup_id, repository, and config.
  • abort (bool) – If set to True, running upload is aborted. Used with parameter upload_id.
Returns:

Upload details.

Return type:

dict

Raises:

arango.exceptions.BackupUploadError – If upload operation fails.

restore(backup_id: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Restore from a local backup.

Parameters:backup_id (str) – Backup ID.
Returns:Result of the restore operation.
Return type:dict
Raises:arango.exceptions.BackupRestoreError – If restore fails.
conn

Return the HTTP connection.

Returns:HTTP connection.
Return type:arango.connection.BasicConnection | arango.connection.JwtConnection | arango.connection.JwtSuperuserConnection
context

Return the API execution context.

Returns:API execution context. Possible values are “default”, “async”, “batch” and “transaction”.
Return type:str
db_name

Return the name of the current database.

Returns:Database name.
Return type:str
username

Return the username.

Returns:Username.
Return type:str

BatchDatabase

class arango.database.BatchDatabase(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], return_result: bool)[source]

Database API wrapper tailored specifically for batch execution.

See arango.database.StandardDatabase.begin_batch_execution().

Parameters:
  • connection – HTTP connection.
  • return_result (bool) – If set to True, API executions return instances of arango.job.BatchJob that are populated with results on commit. If set to False, API executions return None and no results are tracked client-side.
queued_jobs() → Optional[Sequence[arango.job.BatchJob[typing.Any][Any]]][source]

Return the queued batch jobs.

Returns:Queued batch jobs or None if return_result parameter was set to False during initialization.
Return type:[arango.job.BatchJob] | None
commit() → Optional[Sequence[arango.job.BatchJob[typing.Any][Any]]][source]

Execute the queued requests in a single batch API request.

If return_result parameter was set to True during initialization, arango.job.BatchJob instances are populated with results.

Returns:

Batch jobs, or None if return_result parameter was set to False during initialization.

Return type:

[arango.job.BatchJob] | None

Raises:
analyzer(name: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return analyzer details.

Parameters:name (str) – Analyzer name.
Returns:Analyzer details.
Return type:dict
Raises:arango.exceptions.AnalyzerGetError – If retrieval fails.
analyzers() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return list of analyzers.

Returns:List of analyzers.
Return type:[dict]
Raises:arango.exceptions.AnalyzerListError – If retrieval fails.
aql

Return AQL (ArangoDB Query Language) API wrapper.

Returns:AQL API wrapper.
Return type:arango.aql.AQL
async_jobs(status: str, count: Optional[int] = None) → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None]

Return IDs of async jobs with given status.

Parameters:
  • status (str) – Job status (e.g. “pending”, “done”).
  • count (int) – Max number of job IDs to return.
Returns:

List of job IDs.

Return type:

[str]

Raises:

arango.exceptions.AsyncJobListError – If retrieval fails.

backup

Return Backup API wrapper.

Returns:Backup API wrapper.
Return type:arango.backup.Backup
clear_async_jobs(threshold: Optional[int] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Clear async job results from the server.

Async jobs that are still queued or running are not stopped.

Parameters:threshold (int | None) – If specified, only the job results created prior to the threshold (a unix timestamp) are deleted. Otherwise, all job results are deleted.
Returns:True if job results were cleared successfully.
Return type:bool
Raises:arango.exceptions.AsyncJobClearError – If operation fails.
cluster

Return Cluster API wrapper.

Returns:Cluster API wrapper.
Return type:arango.cluster.Cluster
collection(name: str) → arango.collection.StandardCollection

Return the standard collection API wrapper.

Parameters:name (str) – Collection name.
Returns:Standard collection API wrapper.
Return type:arango.collection.StandardCollection
collections() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return the collections in the database.

Returns:Collections in the database and their details.
Return type:[dict]
Raises:arango.exceptions.CollectionListError – If retrieval fails.
conn

Return the HTTP connection.

Returns:HTTP connection.
Return type:arango.connection.BasicConnection | arango.connection.JwtConnection | arango.connection.JwtSuperuserConnection
context

Return the API execution context.

Returns:API execution context. Possible values are “default”, “async”, “batch” and “transaction”.
Return type:str
create_analyzer(name: str, analyzer_type: str, properties: Optional[Dict[str, Any]] = None, features: Optional[Sequence[str]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create an analyzer.

Parameters:
  • name (str) – Analyzer name.
  • analyzer_type (str) – Analyzer type.
  • properties (dict | None) – Analyzer properties.
  • features (list | None) – Analyzer features.
Returns:

Analyzer details.

Return type:

dict

Raises:

arango.exceptions.AnalyzerCreateError – If create fails.

create_arangosearch_view(name: str, properties: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewCreateError – If create fails.

create_collection(name: str, sync: bool = False, system: bool = False, edge: bool = False, user_keys: bool = True, key_increment: Optional[int] = None, key_offset: Optional[int] = None, key_generator: str = 'traditional', shard_fields: Optional[Sequence[str]] = None, shard_count: Optional[int] = None, replication_factor: Optional[int] = None, shard_like: Optional[str] = None, sync_replication: Optional[bool] = None, enforce_replication_factor: Optional[bool] = None, sharding_strategy: Optional[str] = None, smart_join_attribute: Optional[str] = None, write_concern: Optional[int] = None, schema: Optional[Dict[str, Any]] = None, computedValues: Optional[List[Dict[str, Any]]] = None) → Union[arango.collection.StandardCollection, arango.job.AsyncJob[arango.collection.StandardCollection][arango.collection.StandardCollection], arango.job.BatchJob[arango.collection.StandardCollection][arango.collection.StandardCollection], None]

Create a new collection.

Parameters:
  • name (str) – Collection name.
  • sync (bool | None) – If set to True, document operations via the collection will block until synchronized to disk by default.
  • system (bool) – If set to True, a system collection is created. The collection name must have leading underscore “_” character.
  • edge (bool) – If set to True, an edge collection is created.
  • key_generator (str) – Used for generating document keys. Allowed values are “traditional” or “autoincrement”.
  • user_keys (bool) – If set to True, users are allowed to supply document keys. If set to False, the key generator is solely responsible for supplying the key values.
  • key_increment (int) – Key increment value. Applies only when value of key_generator is set to “autoincrement”.
  • key_offset (int) – Key offset value. Applies only when value of key_generator is set to “autoincrement”.
  • shard_fields ([str]) – Field(s) used to determine the target shard.
  • shard_count (int) – Number of shards to create.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • shard_like (str) – Name of prototype collection whose sharding specifics are imitated. Prototype collections cannot be dropped before imitating collections. Applies to enterprise version of ArangoDB only.
  • sync_replication (bool) – If set to True, server reports success only when collection is created in all replicas. You can set this to False for faster server response, and if full replication is not a concern.
  • enforce_replication_factor (bool) – Check if there are enough replicas available at creation time, or halt the operation.
  • sharding_strategy (str) – Sharding strategy. Available for ArangoDB version and up only. Possible values are “community-compat”, “enterprise-compat”, “enterprise-smart-edge-compat”, “hash” and “enterprise-hash-smart-edge”. Refer to ArangoDB documentation for more details on each value.
  • smart_join_attribute (str) – Attribute of the collection which must contain the shard key value of the smart join collection. The shard key for the documents must contain the value of this attribute, followed by a colon “:” and the primary key of the document. Requires parameter shard_like to be set to the name of another collection, and parameter shard_fields to be set to a single shard key attribute, with another colon “:” at the end. Available only for enterprise version of ArangoDB.
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
  • schema (dict) – Optional dict specifying the collection level schema for documents. See ArangoDB documentation for more information on document schema validation.
  • computedValues (list) – Array of computed values for the new collection enabling default values to new documents or the maintenance of auxiliary attributes for search queries. Available in ArangoDB version 3.10 or greater. See ArangoDB documentation for more information on computed values.
Returns:

Standard collection API wrapper.

Return type:

arango.collection.StandardCollection

Raises:

arango.exceptions.CollectionCreateError – If create fails.

create_database(name: str, users: Optional[Sequence[Dict[str, Any]]] = None, replication_factor: Union[int, str, None] = None, write_concern: Optional[int] = None, sharding: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Create a new database.

Parameters:
  • name (str) – Database name.
  • users ([dict]) – List of users with access to the new database, where each user is a dictionary with fields “username”, “password”, “active” and “extra” (see below for example). If not set, only the admin and current user are granted access.
  • replication_factor (int | str) – Default replication factor for collections created in this database. Special values include “satellite” which replicates the collection to every DBServer, and 1 which disables replication. Used for clusters only.
  • write_concern (int) – Default write concern for collections created in this database. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time, however. Value of this parameter can not be larger than the value of replication_factor. Used for clusters only.
  • sharding (str) – Sharding method used for new collections in this database. Allowed values are: “”, “flexible” and “single”. The first two are equivalent. Used for clusters only.
Returns:

True if database was created successfully.

Return type:

bool

Raises:

arango.exceptions.DatabaseCreateError – If create fails.

Here is an example entry for parameter users:

{
    'username': 'john',
    'password': 'password',
    'active': True,
    'extra': {'Department': 'IT'}
}
create_graph(name: str, edge_definitions: Optional[Sequence[Dict[str, Any]]] = None, orphan_collections: Optional[Sequence[str]] = None, smart: Optional[bool] = None, disjoint: Optional[bool] = None, smart_field: Optional[str] = None, shard_count: Optional[int] = None, replication_factor: Optional[int] = None, write_concern: Optional[int] = None) → Union[arango.graph.Graph, arango.job.AsyncJob[arango.graph.Graph][arango.graph.Graph], arango.job.BatchJob[arango.graph.Graph][arango.graph.Graph], None]

Create a new graph.

Parameters:
  • name (str) – Graph name.
  • edge_definitions ([dict] | None) – List of edge definitions, where each edge definition entry is a dictionary with fields “edge_collection”, “from_vertex_collections” and “to_vertex_collections” (see below for example).
  • orphan_collections ([str] | None) – Names of additional vertex collections that are not in edge definitions.
  • smart (bool | None) – If set to True, sharding is enabled (see parameter smart_field below). Applies only to enterprise version of ArangoDB.
  • disjoint (bool | None) – If set to True, create a disjoint SmartGraph instead of a regular SmartGraph. Applies only to enterprise version of ArangoDB.
  • smart_field (str | None) – Document field used to shard the vertices of the graph. To use this, parameter smart must be set to True and every vertex in the graph must have the smart field. Applies only to enterprise version of ArangoDB.
  • shard_count (int | None) – Number of shards used for every collection in the graph. To use this, parameter smart must be set to True and every vertex in the graph must have the smart field. This number cannot be modified later once set. Applies only to enterprise version of ArangoDB.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
Returns:

Graph API wrapper.

Return type:

arango.graph.Graph

Raises:

arango.exceptions.GraphCreateError – If create fails.

Here is an example entry for parameter edge_definitions:

[
    {
        'edge_collection': 'teach',
        'from_vertex_collections': ['teachers'],
        'to_vertex_collections': ['lectures']
    }
]
create_task(name: str, command: str, params: Optional[Dict[str, Any]] = None, period: Optional[int] = None, offset: Optional[int] = None, task_id: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new server task.

Parameters:
  • name (str) – Name of the server task.
  • command (str) – Javascript command to execute.
  • params (dict | None) – Optional parameters passed into the Javascript command.
  • period (int | None) – Number of seconds to wait between executions. If set to 0, the new task will be “timed”, meaning it will execute only once and be deleted afterwards.
  • offset (int | None) – Initial delay before execution in seconds.
  • task_id (str | None) – Pre-defined ID for the new server task.
Returns:

Details of the new task.

Return type:

dict

Raises:

arango.exceptions.TaskCreateError – If create fails.

create_user(username: str, password: Optional[str] = None, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new user.

Parameters:
  • username (str) – Username.
  • password (str | None) – Password.
  • active (bool | None) – True if user is active, False otherwise.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserCreateError – If create fails.

create_view(name: str, view_type: str, properties: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewCreateError – If create fails.

databases() → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None]

Return the names all databases.

Returns:Database names.
Return type:[str]
Raises:arango.exceptions.DatabaseListError – If retrieval fails.
db_name

Return the name of the current database.

Returns:Database name.
Return type:str
delete_analyzer(name: str, force: bool = False, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete an analyzer.

Parameters:
  • name (str) – Analyzer name.
  • force (bool) – Remove the analyzer configuration even if in use.
  • ignore_missing (bool) – Do not raise an exception on missing analyzer.
Returns:

True if analyzer was deleted successfully, False if analyzer was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.AnalyzerDeleteError – If delete fails.

delete_collection(name: str, ignore_missing: bool = False, system: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete the collection.

Parameters:
  • name (str) – Collection name.
  • ignore_missing (bool) – Do not raise an exception on missing collection.
  • system (bool) – Whether the collection is a system collection.
Returns:

True if collection was deleted successfully, False if collection was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.CollectionDeleteError – If delete fails.

delete_database(name: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete the database.

Parameters:
  • name (str) – Database name.
  • ignore_missing (bool) – Do not raise an exception on missing database.
Returns:

True if database was deleted successfully, False if database was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.DatabaseDeleteError – If delete fails.

delete_document(document: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, ignore_missing: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Delete a document.

Parameters:
  • document (str | dict) – Document ID, key or body. Document body must contain the “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • ignore_missing (bool) – Do not raise an exception on missing document. This parameter has no effect in transactions where an exception is always raised on failures.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision), or True if parameter silent was set to True, or False if document was not found and ignore_missing was set to True (does not apply in transactions).

Return type:

bool | dict

Raises:
delete_graph(name: str, ignore_missing: bool = False, drop_collections: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Drop the graph of the given name from the database.

Parameters:
  • name (str) – Graph name.
  • ignore_missing (bool) – Do not raise an exception on missing graph.
  • drop_collections (bool | None) – Drop the collections of the graph also. This is only if they are not in use by other graphs.
Returns:

True if graph was deleted successfully, False if graph was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.GraphDeleteError – If delete fails.

delete_task(task_id: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a server task.

Parameters:
  • task_id (str) – Server task ID.
  • ignore_missing (bool) – Do not raise an exception on missing task.
Returns:

True if task was successfully deleted, False if task was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.TaskDeleteError – If delete fails.

delete_user(username: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a user.

Parameters:
  • username (str) – Username.
  • ignore_missing (bool) – Do not raise an exception on missing user.
Returns:

True if user was deleted successfully, False if user was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.UserDeleteError – If delete fails.

delete_view(name: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a view.

Parameters:
  • name (str) – View name.
  • ignore_missing (bool) – Do not raise an exception on missing view.
Returns:

True if view was deleted successfully, False if view was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.ViewDeleteError – If delete fails.

details() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return ArangoDB server details.

Returns:Server details.
Return type:dict
Raises:arango.exceptions.ServerDetailsError – If retrieval fails.
document(document: Dict[str, Any], rev: Optional[str] = None, check_rev: bool = True) → Union[Dict[str, Any], None, arango.job.AsyncJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]], arango.job.BatchJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]]]

Return a document.

Parameters:
  • document (str | dict) – Document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
Returns:

Document, or None if not found.

Return type:

dict | None

Raises:
echo() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return details of the last request (e.g. headers, payload).

Returns:Details of the last request.
Return type:dict
Raises:arango.exceptions.ServerEchoError – If retrieval fails.
encryption() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Rotate the user-supplied keys for encryption.

This method is available only for enterprise edition of ArangoDB.

Returns:New TLS data.
Return type:dict
Raises:arango.exceptions.ServerEncryptionError – If retrieval fails.
engine() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return the database engine details.

Returns:Database engine details.
Return type:dict
Raises:arango.exceptions.ServerEngineError – If retrieval fails.
execute_transaction(command: str, params: Optional[Dict[str, Any]] = None, read: Optional[Sequence[str]] = None, write: Optional[Sequence[str]] = None, sync: Optional[bool] = None, timeout: Optional[numbers.Number] = None, max_size: Optional[int] = None, allow_implicit: Optional[bool] = None, intermediate_commit_count: Optional[int] = None, intermediate_commit_size: Optional[int] = None, allow_dirty_read: bool = False) → Union[Any, arango.job.AsyncJob[typing.Any][Any], arango.job.BatchJob[typing.Any][Any], None]

Execute raw Javascript command in transaction.

Parameters:
  • command (str) – Javascript command to execute.
  • read ([str] | None) – Names of collections read during transaction. If parameter allow_implicit is set to True, any undeclared read collections are loaded lazily.
  • write ([str] | None) – Names of collections written to during transaction. Transaction fails on undeclared write collections.
  • params (dict | None) – Optional parameters passed into the Javascript command.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • timeout (int | None) – Timeout for waiting on collection locks. If set to 0, ArangoDB server waits indefinitely. If not set, system default value is used.
  • max_size (int | None) – Max transaction size limit in bytes.
  • allow_implicit (bool | None) – If set to True, undeclared read collections are loaded lazily. If set to False, transaction fails on any undeclared collections.
  • intermediate_commit_count (int | None) – Max number of operations after which an intermediate commit is performed automatically.
  • intermediate_commit_size (int | None) – Max size of operations in bytes after which an intermediate commit is performed automatically.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Return value of command.

Return type:

Any

Raises:

arango.exceptions.TransactionExecuteError – If execution fails.

foxx

Return Foxx API wrapper.

Returns:Foxx API wrapper.
Return type:arango.foxx.Foxx
graph(name: str) → arango.graph.Graph

Return the graph API wrapper.

Parameters:name (str) – Graph name.
Returns:Graph API wrapper.
Return type:arango.graph.Graph
graphs() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

List all graphs in the database.

Returns:Graphs in the database.
Return type:[dict]
Raises:arango.exceptions.GraphListError – If retrieval fails.
has_collection(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if collection exists in the database.

Parameters:name (str) – Collection name.
Returns:True if collection exists, False otherwise.
Return type:bool
has_database(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a database exists.

Parameters:name (str) – Database name.
Returns:True if database exists, False otherwise.
Return type:bool
has_document(document: Dict[str, Any], rev: Optional[str] = None, check_rev: bool = True) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a document exists.

Parameters:
  • document (str | dict) – Document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
Returns:

True if document exists, False otherwise.

Return type:

bool

Raises:
has_graph(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a graph exists in the database.

Parameters:name (str) – Graph name.
Returns:True if graph exists, False otherwise.
Return type:bool
has_user(username: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if user exists.

Parameters:username (str) – Username.
Returns:True if user exists, False otherwise.
Return type:bool
insert_document(collection: str, document: Dict[str, Any], return_new: bool = False, sync: Optional[bool] = None, silent: bool = False, overwrite: bool = False, return_old: bool = False, overwrite_mode: Optional[str] = None, keep_none: Optional[bool] = None, merge: Optional[bool] = None) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Insert a new document.

Parameters:
  • collection (str) – Collection name.
  • document (dict) – Document to insert. If it contains the “_key” or “_id” field, the value is used as the key of the new document (otherwise it is auto-generated). Any “_rev” field is ignored.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • overwrite (bool) – If set to True, operation does not fail on duplicate key and the existing document is replaced.
  • return_old (bool) – Include body of the old document if replaced. Applies only when value of overwrite is set to True.
  • overwrite_mode (str | None) – Overwrite behavior used when the document key exists already. Allowed values are “replace” (replace-insert) or “update” (update-insert). Implicitly sets the value of parameter overwrite.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely. Applies only when overwrite_mode is set to “update” (update-insert).
  • merge (bool | None) – If set to True (default), sub-dictionaries are merged instead of the new one overwriting the old one. Applies only when overwrite_mode is set to “update” (update-insert).
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

jwt_secrets() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return information on currently loaded JWT secrets.

Returns:Information on currently loaded JWT secrets.
Return type:dict
log_levels() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return current logging levels.

Returns:Current logging levels.
Return type:dict
metrics() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return server metrics in Prometheus format.

Returns:Server metrics in Prometheus format.
Return type:str
name

Return database name.

Returns:Database name.
Return type:str
permission(username: str, database: str, collection: Optional[str] = None) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • database (str) – Database name.
  • collection (str | None) – Collection name.
Returns:

Permission for given database or collection.

Return type:

str

Raises:

arango.exceptions.PermissionGetError – If retrieval fails.

permissions(username: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return user permissions for all databases and collections.

Parameters:username (str) – Username.
Returns:User permissions for all databases and collections.
Return type:dict
Raises:arango.exceptions.PermissionListError – If retrieval fails.
pregel

Return Pregel API wrapper.

Returns:Pregel API wrapper.
Return type:arango.pregel.Pregel
properties() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return database properties.

Returns:Database properties.
Return type:dict
Raises:arango.exceptions.DatabasePropertiesError – If retrieval fails.
read_log(upto: Union[int, str, None] = None, level: Union[int, str, None] = None, start: Optional[int] = None, size: Optional[int] = None, offset: Optional[int] = None, search: Optional[str] = None, sort: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Read the global log from server.

Parameters:
  • upto (int | str) – Return the log entries up to the given level (mutually exclusive with parameter level). Allowed values are “fatal”, “error”, “warning”, “info” (default) and “debug”.
  • level (int | str) – Return the log entries of only the given level (mutually exclusive with upto). Allowed values are “fatal”, “error”, “warning”, “info” (default) and “debug”.
  • start (int) – Return the log entries whose ID is greater or equal to the given value.
  • size (int) – Restrict the size of the result to the given value. This can be used for pagination.
  • offset (int) – Number of entries to skip (e.g. for pagination).
  • search (str) – Return only the log entries containing the given text.
  • sort (str) – Sort the log entries according to the given fashion, which can be “sort” or “desc”.
Returns:

Server log entries.

Return type:

dict

Raises:

arango.exceptions.ServerReadLogError – If read fails.

reload_jwt_secrets() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Hot-reload JWT secrets.

Calling this without payload reloads JWT secrets from disk. Only files specified via arangod startup option --server.jwt-secret-keyfile or --server.jwt-secret-folder are used. It is not possible to change the location where files are loaded from without restarting the server.

Returns:Information on reloaded JWT secrets.
Return type:dict
reload_routing() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Reload the routing information.

Returns:True if routing was reloaded successfully.
Return type:bool
Raises:arango.exceptions.ServerReloadRoutingError – If reload fails.
reload_tls() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Reload TLS data (server key, client-auth CA).

Returns:New TLS data.
Return type:dict
rename_view(name: str, new_name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Rename a view.

Parameters:
  • name (str) – View name.
  • new_name (str) – New view name.
Returns:

True if view was renamed successfully.

Return type:

bool

Raises:

arango.exceptions.ViewRenameError – If delete fails.

replace_arangosearch_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Replace an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewReplaceError – If replace fails.

replace_document(document: Dict[str, Any], check_rev: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Replace a document.

Parameters:
  • document (dict) – New document to replace the old one with. It must contain the “_id” field. Edge document must also have “_from” and “_to” fields.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • return_new (bool) – Include body of the new document in the result.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
replace_user(username: str, password: str, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Replace a user.

Parameters:
  • username (str) – Username.
  • password (str) – New password.
  • active (bool | None) – Whether the user is active.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserReplaceError – If replace fails.

replace_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Replace a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewReplaceError – If replace fails.

replication

Return Replication API wrapper.

Returns:Replication API wrapper.
Return type:arango.replication.Replication
required_db_version() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return required version of target database.

Returns:Required version of target database.
Return type:str
Raises:arango.exceptions.ServerRequiredDBVersionError – If retrieval fails.
reset_permission(username: str, database: str, collection: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Reset user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • database (str) – Database name.
  • collection (str) – Collection name.
Returns:

True if permission was reset successfully.

Return type:

bool

Raises:

arango.exceptions.PermissionRestError – If reset fails.

role() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return server role.

Returns:Server role. Possible values are “SINGLE” (server which is not in a cluster), “COORDINATOR” (cluster coordinator), “PRIMARY”, “SECONDARY”, “AGENT” (Agency node in a cluster) or “UNDEFINED”.
Return type:str
Raises:arango.exceptions.ServerRoleError – If retrieval fails.
run_tests(tests: Sequence[str]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Run available unittests on the server.

Parameters:tests ([str]) – List of files containing the test suites.
Returns:Test results.
Return type:dict
Raises:arango.exceptions.ServerRunTestsError – If execution fails.
set_log_levels(**kwargs) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Set the logging levels.

This method takes arbitrary keyword arguments where the keys are the logger names and the values are the logging levels. For example:

arango.set_log_levels(
    agency='DEBUG',
    collector='INFO',
    threads='WARNING'
)

Keys that are not valid logger names are ignored.

Returns:New logging levels.
Return type:dict
shutdown() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Initiate server shutdown sequence.

Returns:True if the server was shutdown successfully.
Return type:bool
Raises:arango.exceptions.ServerShutdownError – If shutdown fails.
statistics(description: bool = False) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return server statistics.

Returns:Server statistics.
Return type:dict
Raises:arango.exceptions.ServerStatisticsError – If retrieval fails.
status() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return ArangoDB server status.

Returns:Server status.
Return type:dict
Raises:arango.exceptions.ServerStatusError – If retrieval fails.
task(task_id: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return the details of an active server task.

Parameters:task_id (str) – Server task ID.
Returns:Server task details.
Return type:dict
Raises:arango.exceptions.TaskGetError – If retrieval fails.
tasks() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return all currently active server tasks.

Returns:Currently active server tasks.
Return type:[dict]
Raises:arango.exceptions.TaskListError – If retrieval fails.
time() → Union[datetime.datetime, arango.job.AsyncJob[datetime.datetime][datetime.datetime], arango.job.BatchJob[datetime.datetime][datetime.datetime], None]

Return server system time.

Returns:Server system time.
Return type:datetime.datetime
Raises:arango.exceptions.ServerTimeError – If retrieval fails.
tls() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return TLS data (server key, client-auth CA).

Returns:TLS data.
Return type:dict
update_arangosearch_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Update an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewUpdateError – If update fails.

update_document(document: Dict[str, Any], check_rev: bool = True, merge: bool = True, keep_none: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Update a document.

Parameters:
  • document (dict) – Partial or full document with the updated values. It must contain the “_id” field.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • merge (bool | None) – If set to True, sub-dictionaries are merged instead of the new one overwriting the old one.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely.
  • return_new (bool) – Include body of the new document in the result.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
update_permission(username: str, permission: str, database: str, collection: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Update user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • permission (str) – Allowed values are “rw” (read and write), “ro” (read only) or “none” (no access).
  • database (str) – Database name.
  • collection (str | None) – Collection name.
Returns:

True if access was granted successfully.

Return type:

bool

Raises:

arango.exceptions.PermissionUpdateError – If update fails.

update_user(username: str, password: Optional[str] = None, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Update a user.

Parameters:
  • username (str) – Username.
  • password (str | None) – New password.
  • active (bool | None) – Whether the user is active.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserUpdateError – If update fails.

update_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Update a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewUpdateError – If update fails.

user(username: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return user details.

Parameters:username (str) – Username.
Returns:User details.
Return type:dict
Raises:arango.exceptions.UserGetError – If retrieval fails.
username

Return the username.

Returns:Username.
Return type:str
users() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return all user details.

Returns:List of user details.
Return type:[dict]
Raises:arango.exceptions.UserListError – If retrieval fails.
version() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return ArangoDB server version.

Returns:Server version.
Return type:str
Raises:arango.exceptions.ServerVersionError – If retrieval fails.
view(name: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return view details.

Returns:View details.
Return type:dict
Raises:arango.exceptions.ViewGetError – If retrieval fails.
views() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return list of views and their summaries.

Returns:List of views.
Return type:[dict]
Raises:arango.exceptions.ViewListError – If retrieval fails.
wal

Return WAL (Write-Ahead Log) API wrapper.

Returns:WAL API wrapper.
Return type:arango.wal.WAL

BatchJob

class arango.job.BatchJob(response_handler: Callable[[arango.response.Response], T])[source]

Job for tracking and retrieving result of batch API execution.

Parameters:response_handler (callable) – HTTP response handler.
id

Return the batch job ID.

Returns:Batch job ID.
Return type:str
status() → str[source]

Return the batch job status.

Returns:Batch job status. Possible values are “pending” (job is still waiting for batch to be committed), or “done” (batch was committed and the job is updated with the result).
Return type:str
result() → T[source]

Return the batch job result.

If the job raised an exception, it is propagated up at this point.

Returns:

Batch job result.

Raises:

Cluster

class arango.cluster.Cluster(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor])[source]
server_id() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Return the server ID.

Returns:Server ID.
Return type:str
Raises:arango.exceptions.ClusterServerIDError – If retrieval fails.
server_role() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Return the server role.

Returns:Server role. Possible values are “SINGLE” (server which is not in a cluster), “COORDINATOR” (cluster coordinator), “PRIMARY”, “SECONDARY”, “AGENT” (Agency server in a cluster) or “UNDEFINED”.
Return type:str
Raises:arango.exceptions.ClusterServerRoleError – If retrieval fails.
server_version(server_id: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the version of the given server.

Parameters:server_id (str) – Server ID.
Returns:Version of the given server.
Return type:dict
Raises:arango.exceptions.ClusterServerVersionError – If retrieval fails.
server_engine(server_id: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the engine details for the given server.

Parameters:server_id (str) – Server ID.
Returns:Engine details of the given server.
Return type:dict
Raises:arango.exceptions.ClusterServerEngineError – If retrieval fails.
server_count() → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None][source]

Return the number of servers in the cluster.

Returns:Number of servers in the cluster.
Return type:int
Raises:arango.exceptions.ClusterServerCountError – If retrieval fails.
server_statistics(server_id: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the statistics for the given server.

Parameters:server_id (str) – Server ID.
Returns:Statistics for the given server.
Return type:dict
Raises:arango.exceptions.ClusterServerStatisticsError – If retrieval fails.
health() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the cluster health.

Returns:Cluster health.
Return type:dict
Raises:arango.exceptions.ClusterHealthError – If retrieval fails.
toggle_maintenance_mode(mode: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Enable or disable the cluster supervision (agency) maintenance mode.

Parameters:mode (str) – Maintenance mode. Allowed values are “on” and “off”.
Returns:Result of the operation.
Return type:dict
Raises:arango.exceptions.ClusterMaintenanceModeError – If toggle fails.
endpoints() → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None][source]

Return coordinate endpoints. This method is for clusters only.

Returns:List of endpoints.
Return type:[str]
Raises:arango.exceptions.ServerEndpointsError – If retrieval fails.

Collection

class arango.collection.Collection(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor], name: str)[source]

Base class for collection API wrappers.

Parameters:
  • connection – HTTP connection.
  • executor – API executor.
  • name – Collection name.
name

Return collection name.

Returns:Collection name.
Return type:str
recalculate_count() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Recalculate the document count.

Returns:True if recalculation was successful.
Return type:bool
Raises:arango.exceptions.CollectionRecalculateCountError – If operation fails.
responsible_shard(document: Dict[str, Any]) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Return the ID of the shard responsible for given document.

If the document does not exist, return the shard that would be responsible.

Returns:Shard ID
Return type:str
rename(new_name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Rename the collection.

Renames may not be reflected immediately in async execution, batch execution or transactions. It is recommended to initialize new API wrappers after a rename.

Parameters:new_name (str) – New collection name.
Returns:True if collection was renamed successfully.
Return type:bool
Raises:arango.exceptions.CollectionRenameError – If rename fails.
properties() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return collection properties.

Returns:Collection properties.
Return type:dict
Raises:arango.exceptions.CollectionPropertiesError – If retrieval fails.
configure(sync: Optional[bool] = None, schema: Optional[Dict[str, Any]] = None, replication_factor: Optional[int] = None, write_concern: Optional[int] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Configure collection properties.

Parameters:
  • sync (bool | None) – Block until operations are synchronized to disk.
  • schema (dict) – document schema for validation of objects.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
Returns:

New collection properties.

Return type:

dict

Raises:

arango.exceptions.CollectionConfigureError – If operation fails.

statistics() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return collection statistics.

Returns:Collection statistics.
Return type:dict
Raises:arango.exceptions.CollectionStatisticsError – If retrieval fails.
revision() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Return collection revision.

Returns:Collection revision.
Return type:str
Raises:arango.exceptions.CollectionRevisionError – If retrieval fails.
checksum(with_rev: bool = False, with_data: bool = False) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Return collection checksum.

Parameters:
  • with_rev (bool) – Include document revisions in checksum calculation.
  • with_data (bool) – Include document data in checksum calculation.
Returns:

Collection checksum.

Return type:

str

Raises:

arango.exceptions.CollectionChecksumError – If retrieval fails.

load() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Load the collection into memory.

Returns:True if collection was loaded successfully.
Return type:bool
Raises:arango.exceptions.CollectionLoadError – If operation fails.
unload() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Unload the collection from memory.

Returns:True if collection was unloaded successfully.
Return type:bool
Raises:arango.exceptions.CollectionUnloadError – If operation fails.
truncate() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Delete all documents in the collection.

Returns:True if collection was truncated successfully.
Return type:bool
Raises:arango.exceptions.CollectionTruncateError – If operation fails.
count() → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None][source]

Return the total document count.

Returns:Total document count.
Return type:int
Raises:arango.exceptions.DocumentCountError – If retrieval fails.
has(document: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, allow_dirty_read: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Check if a document exists in the collection.

Parameters:
  • document (str | dict) – Document ID, key or body. Document body must contain the “_id” or “_key” field.
  • rev (str | None) – Expected document revision. Overrides value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

True if document exists, False otherwise.

Return type:

bool

Raises:
ids() → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Return the IDs of all documents in the collection.

Returns:Document ID cursor.
Return type:arango.cursor.Cursor
Raises:arango.exceptions.DocumentIDsError – If retrieval fails.
keys() → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Return the keys of all documents in the collection.

Returns:Document key cursor.
Return type:arango.cursor.Cursor
Raises:arango.exceptions.DocumentKeysError – If retrieval fails.
all(skip: Optional[int] = None, limit: Optional[int] = None) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Return all documents in the collection.

Parameters:
  • skip (int | None) – Number of documents to skip.
  • limit (int | None) – Max number of documents returned.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find(filters: Dict[str, Any], skip: Optional[int] = None, limit: Optional[int] = None) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Return all documents that match the given filters.

Parameters:
  • filters (dict) – Document filters.
  • skip (int | None) – Number of documents to skip.
  • limit (int | None) – Max number of documents returned.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_near(latitude: numbers.Number, longitude: numbers.Number, limit: Optional[int] = None, allow_dirty_read: bool = False) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Return documents near a given coordinate.

Documents returned are sorted according to distance, with the nearest document being the first. If there are documents of equal distance, they are randomly chosen from the set until the limit is reached. A geo index must be defined in the collection to use this method.

Parameters:
  • latitude (int | float) – Latitude.
  • longitude (int | float) – Longitude.
  • limit (int | None) – Max number of documents returned.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_in_range(field: str, lower: int, upper: int, skip: Optional[int] = None, limit: Optional[int] = None, allow_dirty_read: bool = False) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Return documents within a given range in a random order.

A skiplist index must be defined in the collection to use this method.

Parameters:
  • field (str) – Document field name.
  • lower (int) – Lower bound (inclusive).
  • upper (int) – Upper bound (exclusive).
  • skip (int | None) – Number of documents to skip.
  • limit (int | None) – Max number of documents returned.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_in_radius(latitude: numbers.Number, longitude: numbers.Number, radius: numbers.Number, distance_field: Optional[str] = None, allow_dirty_read: bool = False) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Return documents within a given radius around a coordinate.

A geo index must be defined in the collection to use this method.

Parameters:
  • latitude (int | float) – Latitude.
  • longitude (int | float) – Longitude.
  • radius (int | float) – Max radius.
  • distance_field (str) – Document field used to indicate the distance to the given coordinate. This parameter is ignored in transactions.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_in_box(latitude1: numbers.Number, longitude1: numbers.Number, latitude2: numbers.Number, longitude2: numbers.Number, skip: Optional[int] = None, limit: Optional[int] = None, index: Optional[str] = None) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Return all documents in an rectangular area.

Parameters:
  • latitude1 (int | float) – First latitude.
  • longitude1 (int | float) – First longitude.
  • latitude2 (int | float) – Second latitude.
  • longitude2 (int | float) – Second longitude
  • skip (int | None) – Number of documents to skip.
  • limit (int | None) – Max number of documents returned.
  • index (str | None) – ID of the geo index to use (without the collection prefix). This parameter is ignored in transactions.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_by_text(field: str, query: str, limit: Optional[int] = None, allow_dirty_read: bool = False) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None][source]

Return documents that match the given fulltext query.

Parameters:
  • field (str) – Document field with fulltext index.
  • query (str) – Fulltext query.
  • limit (int | None) – Max number of documents returned.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

get_many(documents: Sequence[Union[str, Dict[str, Any]]], allow_dirty_read: bool = False) → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None][source]

Return multiple documents ignoring any missing ones.

Parameters:
  • documents ([str | dict]) – List of document keys, IDs or bodies. Document bodies must contain the “_id” or “_key” fields.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Documents. Missing ones are not included.

Return type:

[dict]

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

random() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return a random document from the collection.

Returns:A random document.
Return type:dict
Raises:arango.exceptions.DocumentGetError – If retrieval fails.
indexes() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None][source]

Return the collection indexes.

Returns:Collection indexes.
Return type:[dict]
Raises:arango.exceptions.IndexListError – If retrieval fails.
add_hash_index(fields: Sequence[str], unique: Optional[bool] = None, sparse: Optional[bool] = None, deduplicate: Optional[bool] = None, name: Optional[str] = None, in_background: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Create a new hash index.

Parameters:
  • fields ([str]) – Document fields to index.
  • unique (bool | None) – Whether the index is unique.
  • sparse (bool | None) – If set to True, documents with None in the field are also indexed. If set to False, they are skipped.
  • deduplicate (bool | None) – If set to True, inserting duplicate index values from the same document triggers unique constraint errors.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_skiplist_index(fields: Sequence[str], unique: Optional[bool] = None, sparse: Optional[bool] = None, deduplicate: Optional[bool] = None, name: Optional[str] = None, in_background: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Create a new skiplist index.

Parameters:
  • fields ([str]) – Document fields to index.
  • unique (bool | None) – Whether the index is unique.
  • sparse (bool | None) – If set to True, documents with None in the field are also indexed. If set to False, they are skipped.
  • deduplicate (bool | None) – If set to True, inserting duplicate index values from the same document triggers unique constraint errors.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_geo_index(fields: Union[str, Sequence[str]], ordered: Optional[bool] = None, name: Optional[str] = None, in_background: Optional[bool] = None, legacyPolygons: Optional[bool] = False) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Create a new geo-spatial index.

Parameters:
  • fields (str | [str]) – A single document field or a list of document fields. If a single field is given, the field must have values that are lists with at least two floats. Documents with missing fields or invalid values are excluded.
  • ordered (bool | None) – Whether the order is longitude, then latitude.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
  • legacyPolygons (bool | None) – Whether or not to use use the old, pre-3.10 rules for the parsing GeoJSON polygons
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_fulltext_index(fields: Sequence[str], min_length: Optional[int] = None, name: Optional[str] = None, in_background: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]
Create a new fulltext index. This method is deprecated
in ArangoDB 3.10 and will be removed in a future version of the driver.
Parameters:
  • fields ([str]) – Document fields to index.
  • min_length (int | None) – Minimum number of characters to index.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_persistent_index(fields: Sequence[str], unique: Optional[bool] = None, sparse: Optional[bool] = None, name: Optional[str] = None, in_background: Optional[bool] = None, storedValues: Optional[Sequence[str]] = None, cacheEnabled: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Create a new persistent index.

Unique persistent indexes on non-sharded keys are not supported in a cluster.

Parameters:
  • fields ([str]) – Document fields to index.
  • unique (bool | None) – Whether the index is unique.
  • sparse (bool | None) – Exclude documents that do not contain at least one of the indexed fields, or documents that have a value of None in any of the indexed fields.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
  • storedValues ([str]) – Additional attributes to include in a persistent index. These additional attributes cannot be used for index lookups or sorts, but they can be used for projections. Must be an array of index attribute paths. There must be no overlap of attribute paths between fields and storedValues. The maximum number of values is 32.
  • cacheEnabled (bool | None) – Enable an in-memory cache for index values for persistent indexes.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_ttl_index(fields: Sequence[str], expiry_time: int, name: Optional[str] = None, in_background: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Create a new TTL (time-to-live) index.

Parameters:
  • fields ([str]) – Document field to index.
  • expiry_time (int) – Time of expiry in seconds after document creation.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_inverted_index(fields: Dict[str, Any], name: Optional[str] = None, inBackground: Optional[bool] = None, parallelism: Optional[int] = None, primarySort: Optional[Dict[str, Any]] = None, storedValues: Optional[Sequence[Dict[str, Any]]] = None, analyzer: Optional[str] = None, features: Optional[Sequence[str]] = None, includeAllFields: Optional[bool] = None, trackListPositions: Optional[bool] = None, searchField: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Create a new inverted index, introduced in version 3.10.

Parameters:
  • fields (Json) – Document fields to index.
  • name (str | None) – Optional name for the index.
  • inBackground (bool | None) – Do not hold the collection lock.
  • parallelism (int | None) –
  • primarySort (Json | None) –
  • storedValues (Sequence[Json] | None) –
  • analyzer (str | None) –
  • features (Sequence[str] | None) –
  • includeAllFields (bool | None) –
  • trackListPositions (bool | None) –
  • searchField (bool | None) –
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

delete_index(index_id: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Delete an index.

Parameters:
  • index_id (str) – Index ID.
  • ignore_missing (bool) – Do not raise an exception on missing index.
Returns:

True if index was deleted successfully, False if index was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.IndexDeleteError – If delete fails.

load_indexes() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Cache all indexes in the collection into memory.

Returns:True if index was loaded successfully.
Return type:bool
Raises:arango.exceptions.IndexLoadError – If operation fails.
insert_many(documents: Sequence[Dict[str, Any]], return_new: bool = False, sync: Optional[bool] = None, silent: bool = False, overwrite: bool = False, return_old: bool = False, overwrite_mode: Optional[str] = None, keep_none: Optional[bool] = None, merge: Optional[bool] = None) → Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]], arango.job.AsyncJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], arango.job.BatchJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], None][source]

Insert multiple documents.

Note

If inserting a document fails, the exception is not raised but returned as an object in the result list. It is up to you to inspect the list to determine which documents were inserted successfully (returns document metadata) and which were not (returns exception object).

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single insert operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([dict]) – List of new documents to insert. If they contain the “_key” or “_id” fields, the values are used as the keys of the new documents (auto-generated otherwise). Any “_rev” field is ignored.
  • return_new (bool) – Include bodies of the new documents in the returned metadata. Ignored if parameter silent is set to True
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • overwrite (bool) – If set to True, operation does not fail on duplicate keys and the existing documents are replaced.
  • return_old (bool) – Include body of the old documents if replaced. Applies only when value of overwrite is set to True.
  • overwrite_mode (str | None) – Overwrite behavior used when the document key exists already. Allowed values are “replace” (replace-insert), “update” (update-insert), “ignore” or “conflict”. Implicitly sets the value of parameter overwrite.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely. Applies only when overwrite_mode is set to “update” (update-insert).
  • merge (bool | None) – If set to True (default), sub-dictionaries are merged instead of the new one overwriting the old one. Applies only when overwrite_mode is set to “update” (update-insert).
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Returns:

List of document metadata (e.g. document keys, revisions) and any exception, or True if parameter silent was set to True.

Return type:

[dict | ArangoServerError] | bool

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

update_many(documents: Sequence[Dict[str, Any]], check_rev: bool = True, merge: bool = True, keep_none: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]], arango.job.AsyncJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], arango.job.BatchJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], None][source]

Update multiple documents.

Note

If updating a document fails, the exception is not raised but returned as an object in the result list. It is up to you to inspect the list to determine which documents were updated successfully (returns document metadata) and which were not (returns exception object).

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single update operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([dict]) – Partial or full documents with the updated values. They must contain the “_id” or “_key” fields.
  • check_rev (bool) – If set to True, revisions of documents (if given) are compared against the revisions of target documents.
  • merge (bool | None) – If set to True, sub-dictionaries are merged instead of the new ones overwriting the old ones.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • return_old (bool) – Include body of the old document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

List of document metadata (e.g. document keys, revisions) and any exceptions, or True if parameter silent was set to True.

Return type:

[dict | ArangoError] | bool

Raises:

arango.exceptions.DocumentUpdateError – If update fails.

update_match(filters: Dict[str, Any], body: Dict[str, Any], limit: Optional[int] = None, keep_none: bool = True, sync: Optional[bool] = None, merge: bool = True) → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None][source]

Update matching documents.

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single update operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • filters (dict) – Document filters.
  • body (dict) – Full or partial document body with the updates.
  • limit (int | None) – Max number of documents to update. If the limit is lower than the number of matched documents, random documents are chosen. This parameter is not supported on sharded collections.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • merge (bool | None) – If set to True, sub-dictionaries are merged instead of the new ones overwriting the old ones.
Returns:

Number of documents updated.

Return type:

int

Raises:

arango.exceptions.DocumentUpdateError – If update fails.

replace_many(documents: Sequence[Dict[str, Any]], check_rev: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]], arango.job.AsyncJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], arango.job.BatchJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], None][source]

Replace multiple documents.

Note

If replacing a document fails, the exception is not raised but returned as an object in the result list. It is up to you to inspect the list to determine which documents were replaced successfully (returns document metadata) and which were not (returns exception object).

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single replace operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([dict]) – New documents to replace the old ones with. They must contain the “_id” or “_key” fields. Edge documents must also have “_from” and “_to” fields.
  • check_rev (bool) – If set to True, revisions of documents (if given) are compared against the revisions of target documents.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • return_old (bool) – Include body of the old document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

List of document metadata (e.g. document keys, revisions) and any exceptions, or True if parameter silent was set to True.

Return type:

[dict | ArangoServerError] | bool

Raises:

arango.exceptions.DocumentReplaceError – If replace fails.

replace_match(filters: Dict[str, Any], body: Dict[str, Any], limit: Optional[int] = None, sync: Optional[bool] = None) → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None][source]

Replace matching documents.

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single replace operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • filters (dict) – Document filters.
  • body (dict) – New document body.
  • limit (int | None) – Max number of documents to replace. If the limit is lower than the number of matched documents, random documents are chosen.
  • sync (bool | None) – Block until operation is synchronized to disk.
Returns:

Number of documents replaced.

Return type:

int

Raises:

arango.exceptions.DocumentReplaceError – If replace fails.

delete_many(documents: Sequence[Dict[str, Any]], return_old: bool = False, check_rev: bool = True, sync: Optional[bool] = None, silent: bool = False) → Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]], arango.job.AsyncJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], arango.job.BatchJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], None][source]

Delete multiple documents.

Note

If deleting a document fails, the exception is not raised but returned as an object in the result list. It is up to you to inspect the list to determine which documents were deleted successfully (returns document metadata) and which were not (returns exception object).

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single delete operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([str | dict]) – Document IDs, keys or bodies. Document bodies must contain the “_id” or “_key” fields.
  • return_old (bool) – Include bodies of the old documents in the result.
  • check_rev (bool) – If set to True, revisions of documents (if given) are compared against the revisions of target documents.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

List of document metadata (e.g. document keys, revisions) and any exceptions, or True if parameter silent was set to True.

Return type:

[dict | ArangoServerError] | bool

Raises:

arango.exceptions.DocumentDeleteError – If delete fails.

delete_match(filters: Dict[str, Any], limit: Optional[int] = None, sync: Optional[bool] = None) → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None][source]

Delete matching documents.

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single delete operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • filters (dict) – Document filters.
  • limit (int | None) – Max number of documents to delete. If the limit is lower than the number of matched documents, random documents are chosen.
  • sync (bool | None) – Block until operation is synchronized to disk.
Returns:

Number of documents deleted.

Return type:

int

Raises:

arango.exceptions.DocumentDeleteError – If delete fails.

import_bulk(documents: Sequence[Dict[str, Any]], halt_on_error: bool = True, details: bool = True, from_prefix: Optional[str] = None, to_prefix: Optional[str] = None, overwrite: Optional[bool] = None, on_duplicate: Optional[str] = None, sync: Optional[bool] = None, batch_size: Optional[int] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None, List[Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]]][source]

Insert multiple documents into the collection.

Note

This method is faster than arango.collection.Collection.insert_many() but does not return as many details.

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single insert operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([dict]) – List of new documents to insert. If they contain the “_key” or “_id” fields, the values are used as the keys of the new documents (auto-generated otherwise). Any “_rev” field is ignored.
  • halt_on_error (bool) – Halt the entire import on an error.
  • details (bool) – If set to True, the returned result will include an additional list of detailed error messages.
  • from_prefix (str) – String prefix prepended to the value of “_from” field in each edge document inserted. For example, prefix “foo” prepended to “_from”: “bar” will result in “_from”: “foo/bar”. Applies only to edge collections.
  • to_prefix (str) – String prefix prepended to the value of “_to” field in edge document inserted. For example, prefix “foo” prepended to “_to”: “bar” will result in “_to”: “foo/bar”. Applies only to edge collections.
  • overwrite (bool) – If set to True, all existing documents are removed prior to the import. Indexes are still preserved.
  • on_duplicate (str) – Action to take on unique key constraint violations (for documents with “_key” fields). Allowed values are “error” (do not import the new documents and count them as errors), “update” (update the existing documents while preserving any fields missing in the new ones), “replace” (replace the existing documents with new ones), and “ignore” (do not import the new documents and count them as ignored, as opposed to counting them as errors). Options “update” and “replace” may fail on secondary unique key constraint violations.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • batch_size (int) – Split up documents into batches of max length batch_size and import them in a loop on the client side. If batch_size is specified, the return type of this method changes from a result object to a list of result objects. IMPORTANT NOTE: this parameter may go through breaking changes in the future where the return type may not be a list of result objects anymore. Use it at your own risk, and avoid depending on the return value if possible. Cannot be used with parameter overwrite.
Returns:

Result of the bulk import.

Return type:

dict | list[dict]

Raises:

arango.exceptions.DocumentInsertError – If import fails.

Cursor

class arango.cursor.Cursor(connection: arango.connection.BaseConnection, init_data: Dict[str, Any], cursor_type: str = 'cursor')[source]

Cursor API wrapper.

Cursors fetch query results from ArangoDB server in batches. Cursor objects are stateful as they store the fetched items in-memory. They must not be shared across threads without proper locking mechanism.

Parameters:
  • connection – HTTP connection.
  • init_data (dict) – Cursor initialization data.
  • cursor_type (str) – Cursor type (“cursor” or “export”).
id

Return the cursor ID.

Returns:Cursor ID.
Return type:str
type

Return the cursor type.

Returns:Cursor type (“cursor” or “export”).
Return type:str
batch() → Optional[Deque[Any]][source]

Return the current batch of results.

Returns:Current batch.
Return type:collections.deque
has_more() → Optional[bool][source]

Return True if more results are available on the server.

Returns:True if more results are available on the server.
Return type:bool
count() → Optional[int][source]

Return the total number of documents in the entire result set.

Returns:Total number of documents, or None if the count option was not enabled during cursor initialization.
Return type:int | None
cached() → Optional[bool][source]

Return True if results are cached.

Returns:True if results are cached.
Return type:bool
statistics() → Optional[Dict[str, Any]][source]

Return cursor statistics.

Returns:Cursor statistics.
Return type:dict
profile() → Optional[Dict[str, Any]][source]

Return cursor performance profile.

Returns:Cursor performance profile.
Return type:dict
warnings() → Optional[Sequence[Dict[str, Any]]][source]

Return any warnings from the query execution.

Returns:Warnings, or None if there are none.
Return type:[str]
empty() → bool[source]

Check if the current batch is empty.

Returns:True if current batch is empty, False otherwise.
Return type:bool
next() → Any[source]

Pop the next item from the current batch.

If current batch is empty/depleted, an API request is automatically sent to ArangoDB server to fetch the next batch and update the cursor.

Returns:

Next item in current batch.

Raises:
pop() → Any[source]

Pop the next item from current batch.

If current batch is empty/depleted, an exception is raised. You must call arango.cursor.Cursor.fetch() to manually fetch the next batch from server.

Returns:Next item in current batch.
Raises:arango.exceptions.CursorEmptyError – If current batch is empty.
fetch() → Dict[str, Any][source]

Fetch the next batch from server and update the cursor.

Returns:

New batch details.

Return type:

dict

Raises:
close(ignore_missing: bool = False) → Optional[bool][source]

Close the cursor and free any server resources tied to it.

Parameters:

ignore_missing (bool) – Do not raise exception on missing cursors.

Returns:

True if cursor was closed successfully, False if cursor was missing on the server and ignore_missing was set to True, None if there are no cursors to close server-side (e.g. result set is smaller than the batch size).

Return type:

bool | None

Raises:

DefaultHTTPClient

class arango.http.DefaultHTTPClient[source]

Default HTTP client implementation.

create_session(host: str) → requests.sessions.Session[source]

Create and return a new session/connection.

Parameters:host (str) – ArangoDB host URL.
Returns:requests session object
Return type:requests.Session
send_request(session: requests.sessions.Session, method: str, url: str, headers: Optional[MutableMapping[str, str]] = None, params: Optional[MutableMapping[str, str]] = None, data: Union[str, requests_toolbelt.multipart.encoder.MultipartEncoder, None] = None, auth: Optional[Tuple[str, str]] = None) → arango.response.Response[source]

Send an HTTP request.

Parameters:
  • session (requests.Session) – Requests session object.
  • method (str) – HTTP method in lowercase (e.g. “post”).
  • url (str) – Request URL.
  • headers (dict) – Request headers.
  • params (dict) – URL (query) parameters.
  • data (str | MultipartEncoder | None) – Request payload.
  • auth (tuple) – Username and password.
Returns:

HTTP response.

Return type:

arango.response.Response

EdgeCollection

class arango.collection.EdgeCollection(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor], graph: str, name: str)[source]

ArangoDB edge collection API wrapper.

Parameters:
  • connection – HTTP connection.
  • executor – API executor.
  • graph – Graph name.
  • name – Edge collection name.
graph

Return the graph name.

Returns:Graph name.
Return type:str
get(edge: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True) → Union[Dict[str, Any], None, arango.job.AsyncJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]], arango.job.BatchJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]]][source]

Return an edge document.

Parameters:
  • edge (str | dict) – Edge document ID, key or body. Document body must contain the “_id” or “_key” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in edge if present.
  • check_rev (bool) – If set to True, revision of edge (if given) is compared against the revision of target edge document.
Returns:

Edge document or None if not found.

Return type:

dict | None

Raises:
insert(edge: Dict[str, Any], sync: Optional[bool] = None, silent: bool = False, return_new: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Insert a new edge document.

Parameters:
  • edge (dict) – New edge document to insert. It must contain “_from” and “_to” fields. If it has “_key” or “_id” field, its value is used as key of the new edge document (otherwise it is auto-generated). Any “_rev” field is ignored.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

update(edge: Dict[str, Any], check_rev: bool = True, keep_none: bool = True, sync: Optional[bool] = None, silent: bool = False, return_old: bool = False, return_new: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Update an edge document.

Parameters:
  • edge (dict) – Partial or full edge document with updated values. It must contain the “_key” or “_id” field.
  • check_rev (bool) – If set to True, revision of edge (if given) is compared against the revision of target edge document.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. If set to False, they are removed completely.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • return_old (bool) – Include body of the old document in the returned metadata. Ignored if parameter silent is set to True.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
replace(edge: Dict[str, Any], check_rev: bool = True, sync: Optional[bool] = None, silent: bool = False, return_old: bool = False, return_new: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Replace an edge document.

Parameters:
  • edge (dict) – New edge document to replace the old one with. It must contain the “_key” or “_id” field. It must also contain the “_from” and “_to” fields.
  • check_rev (bool) – If set to True, revision of edge (if given) is compared against the revision of target edge document.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • return_old (bool) – Include body of the old document in the returned metadata. Ignored if parameter silent is set to True.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
delete(edge: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, ignore_missing: bool = False, sync: Optional[bool] = None, return_old: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Delete an edge document.

Parameters:
  • edge (str | dict) – Edge document ID, key or body. Document body must contain the “_id” or “_key” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in edge if present.
  • check_rev (bool) – If set to True, revision of edge (if given) is compared against the revision of target edge document.
  • ignore_missing (bool) – Do not raise an exception on missing document. This parameter has no effect in transactions where an exception is always raised on failures.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • return_old (bool) – Return body of the old document in the result.
Returns:

True if edge was deleted successfully, False if edge was not found and ignore_missing was set to True (does not apply in transactions).

Return type:

bool

Raises:

Insert a new edge document linking the given vertices.

Parameters:
  • from_vertex (str | dict) – “From” vertex document ID or body with “_id” field.
  • to_vertex (str | dict) – “To” vertex document ID or body with “_id” field.
  • data (dict | None) – Any extra data for the new edge document. If it has “_key” or “_id” field, its value is used as key of the new edge document (otherwise it is auto-generated).
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

edges(vertex: Union[str, Dict[str, Any]], direction: Optional[str] = None, allow_dirty_read: bool = False) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the edge documents coming in and/or out of the vertex.

Parameters:
  • vertex (str | dict) – Vertex document ID or body with “_id” field.
  • direction (str) – The direction of the edges. Allowed values are “in” and “out”. If not set, edges in both directions are returned.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

List of edges and statistics.

Return type:

dict

Raises:

arango.exceptions.EdgeListError – If retrieval fails.

Foxx

class arango.foxx.Foxx(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor])[source]

Foxx API wrapper.

services(exclude_system: bool = False) → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None][source]

List installed services.

Parameters:exclude_system (bool) – If set to True, system services are excluded.
Returns:List of installed service.
Return type:[dict]
Raises:arango.exceptions.FoxxServiceListError – If retrieval fails.
service(mount: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return service metadata.

Parameters:mount (str) – Service mount path (e.g “/_admin/aardvark”).
Returns:Service metadata.
Return type:dict
Raises:arango.exceptions.FoxxServiceGetError – If retrieval fails.
create_service(mount: str, source: str, config: Optional[Dict[str, Any]] = None, dependencies: Optional[Dict[str, Any]] = None, development: Optional[bool] = None, setup: Optional[bool] = None, legacy: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Install a new service using JSON definition.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • source (str) – Fully qualified URL or absolute path on the server file system. Must be accessible by the server, or by all servers if in a cluster.
  • config (dict | None) – Configuration values.
  • dependencies (dict | None) – Dependency settings.
  • development (bool | None) – Enable development mode.
  • setup (bool | None) – Run service setup script.
  • legacy (bool | None) – Install the service in 2.8 legacy compatibility mode.
Returns:

Service metadata.

Return type:

dict

Raises:

arango.exceptions.FoxxServiceCreateError – If install fails.

create_service_with_file(mount: str, filename: str, development: Optional[bool] = None, setup: Optional[bool] = None, legacy: Optional[bool] = None, config: Optional[Dict[str, Any]] = None, dependencies: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Install a new service using a javascript file or zip bundle.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • filename (str) – Full path to the javascript file or zip bundle.
  • development (bool | None) – Enable development mode.
  • setup (bool | None) – Run service setup script.
  • legacy (bool | None) – Install the service in 2.8 legacy compatibility mode.
  • config (dict | None) – Configuration values.
  • dependencies (dict | None) – Dependency settings.
Returns:

Service metadata.

Return type:

dict

Raises:

arango.exceptions.FoxxServiceCreateError – If install fails.

update_service(mount: str, source: str, config: Optional[Dict[str, Any]] = None, dependencies: Optional[Dict[str, Any]] = None, teardown: Optional[bool] = None, setup: Optional[bool] = None, legacy: Optional[bool] = None, force: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Update (upgrade) a service.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • source (str) – Fully qualified URL or absolute path on the server file system. Must be accessible by the server, or by all servers if in a cluster.
  • config (dict | None) – Configuration values.
  • dependencies (dict | None) – Dependency settings.
  • teardown (bool | None) – Run service teardown script.
  • setup (bool | None) – Run service setup script.
  • legacy (bool | None) – Update the service in 2.8 legacy compatibility mode.
  • force (bool | None) – Force update if no service is found.
Returns:

Updated service metadata.

Return type:

dict

Raises:

arango.exceptions.FoxxServiceUpdateError – If update fails.

update_service_with_file(mount: str, filename: str, teardown: Optional[bool] = None, setup: Optional[bool] = None, legacy: Optional[bool] = None, force: Optional[bool] = None, config: Optional[Dict[str, Any]] = None, dependencies: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Update (upgrade) a service using a javascript file or zip bundle.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • filename (str) – Full path to the javascript file or zip bundle.
  • teardown (bool | None) – Run service teardown script.
  • setup (bool | None) – Run service setup script.
  • legacy (bool | None) – Update the service in 2.8 legacy compatibility mode.
  • force (bool | None) – Force update if no service is found.
  • config (dict | None) – Configuration values.
  • dependencies (dict | None) – Dependency settings.
Returns:

Updated service metadata.

Return type:

dict

Raises:

arango.exceptions.FoxxServiceUpdateError – If update fails.

replace_service(mount: str, source: str, config: Optional[Dict[str, Any]] = None, dependencies: Optional[Dict[str, Any]] = None, teardown: Optional[bool] = None, setup: Optional[bool] = None, legacy: Optional[bool] = None, force: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Replace a service by removing the old one and installing a new one.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • source (str) – Fully qualified URL or absolute path on the server file system. Must be accessible by the server, or by all servers if in a cluster.
  • config (dict | None) – Configuration values.
  • dependencies (dict | None) – Dependency settings.
  • teardown (bool | None) – Run service teardown script.
  • setup (bool | None) – Run service setup script.
  • legacy (bool | None) – Replace the service in 2.8 legacy compatibility mode.
  • force (bool | None) – Force install if no service is found.
Returns:

Replaced service metadata.

Return type:

dict

Raises:

arango.exceptions.FoxxServiceReplaceError – If replace fails.

replace_service_with_file(mount: str, filename: str, teardown: Optional[bool] = None, setup: Optional[bool] = None, legacy: Optional[bool] = None, force: Optional[bool] = None, config: Optional[Dict[str, Any]] = None, dependencies: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Replace a service using a javascript file or zip bundle.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • filename (str) – Full path to the javascript file or zip bundle.
  • teardown (bool | None) – Run service teardown script.
  • setup (bool | None) – Run service setup script.
  • legacy (bool | None) – Replace the service in 2.8 legacy compatibility mode.
  • force (bool | None) – Force install if no service is found.
  • config (dict | None) – Configuration values.
  • dependencies (dict | None) – Dependency settings.
Returns:

Replaced service metadata.

Return type:

dict

Raises:

arango.exceptions.FoxxServiceReplaceError – If replace fails.

delete_service(mount: str, teardown: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Uninstall a service.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • teardown (bool | None) – Run service teardown script.
Returns:

True if service was deleted successfully.

Return type:

bool

Raises:

arango.exceptions.FoxxServiceDeleteError – If delete fails.

config(mount: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return service configuration.

Parameters:mount (str) – Service mount path (e.g “/_admin/aardvark”).
Returns:Configuration values.
Return type:dict
Raises:arango.exceptions.FoxxConfigGetError – If retrieval fails.
update_config(mount: str, config: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Update service configuration.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • config (dict) – Configuration values. Omitted options are ignored.
Returns:

Updated configuration values.

Return type:

dict

Raises:

arango.exceptions.FoxxConfigUpdateError – If update fails.

replace_config(mount: str, config: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Replace service configuration.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • config (dict) – Configuration values. Omitted options are reset to their default values or marked as un-configured.
Returns:

Replaced configuration values.

Return type:

dict

Raises:

arango.exceptions.FoxxConfigReplaceError – If replace fails.

dependencies(mount: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return service dependencies.

Parameters:mount (str) – Service mount path (e.g “/_admin/aardvark”).
Returns:Dependency settings.
Return type:dict
Raises:arango.exceptions.FoxxDependencyGetError – If retrieval fails.
update_dependencies(mount: str, dependencies: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Update service dependencies.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • dependencies (dict) – Dependencies settings. Omitted ones are ignored.
Returns:

Updated dependency settings.

Return type:

dict

Raises:

arango.exceptions.FoxxDependencyUpdateError – If update fails.

replace_dependencies(mount: str, dependencies: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Replace service dependencies.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • dependencies (dict) – Dependencies settings. Omitted ones are disabled.
Returns:

Replaced dependency settings.

Return type:

dict

Raises:

arango.exceptions.FoxxDependencyReplaceError – If replace fails.

enable_development(mount: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Put the service into development mode.

While the service is running in development mode, it is reloaded from the file system, and its setup script (if any) is re-executed every time the service handles a request.

In a cluster with multiple coordinators, changes to the filesystem on one coordinator is not reflected across other coordinators.

Parameters:mount (str) – Service mount path (e.g “/_admin/aardvark”).
Returns:Service metadata.
Return type:dict
Raises:arango.exceptions.FoxxDevModeEnableError – If operation fails.
disable_development(mount: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Put the service into production mode.

In a cluster with multiple coordinators, the services on all other coordinators are replaced with the version on the calling coordinator.

Parameters:mount (str) – Service mount path (e.g “/_admin/aardvark”).
Returns:Service metadata.
Return type:dict
Raises:arango.exceptions.FoxxDevModeDisableError – If operation fails.
readme(mount: str) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Return the service readme.

Parameters:mount (str) – Service mount path (e.g “/_admin/aardvark”).
Returns:Service readme.
Return type:str
Raises:arango.exceptions.FoxxReadmeGetError – If retrieval fails.
swagger(mount: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the Swagger API description for the given service.

Parameters:mount (str) – Service mount path (e.g “/_admin/aardvark”).
Returns:Swagger API description.
Return type:dict
Raises:arango.exceptions.FoxxSwaggerGetError – If retrieval fails.
download(mount: str) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Download service bundle.

When development mode is enabled, a new bundle is created every time. Otherwise, the bundle represents the version of the service installed on the server.

Parameters:mount (str) – Service mount path (e.g “/_admin/aardvark”).
Returns:Service bundle in raw string form.
Return type:str
Raises:arango.exceptions.FoxxDownloadError – If download fails.
commit(replace: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Commit local service state of the coordinator to the database.

This can be used to resolve service conflicts between coordinators that cannot be fixed automatically due to missing data.

Parameters:replace (bool | None) – Overwrite any existing service files in database.
Returns:True if the state was committed successfully.
Return type:bool
Raises:arango.exceptions.FoxxCommitError – If commit fails.
scripts(mount: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

List service scripts.

Parameters:mount (str) – Service mount path (e.g “/_admin/aardvark”).
Returns:Service scripts.
Return type:dict
Raises:arango.exceptions.FoxxScriptListError – If retrieval fails.
run_script(mount: str, name: str, arg: Any = None) → Union[Any, arango.job.AsyncJob[typing.Any][Any], arango.job.BatchJob[typing.Any][Any], None][source]

Run a service script.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • name (str) – Script name.
  • arg (Any) – Arbitrary value passed into the script as first argument.
Returns:

Result of the script, if any.

Return type:

Any

Raises:

arango.exceptions.FoxxScriptRunError – If script fails.

run_tests(mount: str, reporter: str = 'default', idiomatic: Optional[bool] = None, output_format: Optional[str] = None, name_filter: Optional[str] = None) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Run service tests.

Parameters:
  • mount (str) – Service mount path (e.g “/_admin/aardvark”).
  • reporter (str) – Test reporter. Allowed values are “default” (simple list of test cases), “suite” (object of test cases nested in suites), “stream” (raw stream of test results), “xunit” (XUnit or JUnit compatible structure), or “tap” (raw TAP compatible stream).
  • idiomatic – Use matching format for the reporter, regardless of the value of parameter output_format.
  • output_format (str) – Used to further control format. Allowed values are “x-ldjson”, “xml” and “text”. When using “stream” reporter, setting this to “x-ldjson” returns newline-delimited JSON stream. When using “tap” reporter, setting this to “text” returns plain text TAP report. When using “xunit” reporter, settings this to “xml” returns an XML instead of JSONML.
  • name_filter (str) – Only run tests whose full name (test suite and test case) matches the given string.
Type:

bool

Returns:

Reporter output (e.g. raw JSON string, XML, plain text).

Return type:

str

Raises:

arango.exceptions.FoxxTestRunError – If test fails.

Graph

class arango.graph.Graph(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor], name: str)[source]

Graph API wrapper.

name

Return the graph name.

Returns:Graph name.
Return type:str
properties() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return graph properties.

Returns:Graph properties.
Return type:dict
Raises:arango.exceptions.GraphPropertiesError – If retrieval fails.
has_vertex_collection(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Check if the graph has the given vertex collection.

Parameters:name (str) – Vertex collection name.
Returns:True if vertex collection exists, False otherwise.
Return type:bool
vertex_collections() → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None][source]

Return vertex collections in the graph that are not orphaned.

Returns:Names of vertex collections that are not orphaned.
Return type:[str]
Raises:arango.exceptions.VertexCollectionListError – If retrieval fails.
vertex_collection(name: str) → arango.collection.VertexCollection[source]

Return the vertex collection API wrapper.

Parameters:name (str) – Vertex collection name.
Returns:Vertex collection API wrapper.
Return type:arango.collection.VertexCollection
create_vertex_collection(name: str) → Union[arango.collection.VertexCollection, arango.job.AsyncJob[arango.collection.VertexCollection][arango.collection.VertexCollection], arango.job.BatchJob[arango.collection.VertexCollection][arango.collection.VertexCollection], None][source]

Create a vertex collection in the graph.

Parameters:name (str) – Vertex collection name.
Returns:Vertex collection API wrapper.
Return type:arango.collection.VertexCollection
Raises:arango.exceptions.VertexCollectionCreateError – If create fails.
delete_vertex_collection(name: str, purge: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Remove a vertex collection from the graph.

Parameters:
  • name (str) – Vertex collection name.
  • purge (bool) – If set to True, the vertex collection is not just deleted from the graph but also from the database completely.
Returns:

True if vertex collection was deleted successfully.

Return type:

bool

Raises:

arango.exceptions.VertexCollectionDeleteError – If delete fails.

has_edge_definition(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Check if the graph has the given edge definition.

Parameters:name (str) – Edge collection name.
Returns:True if edge definition exists, False otherwise.
Return type:bool
has_edge_collection(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Check if the graph has the given edge collection.

Parameters:name (str) – Edge collection name.
Returns:True if edge collection exists, False otherwise.
Return type:bool
edge_collection(name: str) → arango.collection.EdgeCollection[source]

Return the edge collection API wrapper.

Parameters:name (str) – Edge collection name.
Returns:Edge collection API wrapper.
Return type:arango.collection.EdgeCollection
edge_definitions() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None][source]

Return the edge definitions of the graph.

Returns:Edge definitions of the graph.
Return type:[dict]
Raises:arango.exceptions.EdgeDefinitionListError – If retrieval fails.
create_edge_definition(edge_collection: str, from_vertex_collections: Sequence[str], to_vertex_collections: Sequence[str]) → Union[arango.collection.EdgeCollection, arango.job.AsyncJob[arango.collection.EdgeCollection][arango.collection.EdgeCollection], arango.job.BatchJob[arango.collection.EdgeCollection][arango.collection.EdgeCollection], None][source]

Create a new edge definition.

An edge definition consists of an edge collection, “from” vertex collection(s) and “to” vertex collection(s). Here is an example entry:

{
    'edge_collection': 'edge_collection_name',
    'from_vertex_collections': ['from_vertex_collection_name'],
    'to_vertex_collections': ['to_vertex_collection_name']
}
Parameters:
  • edge_collection (str) – Edge collection name.
  • from_vertex_collections ([str]) – Names of “from” vertex collections.
  • to_vertex_collections ([str]) – Names of “to” vertex collections.
Returns:

Edge collection API wrapper.

Return type:

arango.collection.EdgeCollection

Raises:

arango.exceptions.EdgeDefinitionCreateError – If create fails.

replace_edge_definition(edge_collection: str, from_vertex_collections: Sequence[str], to_vertex_collections: Sequence[str]) → Union[arango.collection.EdgeCollection, arango.job.AsyncJob[arango.collection.EdgeCollection][arango.collection.EdgeCollection], arango.job.BatchJob[arango.collection.EdgeCollection][arango.collection.EdgeCollection], None][source]

Replace an edge definition.

Parameters:
  • edge_collection (str) – Edge collection name.
  • from_vertex_collections ([str]) – Names of “from” vertex collections.
  • to_vertex_collections ([str]) – Names of “to” vertex collections.
Returns:

Edge collection API wrapper.

Return type:

arango.collection.EdgeCollection

Raises:

arango.exceptions.EdgeDefinitionReplaceError – If replace fails.

delete_edge_definition(name: str, purge: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Delete an edge definition from the graph.

Parameters:
  • name (str) – Edge collection name.
  • purge (bool) – If set to True, the edge definition is not just removed from the graph but the edge collection is also deleted completely from the database.
Returns:

True if edge definition was deleted successfully.

Return type:

bool

Raises:

arango.exceptions.EdgeDefinitionDeleteError – If delete fails.

traverse(start_vertex: Union[str, Dict[str, Any]], direction: str = 'outbound', item_order: str = 'forward', strategy: Optional[str] = None, order: Optional[str] = None, edge_uniqueness: Optional[str] = None, vertex_uniqueness: Optional[str] = None, max_iter: Optional[int] = None, min_depth: Optional[int] = None, max_depth: Optional[int] = None, init_func: Optional[str] = None, sort_func: Optional[str] = None, filter_func: Optional[str] = None, visitor_func: Optional[str] = None, expander_func: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Traverse the graph and return the visited vertices and edges.

Parameters:
  • start_vertex (str | dict) – Start vertex document ID or body with “_id” field.
  • direction (str) – Traversal direction. Allowed values are “outbound” (default), “inbound” and “any”.
  • item_order (str) – Item iteration order. Allowed values are “forward” (default) and “backward”.
  • strategy (str | None) – Traversal strategy. Allowed values are “depthfirst” and “breadthfirst”.
  • order (str | None) – Traversal order. Allowed values are “preorder”, “postorder”, and “preorder-expander”.
  • edge_uniqueness (str | None) – Uniqueness for visited edges. Allowed values are “global”, “path” or “none”.
  • vertex_uniqueness (str | None) – Uniqueness for visited vertices. Allowed values are “global”, “path” or “none”.
  • max_iter (int | None) – If set, halt the traversal after the given number of iterations. This parameter can be used to prevent endless loops in cyclic graphs.
  • min_depth (int | None) – Minimum depth of the nodes to visit.
  • max_depth (int | None) – Maximum depth of the nodes to visit.
  • init_func (str | None) – Initialization function in Javascript with signature (config, result) -> void. This function is used to initialize values in the result.
  • sort_func (str | None) – Sorting function in Javascript with signature (left, right) -> integer, which returns -1 if left < right, +1 if left > right and 0 if left == right.
  • filter_func (str | None) – Filter function in Javascript with signature (config, vertex, path) -> mixed, where mixed can have one of the following values (or an array with multiple): “exclude” (do not visit the vertex), “prune” (do not follow the edges of the vertex), or “undefined” (visit the vertex and follow its edges).
  • visitor_func (str | None) – Visitor function in Javascript with signature (config, result, vertex, path, connected) -> void. The return value is ignored, result is modified by reference, and connected is populated only when parameter order is set to “preorder-expander”.
  • expander_func (str | None) – Expander function in Javascript with signature (config, vertex, path) -> mixed. The function must return an array of connections for vertex. Each connection is an object with attributes “edge” and “vertex”.
Returns:

Visited edges and vertices.

Return type:

dict

Raises:

arango.exceptions.GraphTraverseError – If traversal fails.

has_vertex(vertex: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Check if the given vertex document exists in the graph.

Parameters:
  • vertex (str | dict) – Vertex document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in vertex if present.
  • check_rev (bool) – If set to True, revision of vertex (if given) is compared against the revision of target vertex document.
Returns:

True if vertex document exists, False otherwise.

Return type:

bool

Raises:
vertex(vertex: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True) → Union[Dict[str, Any], None, arango.job.AsyncJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]], arango.job.BatchJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]]][source]

Return a vertex document.

Parameters:
  • vertex (str | dict) – Vertex document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in vertex if present.
  • check_rev (bool) – If set to True, revision of vertex (if given) is compared against the revision of target vertex document.
Returns:

Vertex document or None if not found.

Return type:

dict | None

Raises:
insert_vertex(collection: str, vertex: Dict[str, Any], sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Insert a new vertex document.

Parameters:
  • collection (str) – Vertex collection name.
  • vertex (dict) – New vertex document to insert. If it has “_key” or “_id” field, its value is used as key of the new vertex (otherwise it is auto-generated). Any “_rev” field is ignored.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

update_vertex(vertex: Dict[str, Any], check_rev: bool = True, keep_none: bool = True, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Update a vertex document.

Parameters:
  • vertex (dict) – Partial or full vertex document with updated values. It must contain the “_id” field.
  • check_rev (bool) – If set to True, revision of vertex (if given) is compared against the revision of target vertex document.
  • keep_none (bool) – If set to True, fields with value None are retained in the document. If set to False, they are removed completely.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
replace_vertex(vertex: Dict[str, Any], check_rev: bool = True, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Replace a vertex document.

Parameters:
  • vertex (dict) – New vertex document to replace the old one with. It must contain the “_id” field.
  • check_rev (bool) – If set to True, revision of vertex (if given) is compared against the revision of target vertex document.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
delete_vertex(vertex: Dict[str, Any], rev: Optional[str] = None, check_rev: bool = True, ignore_missing: bool = False, sync: Optional[bool] = None) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Delete a vertex document.

Parameters:
  • vertex (str | dict) – Vertex document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in vertex if present.
  • check_rev (bool) – If set to True, revision of vertex (if given) is compared against the revision of target vertex document.
  • ignore_missing (bool) – Do not raise an exception on missing document. This parameter has no effect in transactions where an exception is always raised on failures.
  • sync (bool | None) – Block until operation is synchronized to disk.
Returns:

True if vertex was deleted successfully, False if vertex was not found and ignore_missing was set to True (does not apply in transactions).

Return type:

bool

Raises:
has_edge(edge: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Check if the given edge document exists in the graph.

Parameters:
  • edge (str | dict) – Edge document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in edge if present.
  • check_rev (bool) – If set to True, revision of edge (if given) is compared against the revision of target edge document.
Returns:

True if edge document exists, False otherwise.

Return type:

bool

Raises:
edge(edge: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True) → Union[Dict[str, Any], None, arango.job.AsyncJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]], arango.job.BatchJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]]][source]

Return an edge document.

Parameters:
  • edge (str | dict) – Edge document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in edge if present.
  • check_rev (bool) – If set to True, revision of edge (if given) is compared against the revision of target edge document.
Returns:

Edge document or None if not found.

Return type:

dict | None

Raises:
insert_edge(collection: str, edge: Dict[str, Any], sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Insert a new edge document.

Parameters:
  • collection (str) – Edge collection name.
  • edge (dict) – New edge document to insert. It must contain “_from” and “_to” fields. If it has “_key” or “_id” field, its value is used as key of the new edge document (otherwise it is auto-generated). Any “_rev” field is ignored.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

update_edge(edge: Dict[str, Any], check_rev: bool = True, keep_none: bool = True, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Update an edge document.

Parameters:
  • edge (dict) – Partial or full edge document with updated values. It must contain the “_id” field.
  • check_rev (bool) – If set to True, revision of edge (if given) is compared against the revision of target edge document.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. If set to False, they are removed completely.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
replace_edge(edge: Dict[str, Any], check_rev: bool = True, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Replace an edge document.

Parameters:
  • edge (dict) – New edge document to replace the old one with. It must contain the “_id” field. It must also contain the “_from” and “_to” fields.
  • check_rev (bool) – If set to True, revision of edge (if given) is compared against the revision of target edge document.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
delete_edge(edge: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, ignore_missing: bool = False, sync: Optional[bool] = None) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Delete an edge document.

Parameters:
  • edge (str | dict) – Edge document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in edge if present.
  • check_rev (bool) – If set to True, revision of edge (if given) is compared against the revision of target edge document.
  • ignore_missing (bool) – Do not raise an exception on missing document. This parameter has no effect in transactions where an exception is always raised on failures.
  • sync (bool | None) – Block until operation is synchronized to disk.
Returns:

True if edge was deleted successfully, False if edge was not found and ignore_missing was set to True (does not apply in transactions).

Return type:

bool

Raises:

Insert a new edge document linking the given vertices.

Parameters:
  • collection (str) – Edge collection name.
  • from_vertex (str | dict) – “From” vertex document ID or body with “_id” field.
  • to_vertex (str | dict) – “To” vertex document ID or body with “_id” field.
  • data (dict) – Any extra data for the new edge document. If it has “_key” or “_id” field, its value is used as key of the new edge document (otherwise it is auto-generated).
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

edges(collection: str, vertex: Union[str, Dict[str, Any]], direction: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the edge documents coming in and/or out of given vertex.

Parameters:
  • collection (str) – Edge collection name.
  • vertex (str | dict) – Vertex document ID or body with “_id” field.
  • direction (str) – The direction of the edges. Allowed values are “in” and “out”. If not set, edges in both directions are returned.
Returns:

List of edges and statistics.

Return type:

dict

Raises:

arango.exceptions.EdgeListError – If retrieval fails.

HTTPClient

class arango.http.HTTPClient[source]

Abstract base class for HTTP clients.

create_session(host: str) → requests.sessions.Session[source]

Return a new requests session given the host URL.

This method must be overridden by the user.

Parameters:host (str) – ArangoDB host URL.
Returns:Requests session object.
Return type:requests.Session
send_request(session: requests.sessions.Session, method: str, url: str, headers: Optional[MutableMapping[str, str]] = None, params: Optional[MutableMapping[str, str]] = None, data: Union[str, requests_toolbelt.multipart.encoder.MultipartEncoder, None] = None, auth: Optional[Tuple[str, str]] = None) → arango.response.Response[source]

Send an HTTP request.

This method must be overridden by the user.

Parameters:
  • session (requests.Session) – Requests session object.
  • method (str) – HTTP method in lowercase (e.g. “post”).
  • url (str) – Request URL.
  • headers (dict) – Request headers.
  • params (dict) – URL (query) parameters.
  • data (str | MultipartEncoder | None) – Request payload.
  • auth (tuple) – Username and password.
Returns:

HTTP response.

Return type:

arango.response.Response

Pregel

class arango.pregel.Pregel(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor])[source]

Pregel API wrapper.

job(job_id: int) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the details of a Pregel job.

Parameters:job_id (int) – Pregel job ID.
Returns:Details of the Pregel job.
Return type:dict
Raises:arango.exceptions.PregelJobGetError – If retrieval fails.
create_job(graph: str, algorithm: str, store: bool = True, max_gss: Optional[int] = None, thread_count: Optional[int] = None, async_mode: Optional[bool] = None, result_field: Optional[str] = None, algorithm_params: Optional[Dict[str, Any]] = None, vertexCollections: Optional[Sequence[str]] = None, edgeCollections: Optional[Sequence[str]] = None) → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None][source]

Start a new Pregel job.

Parameters:
  • graph (str) – Graph name.
  • algorithm (str) – Algorithm (e.g. “pagerank”).
  • store (bool) – If set to True, Pregel engine writes results back to the database. If set to False, results can be queried via AQL.
  • max_gss (int | None) – Max number of global iterations for the algorithm.
  • thread_count (int | None) – Number of parallel threads to use per worker. This does not influence the number of threads used to load or store data from the database (it depends on the number of shards).
  • async_mode (bool | None) – If set to True, algorithms which support async mode run without synchronized global iterations. This might lead to performance increase if there are load imbalances.
  • result_field (str | None) – If specified, most algorithms will write their results into this field.
  • algorithm_params (dict | None) – Additional algorithm parameters.
  • vertexCollections (Sequence[str] | None) – List of vertex collection names.
  • edgeCollections (Sequence[str] | None) – List of edge collection names.
Returns:

Pregel job ID.

Return type:

int

Raises:

arango.exceptions.PregelJobCreateError – If create fails.

delete_job(job_id: int) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Delete a Pregel job.

Parameters:job_id (int) – Pregel job ID.
Returns:True if Pregel job was deleted successfully.
Return type:bool
Raises:arango.exceptions.PregelJobDeleteError – If delete fails.
jobs() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]
Returns a list of currently running and recently
finished Pregel jobs without retrieving their results.
Returns:Details of each running or recently finished Pregel job.
Return type:dict
Raises:arango.exceptions.PregelJobGetError – If retrieval fails.

Replication

class arango.replication.Replication(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor])[source]
inventory(batch_id: str, include_system: Optional[bool] = None, all_databases: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return an overview of collections and indexes.

Parameters:
  • batch_id (str) – Batch ID.
  • include_system (bool | None) – Include system collections in the result. Default value is True.
  • all_databases (bool | None) – Include all databases. Only works on “_system” database. Default value is False.
Returns:

Overview of collections and indexes.

Return type:

dict

Raises:

arango.exceptions.ReplicationInventoryError – If retrieval fails.

create_dump_batch(ttl: Optional[int] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Create a new dump batch.

Parameters:ttl (int | None) – Time-to-live for the new batch in seconds.
Returns:ID of the batch.
Return type:dict
Raises:arango.exceptions.ReplicationDumpBatchCreateError – If create fails.
delete_dump_batch(batch_id: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Delete a dump batch.

Parameters:batch_id (str) – Dump batch ID.
Returns:True if deletion was successful.
Return type:bool
Raises:arango.exceptions.ReplicationDumpBatchDeleteError – If delete fails.
extend_dump_batch(batch_id: str, ttl: int) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None][source]

Extend a dump batch.

Parameters:
  • batch_id (str) – Dump batch ID.
  • ttl (int) – Time-to-live for the new batch in seconds.
Returns:

True if operation was successful.

Return type:

bool

Raises:

arango.exceptions.ReplicationDumpBatchExtendError – If dump fails.

dump(collection: str, batch_id: Optional[str] = None, chunk_size: Optional[int] = None, deserialize: bool = False) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the events data of one collection.

Parameters:
  • collection (str) – Name or ID of the collection to dump.
  • batch_id (str | None) – Batch ID.
  • chunk_size (int | None) – Size of the result in bytes. This value is honored approximately only.
  • deserialize (bool) – Deserialize the response content. Default is False.
Returns:

Collection events data.

Return type:

str | [dict]

Raises:

arango.exceptions.ReplicationDumpError – If retrieval fails.

synchronize(endpoint: str, database: Optional[str] = None, username: Optional[str] = None, password: Optional[str] = None, include_system: Optional[bool] = None, incremental: Optional[bool] = None, restrict_type: Optional[str] = None, restrict_collections: Optional[Sequence[str]] = None, initial_sync_wait_time: Optional[int] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Synchronize data from a remote endpoint.

Parameters:
  • endpoint (str) – Master endpoint (e.g. “tcp://192.168.173.13:8529”).
  • database (str | None) – Database name.
  • username (str | None) – Username.
  • password (str | None) – Password.
  • include_system (bool | None) – Whether to include system collection operations.
  • incremental (bool | None) – If set to True, then an incremental synchronization method is used for synchronizing data in collections. This method is useful when collections already exist locally, and only the remaining differences need to be transferred from the remote endpoint. In this case, the incremental synchronization can be faster than a full synchronization. Default value is False, meaning complete data is transferred.
  • restrict_type (str | None) – Optional string value for collection filtering. Allowed values are “include” or “exclude”.
  • restrict_collections ([str] | None) – Optional list of collections for use with argument restrict_type. If restrict_type set to “include”, only the specified collections are synchronised. Otherwise, all but the specified ones are synchronized.
  • initial_sync_wait_time (int | None) – Maximum wait time in seconds that the initial synchronization will wait for a response from master when fetching collection data. This can be used to control after what time the initial synchronization will give up waiting for response and fail. Value is ignored if set to 0.
Returns:

Collections transferred and last log tick.

Return type:

dict

Raises:

arango.exceptions.ReplicationSyncError – If sync fails.

cluster_inventory(include_system: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return an overview of collections and indexes in a cluster.

Parameters:include_system (bool) – Include system collections in the result. Default value is True.
Returns:Overview of collections and indexes on the cluster.
Return type:dict
Raises:arango.exceptions.ReplicationClusterInventoryError – If retrieval fails.
logger_state() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the state of the replication logger.

Returns:Logger state.
Return type:dict
Raises:arango.exceptions.ReplicationLoggerStateError – If retrieval fails.
logger_first_tick() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Return the first available tick value from the server.

Returns:First tick value.
Return type:str
Raises:arango.exceptions.ReplicationLoggerFirstTickError – If retrieval fails.
applier_config() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the configuration of the replication applier.

Returns:Configuration of the replication applier.
Return type:dict
Raises:arango.exceptions.ReplicationApplierConfigError – If retrieval fails.
set_applier_config(endpoint: str, database: Optional[str] = None, username: Optional[str] = None, password: Optional[str] = None, max_connect_retries: Optional[int] = None, connect_timeout: Optional[int] = None, request_timeout: Optional[int] = None, chunk_size: Optional[int] = None, auto_start: Optional[bool] = None, adaptive_polling: Optional[bool] = None, include_system: Optional[bool] = None, auto_resync: Optional[bool] = None, auto_resync_retries: Optional[int] = None, initial_sync_max_wait_time: Optional[int] = None, connection_retry_wait_time: Optional[int] = None, idle_min_wait_time: Optional[int] = None, idle_max_wait_time: Optional[int] = None, require_from_present: Optional[bool] = None, verbose: Optional[bool] = None, restrict_type: Optional[str] = None, restrict_collections: Optional[Sequence[str]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Set configuration values of the replication applier.

Parameters:
  • endpoint (str) – Server endpoint (e.g. “tcp://192.168.173.13:8529”).
  • database (str | None) – Database name.
  • username (str | None) – Username.
  • password (str | None) – Password.
  • max_connect_retries (int | None) – Maximum number of connection attempts the applier makes in a row before stopping itself.
  • connect_timeout (int | None) – Timeout in seconds when attempting to connect to the endpoint. This value is used for each connection attempt.
  • request_timeout (int | None) – Timeout in seconds for individual requests to the endpoint.
  • chunk_size (int | None) – Requested maximum size in bytes for log transfer packets when the endpoint is contacted.
  • auto_start (bool | None) – Whether to auto-start the replication applier on (next and following) server starts.
  • adaptive_polling (bool | None) – If set to True, replication applier sleeps for an increasingly long period in case the logger server at the endpoint has no replication events to apply. Using adaptive polling reduces the amount of work done by both the applier and the logger server when there are infrequent changes. The downside is that it might take longer for the replication applier to detect new events.
  • include_system (bool | None) – Whether system collection operations are applied.
  • auto_resync (bool | None) – Whether the slave should perform a full automatic resynchronization with the master in case the master cannot serve log data requested by the slave, or when the replication is started and no tick value can be found.
  • auto_resync_retries (int | None) – Max number of resynchronization retries. Setting this to 0 disables it.
  • initial_sync_max_wait_time (int | None) – Max wait time in seconds the initial synchronization waits for master on collection data. This value is relevant even for continuous replication when auto_resync is set to True because this may re-start the initial synchronization when master cannot provide log data slave requires. This value is ignored if set to 0.
  • connection_retry_wait_time (int | None) – Time in seconds the applier idles before trying to connect to master in case of connection problems. This value is ignored if set to 0.
  • idle_min_wait_time (int | None) – Minimum wait time in seconds the applier idles before fetching more log data from the master in case the master has already sent all its log data. This wait time can be used to control the frequency with which the replication applier sends HTTP log fetch requests to the master in case there is no write activity on the master. This value is ignored if set to 0.
  • idle_max_wait_time (int | None) – Maximum wait time in seconds the applier idles before fetching more log data from the master in case the master has already sent all its log data. This wait time can be used to control the maximum frequency with which the replication applier sends HTTP log fetch requests to the master in case there is no write activity on the master. Applies only when argument adaptive_polling is set to True. This value is ignored if set to 0.
  • require_from_present (bool | None) – If set to True, replication applier checks at start whether the start tick from which it starts or resumes replication is still present on the master. If not, then there would be data loss. If set to True, the replication applier aborts with an appropriate error message. If set to False, the applier still starts and ignores the data loss.
  • verbose (bool | None) – If set to True, a log line is emitted for all operations performed by the replication applier. This should be used for debugging replication problems only.
  • restrict_type (str | None) – Optional string value for collection filtering. Allowed values are “include” or “exclude”.
  • restrict_collections ([str] | None) – Optional list of collections for use with argument restrict_type. If restrict_type set to “include”, only the specified collections are included. Otherwise, only the specified collections are excluded.
Returns:

Updated configuration.

Return type:

dict

Raises:

arango.exceptions.ReplicationApplierConfigSetError – If update fails.

applier_state() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Return the state of the replication applier

Returns:Applier state and details.
Return type:dict
Raises:arango.exceptions.ReplicationApplierStateError – If retrieval fails.
start_applier(last_tick: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Start the replication applier.

Parameters:last_tick (str) – The remote last log tick value from which to start applying replication. If not specified, the last saved tick from the previous applier run is used. If there is no previous applier state saved, the applier starts at the beginning of the logger server’s log.
Returns:Applier state and details.
Return type:dict
Raises:arango.exceptions.ReplicationApplierStartError – If operation fails.
stop_applier() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Stop the replication applier.

Returns:Applier state and details.
Return type:dict
Raises:arango.exceptions.ReplicationApplierStopError – If operation fails.
make_slave(endpoint: str, database: Optional[str] = None, username: Optional[str] = None, password: Optional[str] = None, restrict_type: Optional[str] = None, restrict_collections: Optional[Sequence[str]] = None, include_system: Optional[bool] = None, max_connect_retries: Optional[int] = None, connect_timeout: Optional[int] = None, request_timeout: Optional[int] = None, chunk_size: Optional[int] = None, adaptive_polling: Optional[bool] = None, auto_resync: Optional[bool] = None, auto_resync_retries: Optional[int] = None, initial_sync_max_wait_time: Optional[int] = None, connection_retry_wait_time: Optional[int] = None, idle_min_wait_time: Optional[int] = None, idle_max_wait_time: Optional[int] = None, require_from_present: Optional[bool] = None, verbose: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None][source]

Change the server role to slave.

Parameters:
  • endpoint (str) – Master endpoint (e.g. “tcp://192.168.173.13:8529”).
  • database (str | None) – Database name.
  • username (str | None) – Username.
  • password (str | None) – Password.
  • restrict_type (str | None) – Optional string value for collection filtering. Allowed values are “include” or “exclude”.
  • restrict_collections ([str] | None) – Optional list of collections for use with argument restrict_type. If restrict_type set to “include”, only the specified collections are included. Otherwise, only the specified collections are excluded.
  • include_system (bool | None) – Whether system collection operations are applied.
  • max_connect_retries (int | None) – Maximum number of connection attempts the applier makes in a row before stopping itself.
  • connect_timeout (int | None) – Timeout in seconds when attempting to connect to the endpoint. This value is used for each connection attempt.
  • request_timeout (int | None) – Timeout in seconds for individual requests to the endpoint.
  • chunk_size (int | None) – Requested maximum size in bytes for log transfer packets when the endpoint is contacted.
  • adaptive_polling (bool | None) – If set to True, replication applier sleeps for an increasingly long period in case the logger server at the endpoint has no replication events to apply. Using adaptive polling reduces the amount of work done by both the applier and the logger server when there are infrequent changes. The downside is that it might take longer for the replication applier to detect new events.
  • auto_resync (bool | None) – Whether the slave should perform a full automatic resynchronization with the master in case the master cannot serve log data requested by the slave, or when the replication is started and no tick value can be found.
  • auto_resync_retries (int | None) – Max number of resynchronization retries. Setting this to 0 disables it.
  • initial_sync_max_wait_time (int | None) – Max wait time in seconds the initial synchronization waits for master on collection data. This value is relevant even for continuous replication when auto_resync is set to True because this may restart the initial synchronization when master cannot provide log data slave requires. This value is ignored if set to 0.
  • connection_retry_wait_time (int | None) – Time in seconds the applier idles before trying to connect to master in case of connection problems. This value is ignored if set to 0.
  • idle_min_wait_time (int | None) – Minimum wait time in seconds the applier idles before fetching more log data from the master in case the master has already sent all its log data. This wait time can be used to control the frequency with which the replication applier sends HTTP log fetch requests to the master in case there is no write activity on the master. This value is ignored if set to 0.
  • idle_max_wait_time (int | None) – Maximum wait time in seconds the applier idles before fetching more log data from the master in case the master has already sent all its log data. This wait time can be used to control the maximum frequency with which the replication applier sends HTTP log fetch requests to the master in case there is no write activity on the master. Applies only when argument adaptive_polling is set to True. This value is ignored if set to 0.
  • require_from_present (bool | None) – If set to True, replication applier checks at start whether the start tick from which it starts or resumes replication is still present on the master. If not, then there would be data loss. If set to True, the replication applier aborts with an appropriate error message. If set to False, the applier still starts and ignores the data loss.
  • verbose (bool | None) – If set to True, a log line is emitted for all operations performed by the replication applier. This should be used for debugging replication problems only.
Returns:

Replication details.

Return type:

dict

Raises:

arango.exceptions.ReplicationApplierStopError – If operation fails.

server_id() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None][source]

Return this server’s ID.

Returns:Server ID.
Return type:str
Raises:arango.exceptions.ReplicationServerIDError – If retrieval fails.

Request

class arango.request.Request(method: str, endpoint: str, headers: Optional[MutableMapping[str, str]] = None, params: Optional[MutableMapping[str, Union[bool, int, str]]] = None, data: Any = None, read: Union[str, Sequence[str], None] = None, write: Union[str, Sequence[str], None] = None, exclusive: Union[str, Sequence[str], None] = None, deserialize: bool = True, driver_flags: Optional[List[str]] = None)[source]

HTTP request.

Parameters:
  • method (str) – HTTP method in lowercase (e.g. “post”).
  • endpoint (str) – API endpoint.
  • headers (dict | None) – Request headers.
  • params (dict | None) – URL parameters.
  • data (str | bool | int | float | list | dict | None | MultipartEncoder) – Request payload.
  • read (str | [str] | None) – Names of collections read during transaction.
  • write (str | [str] | None) – Name(s) of collections written to during transaction with shared access.
  • exclusive (str | [str] | None) – Name(s) of collections written to during transaction with exclusive access.
  • deserialize (bool) – Whether the response body can be deserialized.
  • driver_flags (list) – List of flags for the driver
Variables:
  • method (str) – HTTP method in lowercase (e.g. “post”).
  • endpoint (str) – API endpoint.
  • headers (dict | None) – Request headers.
  • params (dict | None) – URL (query) parameters.
  • data (str | bool | int | float | list | dict | None) – Request payload.
  • read (str | [str] | None) – Names of collections read during transaction.
  • write (str | [str] | None) – Name(s) of collections written to during transaction with shared access.
  • exclusive (str | [str] | None) – Name(s) of collections written to during transaction with exclusive access.
  • deserialize (bool) – Whether the response body can be deserialized.
  • driver_flags (list) – List of flags for the driver

Response

class arango.response.Response(method: str, url: str, headers: MutableMapping[str, str], status_code: int, status_text: str, raw_body: str)[source]

HTTP response.

Parameters:
  • method (str) – HTTP method in lowercase (e.g. “post”).
  • url (str) – API URL.
  • headers (MutableMapping) – Response headers.
  • status_code (int) – Response status code.
  • status_text (str) – Response status text.
  • raw_body (str) – Raw response body.
Variables:
  • method (str) – HTTP method in lowercase (e.g. “post”).
  • url (str) – API URL.
  • headers (MutableMapping) – Response headers.
  • status_code (int) – Response status code.
  • status_text (str) – Response status text.
  • raw_body (str) – Raw response body.
  • body (str | bool | int | float | list | dict | None) – JSON-deserialized response body.
  • error_code (int) – Error code from ArangoDB server.
  • error_message (str) – Error message from ArangoDB server.
  • is_success (bool) – True if response status code was 2XX.

StandardCollection

class arango.collection.StandardCollection(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], executor: Union[DefaultApiExecutor, AsyncApiExecutor, BatchApiExecutor, TransactionApiExecutor], name: str)[source]

Standard ArangoDB collection API wrapper.

get(document: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, allow_dirty_read: bool = False) → Union[Dict[str, Any], None, arango.job.AsyncJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]], arango.job.BatchJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]]][source]

Return a document.

Parameters:
  • document (str | dict) – Document ID, key or body. Document body must contain the “_id” or “_key” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Document, or None if not found.

Return type:

dict | None

Raises:
insert(document: Dict[str, Any], return_new: bool = False, sync: Optional[bool] = None, silent: bool = False, overwrite: bool = False, return_old: bool = False, overwrite_mode: Optional[str] = None, keep_none: Optional[bool] = None, merge: Optional[bool] = None) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Insert a new document.

Parameters:
  • document (dict) – Document to insert. If it contains the “_key” or “_id” field, the value is used as the key of the new document (otherwise it is auto-generated). Any “_rev” field is ignored.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • overwrite (bool) – If set to True, operation does not fail on duplicate key and existing document is overwritten (replace-insert).
  • return_old (bool) – Include body of the old document if overwritten. Ignored if parameter silent is set to True.
  • overwrite_mode (str | None) – Overwrite behavior used when the document key exists already. Allowed values are “replace” (replace-insert) or “update” (update-insert). Implicitly sets the value of parameter overwrite.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely. Applies only when overwrite_mode is set to “update” (update-insert).
  • merge (bool | None) – If set to True (default), sub-dictionaries are merged instead of the new one overwriting the old one. Applies only when overwrite_mode is set to “update” (update-insert).
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

update(document: Dict[str, Any], check_rev: bool = True, merge: bool = True, keep_none: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Update a document.

Parameters:
  • document (dict) – Partial or full document with the updated values. It must contain the “_id” or “_key” field.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • merge (bool | None) – If set to True, sub-dictionaries are merged instead of the new one overwriting the old one.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • return_old (bool) – Include body of the old document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
replace(document: Dict[str, Any], check_rev: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Replace a document.

Parameters:
  • document (dict) – New document to replace the old one with. It must contain the “_id” or “_key” field. Edge document must also have “_from” and “_to” fields.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • return_old (bool) – Include body of the old document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
delete(document: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, ignore_missing: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None][source]

Delete a document.

Parameters:
  • document (str | dict) – Document ID, key or body. Document body must contain the “_id” or “_key” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • ignore_missing (bool) – Do not raise an exception on missing document. This parameter has no effect in transactions where an exception is always raised on failures.
  • return_old (bool) – Include body of the old document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision), or True if parameter silent was set to True, or False if document was not found and ignore_missing was set to True (does not apply in transactions).

Return type:

bool | dict

Raises:
add_fulltext_index(fields: Sequence[str], min_length: Optional[int] = None, name: Optional[str] = None, in_background: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]
Create a new fulltext index. This method is deprecated
in ArangoDB 3.10 and will be removed in a future version of the driver.
Parameters:
  • fields ([str]) – Document fields to index.
  • min_length (int | None) – Minimum number of characters to index.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_geo_index(fields: Union[str, Sequence[str]], ordered: Optional[bool] = None, name: Optional[str] = None, in_background: Optional[bool] = None, legacyPolygons: Optional[bool] = False) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new geo-spatial index.

Parameters:
  • fields (str | [str]) – A single document field or a list of document fields. If a single field is given, the field must have values that are lists with at least two floats. Documents with missing fields or invalid values are excluded.
  • ordered (bool | None) – Whether the order is longitude, then latitude.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
  • legacyPolygons (bool | None) – Whether or not to use use the old, pre-3.10 rules for the parsing GeoJSON polygons
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_hash_index(fields: Sequence[str], unique: Optional[bool] = None, sparse: Optional[bool] = None, deduplicate: Optional[bool] = None, name: Optional[str] = None, in_background: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new hash index.

Parameters:
  • fields ([str]) – Document fields to index.
  • unique (bool | None) – Whether the index is unique.
  • sparse (bool | None) – If set to True, documents with None in the field are also indexed. If set to False, they are skipped.
  • deduplicate (bool | None) – If set to True, inserting duplicate index values from the same document triggers unique constraint errors.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_inverted_index(fields: Dict[str, Any], name: Optional[str] = None, inBackground: Optional[bool] = None, parallelism: Optional[int] = None, primarySort: Optional[Dict[str, Any]] = None, storedValues: Optional[Sequence[Dict[str, Any]]] = None, analyzer: Optional[str] = None, features: Optional[Sequence[str]] = None, includeAllFields: Optional[bool] = None, trackListPositions: Optional[bool] = None, searchField: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new inverted index, introduced in version 3.10.

Parameters:
  • fields (Json) – Document fields to index.
  • name (str | None) – Optional name for the index.
  • inBackground (bool | None) – Do not hold the collection lock.
  • parallelism (int | None) –
  • primarySort (Json | None) –
  • storedValues (Sequence[Json] | None) –
  • analyzer (str | None) –
  • features (Sequence[str] | None) –
  • includeAllFields (bool | None) –
  • trackListPositions (bool | None) –
  • searchField (bool | None) –
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_persistent_index(fields: Sequence[str], unique: Optional[bool] = None, sparse: Optional[bool] = None, name: Optional[str] = None, in_background: Optional[bool] = None, storedValues: Optional[Sequence[str]] = None, cacheEnabled: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new persistent index.

Unique persistent indexes on non-sharded keys are not supported in a cluster.

Parameters:
  • fields ([str]) – Document fields to index.
  • unique (bool | None) – Whether the index is unique.
  • sparse (bool | None) – Exclude documents that do not contain at least one of the indexed fields, or documents that have a value of None in any of the indexed fields.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
  • storedValues ([str]) – Additional attributes to include in a persistent index. These additional attributes cannot be used for index lookups or sorts, but they can be used for projections. Must be an array of index attribute paths. There must be no overlap of attribute paths between fields and storedValues. The maximum number of values is 32.
  • cacheEnabled (bool | None) – Enable an in-memory cache for index values for persistent indexes.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_skiplist_index(fields: Sequence[str], unique: Optional[bool] = None, sparse: Optional[bool] = None, deduplicate: Optional[bool] = None, name: Optional[str] = None, in_background: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new skiplist index.

Parameters:
  • fields ([str]) – Document fields to index.
  • unique (bool | None) – Whether the index is unique.
  • sparse (bool | None) – If set to True, documents with None in the field are also indexed. If set to False, they are skipped.
  • deduplicate (bool | None) – If set to True, inserting duplicate index values from the same document triggers unique constraint errors.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

add_ttl_index(fields: Sequence[str], expiry_time: int, name: Optional[str] = None, in_background: Optional[bool] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new TTL (time-to-live) index.

Parameters:
  • fields ([str]) – Document field to index.
  • expiry_time (int) – Time of expiry in seconds after document creation.
  • name (str | None) – Optional name for the index.
  • in_background (bool | None) – Do not hold the collection lock.
Returns:

New index details.

Return type:

dict

Raises:

arango.exceptions.IndexCreateError – If create fails.

all(skip: Optional[int] = None, limit: Optional[int] = None) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None]

Return all documents in the collection.

Parameters:
  • skip (int | None) – Number of documents to skip.
  • limit (int | None) – Max number of documents returned.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

checksum(with_rev: bool = False, with_data: bool = False) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return collection checksum.

Parameters:
  • with_rev (bool) – Include document revisions in checksum calculation.
  • with_data (bool) – Include document data in checksum calculation.
Returns:

Collection checksum.

Return type:

str

Raises:

arango.exceptions.CollectionChecksumError – If retrieval fails.

configure(sync: Optional[bool] = None, schema: Optional[Dict[str, Any]] = None, replication_factor: Optional[int] = None, write_concern: Optional[int] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Configure collection properties.

Parameters:
  • sync (bool | None) – Block until operations are synchronized to disk.
  • schema (dict) – document schema for validation of objects.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
Returns:

New collection properties.

Return type:

dict

Raises:

arango.exceptions.CollectionConfigureError – If operation fails.

conn

Return the HTTP connection.

Returns:HTTP connection.
Return type:arango.connection.BasicConnection | arango.connection.JwtConnection | arango.connection.JwtSuperuserConnection
context

Return the API execution context.

Returns:API execution context. Possible values are “default”, “async”, “batch” and “transaction”.
Return type:str
count() → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None]

Return the total document count.

Returns:Total document count.
Return type:int
Raises:arango.exceptions.DocumentCountError – If retrieval fails.
db_name

Return the name of the current database.

Returns:Database name.
Return type:str
delete_index(index_id: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete an index.

Parameters:
  • index_id (str) – Index ID.
  • ignore_missing (bool) – Do not raise an exception on missing index.
Returns:

True if index was deleted successfully, False if index was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.IndexDeleteError – If delete fails.

delete_many(documents: Sequence[Dict[str, Any]], return_old: bool = False, check_rev: bool = True, sync: Optional[bool] = None, silent: bool = False) → Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]], arango.job.AsyncJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], arango.job.BatchJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], None]

Delete multiple documents.

Note

If deleting a document fails, the exception is not raised but returned as an object in the result list. It is up to you to inspect the list to determine which documents were deleted successfully (returns document metadata) and which were not (returns exception object).

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single delete operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([str | dict]) – Document IDs, keys or bodies. Document bodies must contain the “_id” or “_key” fields.
  • return_old (bool) – Include bodies of the old documents in the result.
  • check_rev (bool) – If set to True, revisions of documents (if given) are compared against the revisions of target documents.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

List of document metadata (e.g. document keys, revisions) and any exceptions, or True if parameter silent was set to True.

Return type:

[dict | ArangoServerError] | bool

Raises:

arango.exceptions.DocumentDeleteError – If delete fails.

delete_match(filters: Dict[str, Any], limit: Optional[int] = None, sync: Optional[bool] = None) → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None]

Delete matching documents.

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single delete operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • filters (dict) – Document filters.
  • limit (int | None) – Max number of documents to delete. If the limit is lower than the number of matched documents, random documents are chosen.
  • sync (bool | None) – Block until operation is synchronized to disk.
Returns:

Number of documents deleted.

Return type:

int

Raises:

arango.exceptions.DocumentDeleteError – If delete fails.

find(filters: Dict[str, Any], skip: Optional[int] = None, limit: Optional[int] = None) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None]

Return all documents that match the given filters.

Parameters:
  • filters (dict) – Document filters.
  • skip (int | None) – Number of documents to skip.
  • limit (int | None) – Max number of documents returned.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_by_text(field: str, query: str, limit: Optional[int] = None, allow_dirty_read: bool = False) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None]

Return documents that match the given fulltext query.

Parameters:
  • field (str) – Document field with fulltext index.
  • query (str) – Fulltext query.
  • limit (int | None) – Max number of documents returned.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_in_box(latitude1: numbers.Number, longitude1: numbers.Number, latitude2: numbers.Number, longitude2: numbers.Number, skip: Optional[int] = None, limit: Optional[int] = None, index: Optional[str] = None) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None]

Return all documents in an rectangular area.

Parameters:
  • latitude1 (int | float) – First latitude.
  • longitude1 (int | float) – First longitude.
  • latitude2 (int | float) – Second latitude.
  • longitude2 (int | float) – Second longitude
  • skip (int | None) – Number of documents to skip.
  • limit (int | None) – Max number of documents returned.
  • index (str | None) – ID of the geo index to use (without the collection prefix). This parameter is ignored in transactions.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_in_radius(latitude: numbers.Number, longitude: numbers.Number, radius: numbers.Number, distance_field: Optional[str] = None, allow_dirty_read: bool = False) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None]

Return documents within a given radius around a coordinate.

A geo index must be defined in the collection to use this method.

Parameters:
  • latitude (int | float) – Latitude.
  • longitude (int | float) – Longitude.
  • radius (int | float) – Max radius.
  • distance_field (str) – Document field used to indicate the distance to the given coordinate. This parameter is ignored in transactions.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_in_range(field: str, lower: int, upper: int, skip: Optional[int] = None, limit: Optional[int] = None, allow_dirty_read: bool = False) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None]

Return documents within a given range in a random order.

A skiplist index must be defined in the collection to use this method.

Parameters:
  • field (str) – Document field name.
  • lower (int) – Lower bound (inclusive).
  • upper (int) – Upper bound (exclusive).
  • skip (int | None) – Number of documents to skip.
  • limit (int | None) – Max number of documents returned.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

find_near(latitude: numbers.Number, longitude: numbers.Number, limit: Optional[int] = None, allow_dirty_read: bool = False) → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None]

Return documents near a given coordinate.

Documents returned are sorted according to distance, with the nearest document being the first. If there are documents of equal distance, they are randomly chosen from the set until the limit is reached. A geo index must be defined in the collection to use this method.

Parameters:
  • latitude (int | float) – Latitude.
  • longitude (int | float) – Longitude.
  • limit (int | None) – Max number of documents returned.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Document cursor.

Return type:

arango.cursor.Cursor

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

get_many(documents: Sequence[Union[str, Dict[str, Any]]], allow_dirty_read: bool = False) → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return multiple documents ignoring any missing ones.

Parameters:
  • documents ([str | dict]) – List of document keys, IDs or bodies. Document bodies must contain the “_id” or “_key” fields.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Documents. Missing ones are not included.

Return type:

[dict]

Raises:

arango.exceptions.DocumentGetError – If retrieval fails.

has(document: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, allow_dirty_read: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a document exists in the collection.

Parameters:
  • document (str | dict) – Document ID, key or body. Document body must contain the “_id” or “_key” field.
  • rev (str | None) – Expected document revision. Overrides value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

True if document exists, False otherwise.

Return type:

bool

Raises:
ids() → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None]

Return the IDs of all documents in the collection.

Returns:Document ID cursor.
Return type:arango.cursor.Cursor
Raises:arango.exceptions.DocumentIDsError – If retrieval fails.
import_bulk(documents: Sequence[Dict[str, Any]], halt_on_error: bool = True, details: bool = True, from_prefix: Optional[str] = None, to_prefix: Optional[str] = None, overwrite: Optional[bool] = None, on_duplicate: Optional[str] = None, sync: Optional[bool] = None, batch_size: Optional[int] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None, List[Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]]]

Insert multiple documents into the collection.

Note

This method is faster than arango.collection.Collection.insert_many() but does not return as many details.

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single insert operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([dict]) – List of new documents to insert. If they contain the “_key” or “_id” fields, the values are used as the keys of the new documents (auto-generated otherwise). Any “_rev” field is ignored.
  • halt_on_error (bool) – Halt the entire import on an error.
  • details (bool) – If set to True, the returned result will include an additional list of detailed error messages.
  • from_prefix (str) – String prefix prepended to the value of “_from” field in each edge document inserted. For example, prefix “foo” prepended to “_from”: “bar” will result in “_from”: “foo/bar”. Applies only to edge collections.
  • to_prefix (str) – String prefix prepended to the value of “_to” field in edge document inserted. For example, prefix “foo” prepended to “_to”: “bar” will result in “_to”: “foo/bar”. Applies only to edge collections.
  • overwrite (bool) – If set to True, all existing documents are removed prior to the import. Indexes are still preserved.
  • on_duplicate (str) – Action to take on unique key constraint violations (for documents with “_key” fields). Allowed values are “error” (do not import the new documents and count them as errors), “update” (update the existing documents while preserving any fields missing in the new ones), “replace” (replace the existing documents with new ones), and “ignore” (do not import the new documents and count them as ignored, as opposed to counting them as errors). Options “update” and “replace” may fail on secondary unique key constraint violations.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • batch_size (int) – Split up documents into batches of max length batch_size and import them in a loop on the client side. If batch_size is specified, the return type of this method changes from a result object to a list of result objects. IMPORTANT NOTE: this parameter may go through breaking changes in the future where the return type may not be a list of result objects anymore. Use it at your own risk, and avoid depending on the return value if possible. Cannot be used with parameter overwrite.
Returns:

Result of the bulk import.

Return type:

dict | list[dict]

Raises:

arango.exceptions.DocumentInsertError – If import fails.

indexes() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return the collection indexes.

Returns:Collection indexes.
Return type:[dict]
Raises:arango.exceptions.IndexListError – If retrieval fails.
insert_many(documents: Sequence[Dict[str, Any]], return_new: bool = False, sync: Optional[bool] = None, silent: bool = False, overwrite: bool = False, return_old: bool = False, overwrite_mode: Optional[str] = None, keep_none: Optional[bool] = None, merge: Optional[bool] = None) → Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]], arango.job.AsyncJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], arango.job.BatchJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], None]

Insert multiple documents.

Note

If inserting a document fails, the exception is not raised but returned as an object in the result list. It is up to you to inspect the list to determine which documents were inserted successfully (returns document metadata) and which were not (returns exception object).

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single insert operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([dict]) – List of new documents to insert. If they contain the “_key” or “_id” fields, the values are used as the keys of the new documents (auto-generated otherwise). Any “_rev” field is ignored.
  • return_new (bool) – Include bodies of the new documents in the returned metadata. Ignored if parameter silent is set to True
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • overwrite (bool) – If set to True, operation does not fail on duplicate keys and the existing documents are replaced.
  • return_old (bool) – Include body of the old documents if replaced. Applies only when value of overwrite is set to True.
  • overwrite_mode (str | None) – Overwrite behavior used when the document key exists already. Allowed values are “replace” (replace-insert), “update” (update-insert), “ignore” or “conflict”. Implicitly sets the value of parameter overwrite.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely. Applies only when overwrite_mode is set to “update” (update-insert).
  • merge (bool | None) – If set to True (default), sub-dictionaries are merged instead of the new one overwriting the old one. Applies only when overwrite_mode is set to “update” (update-insert).
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Returns:

List of document metadata (e.g. document keys, revisions) and any exception, or True if parameter silent was set to True.

Return type:

[dict | ArangoServerError] | bool

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

keys() → Union[arango.cursor.Cursor, arango.job.AsyncJob[arango.cursor.Cursor][arango.cursor.Cursor], arango.job.BatchJob[arango.cursor.Cursor][arango.cursor.Cursor], None]

Return the keys of all documents in the collection.

Returns:Document key cursor.
Return type:arango.cursor.Cursor
Raises:arango.exceptions.DocumentKeysError – If retrieval fails.
load() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Load the collection into memory.

Returns:True if collection was loaded successfully.
Return type:bool
Raises:arango.exceptions.CollectionLoadError – If operation fails.
load_indexes() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Cache all indexes in the collection into memory.

Returns:True if index was loaded successfully.
Return type:bool
Raises:arango.exceptions.IndexLoadError – If operation fails.
name

Return collection name.

Returns:Collection name.
Return type:str
properties() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return collection properties.

Returns:Collection properties.
Return type:dict
Raises:arango.exceptions.CollectionPropertiesError – If retrieval fails.
random() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return a random document from the collection.

Returns:A random document.
Return type:dict
Raises:arango.exceptions.DocumentGetError – If retrieval fails.
recalculate_count() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Recalculate the document count.

Returns:True if recalculation was successful.
Return type:bool
Raises:arango.exceptions.CollectionRecalculateCountError – If operation fails.
rename(new_name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Rename the collection.

Renames may not be reflected immediately in async execution, batch execution or transactions. It is recommended to initialize new API wrappers after a rename.

Parameters:new_name (str) – New collection name.
Returns:True if collection was renamed successfully.
Return type:bool
Raises:arango.exceptions.CollectionRenameError – If rename fails.
replace_many(documents: Sequence[Dict[str, Any]], check_rev: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]], arango.job.AsyncJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], arango.job.BatchJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], None]

Replace multiple documents.

Note

If replacing a document fails, the exception is not raised but returned as an object in the result list. It is up to you to inspect the list to determine which documents were replaced successfully (returns document metadata) and which were not (returns exception object).

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single replace operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([dict]) – New documents to replace the old ones with. They must contain the “_id” or “_key” fields. Edge documents must also have “_from” and “_to” fields.
  • check_rev (bool) – If set to True, revisions of documents (if given) are compared against the revisions of target documents.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • return_old (bool) – Include body of the old document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

List of document metadata (e.g. document keys, revisions) and any exceptions, or True if parameter silent was set to True.

Return type:

[dict | ArangoServerError] | bool

Raises:

arango.exceptions.DocumentReplaceError – If replace fails.

replace_match(filters: Dict[str, Any], body: Dict[str, Any], limit: Optional[int] = None, sync: Optional[bool] = None) → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None]

Replace matching documents.

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single replace operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • filters (dict) – Document filters.
  • body (dict) – New document body.
  • limit (int | None) – Max number of documents to replace. If the limit is lower than the number of matched documents, random documents are chosen.
  • sync (bool | None) – Block until operation is synchronized to disk.
Returns:

Number of documents replaced.

Return type:

int

Raises:

arango.exceptions.DocumentReplaceError – If replace fails.

responsible_shard(document: Dict[str, Any]) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return the ID of the shard responsible for given document.

If the document does not exist, return the shard that would be responsible.

Returns:Shard ID
Return type:str
revision() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return collection revision.

Returns:Collection revision.
Return type:str
Raises:arango.exceptions.CollectionRevisionError – If retrieval fails.
statistics() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return collection statistics.

Returns:Collection statistics.
Return type:dict
Raises:arango.exceptions.CollectionStatisticsError – If retrieval fails.
truncate() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete all documents in the collection.

Returns:True if collection was truncated successfully.
Return type:bool
Raises:arango.exceptions.CollectionTruncateError – If operation fails.
unload() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Unload the collection from memory.

Returns:True if collection was unloaded successfully.
Return type:bool
Raises:arango.exceptions.CollectionUnloadError – If operation fails.
update_many(documents: Sequence[Dict[str, Any]], check_rev: bool = True, merge: bool = True, keep_none: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]], arango.job.AsyncJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], arango.job.BatchJob[typing.Union[bool, typing.List[typing.Union[typing.Dict[str, typing.Any], arango.exceptions.ArangoServerError]]]][Union[bool, List[Union[Dict[str, Any], arango.exceptions.ArangoServerError]]]], None]

Update multiple documents.

Note

If updating a document fails, the exception is not raised but returned as an object in the result list. It is up to you to inspect the list to determine which documents were updated successfully (returns document metadata) and which were not (returns exception object).

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single update operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • documents ([dict]) – Partial or full documents with the updated values. They must contain the “_id” or “_key” fields.
  • check_rev (bool) – If set to True, revisions of documents (if given) are compared against the revisions of target documents.
  • merge (bool | None) – If set to True, sub-dictionaries are merged instead of the new ones overwriting the old ones.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • return_old (bool) – Include body of the old document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

List of document metadata (e.g. document keys, revisions) and any exceptions, or True if parameter silent was set to True.

Return type:

[dict | ArangoError] | bool

Raises:

arango.exceptions.DocumentUpdateError – If update fails.

update_match(filters: Dict[str, Any], body: Dict[str, Any], limit: Optional[int] = None, keep_none: bool = True, sync: Optional[bool] = None, merge: bool = True) → Union[int, arango.job.AsyncJob[int][int], arango.job.BatchJob[int][int], None]

Update matching documents.

Note

In edge/vertex collections, this method does NOT provide the transactional guarantees and validations that single update operation does for graphs. If these properties are required, see arango.database.StandardDatabase.begin_batch_execution() for an alternative approach.

Parameters:
  • filters (dict) – Document filters.
  • body (dict) – Full or partial document body with the updates.
  • limit (int | None) – Max number of documents to update. If the limit is lower than the number of matched documents, random documents are chosen. This parameter is not supported on sharded collections.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • merge (bool | None) – If set to True, sub-dictionaries are merged instead of the new ones overwriting the old ones.
Returns:

Number of documents updated.

Return type:

int

Raises:

arango.exceptions.DocumentUpdateError – If update fails.

username

Return the username.

Returns:Username.
Return type:str

StandardDatabase

class arango.database.StandardDatabase(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection])[source]

Standard database API wrapper.

begin_async_execution(return_result: bool = True) → arango.database.AsyncDatabase[source]

Begin async execution.

Parameters:return_result (bool) – If set to True, API executions return instances of arango.job.AsyncJob, which you can use to retrieve results from server once available. If set to False, API executions return None and no results are stored on server.
Returns:Database API wrapper object specifically for async execution.
Return type:arango.database.AsyncDatabase
begin_batch_execution(return_result: bool = True) → arango.database.BatchDatabase[source]

Begin batch execution.

Parameters:return_result (bool) – If set to True, API executions return instances of arango.job.BatchJob that are populated with results on commit. If set to False, API executions return None and no results are tracked client-side.
Returns:Database API wrapper object specifically for batch execution.
Return type:arango.database.BatchDatabase
begin_transaction(read: Union[str, Sequence[str], None] = None, write: Union[str, Sequence[str], None] = None, exclusive: Union[str, Sequence[str], None] = None, sync: Optional[bool] = None, allow_implicit: Optional[bool] = None, lock_timeout: Optional[int] = None, max_size: Optional[int] = None) → arango.database.TransactionDatabase[source]

Begin a transaction.

Parameters:
  • read (str | [str] | None) – Name(s) of collections read during transaction. Read-only collections are added lazily but should be declared if possible to avoid deadlocks.
  • write (str | [str] | None) – Name(s) of collections written to during transaction with shared access.
  • exclusive (str | [str] | None) – Name(s) of collections written to during transaction with exclusive access.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • allow_implicit (bool | None) – Allow reading from undeclared collections.
  • lock_timeout (int | None) – Timeout for waiting on collection locks. If not given, a default value is used. Setting it to 0 disables the timeout.
  • max_size (int | None) – Max transaction size in bytes.
Returns:

Database API wrapper object specifically for transactions.

Return type:

arango.database.TransactionDatabase

analyzer(name: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return analyzer details.

Parameters:name (str) – Analyzer name.
Returns:Analyzer details.
Return type:dict
Raises:arango.exceptions.AnalyzerGetError – If retrieval fails.
analyzers() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return list of analyzers.

Returns:List of analyzers.
Return type:[dict]
Raises:arango.exceptions.AnalyzerListError – If retrieval fails.
aql

Return AQL (ArangoDB Query Language) API wrapper.

Returns:AQL API wrapper.
Return type:arango.aql.AQL
async_jobs(status: str, count: Optional[int] = None) → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None]

Return IDs of async jobs with given status.

Parameters:
  • status (str) – Job status (e.g. “pending”, “done”).
  • count (int) – Max number of job IDs to return.
Returns:

List of job IDs.

Return type:

[str]

Raises:

arango.exceptions.AsyncJobListError – If retrieval fails.

backup

Return Backup API wrapper.

Returns:Backup API wrapper.
Return type:arango.backup.Backup
clear_async_jobs(threshold: Optional[int] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Clear async job results from the server.

Async jobs that are still queued or running are not stopped.

Parameters:threshold (int | None) – If specified, only the job results created prior to the threshold (a unix timestamp) are deleted. Otherwise, all job results are deleted.
Returns:True if job results were cleared successfully.
Return type:bool
Raises:arango.exceptions.AsyncJobClearError – If operation fails.
cluster

Return Cluster API wrapper.

Returns:Cluster API wrapper.
Return type:arango.cluster.Cluster
collection(name: str) → arango.collection.StandardCollection

Return the standard collection API wrapper.

Parameters:name (str) – Collection name.
Returns:Standard collection API wrapper.
Return type:arango.collection.StandardCollection
collections() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return the collections in the database.

Returns:Collections in the database and their details.
Return type:[dict]
Raises:arango.exceptions.CollectionListError – If retrieval fails.
conn

Return the HTTP connection.

Returns:HTTP connection.
Return type:arango.connection.BasicConnection | arango.connection.JwtConnection | arango.connection.JwtSuperuserConnection
context

Return the API execution context.

Returns:API execution context. Possible values are “default”, “async”, “batch” and “transaction”.
Return type:str
create_analyzer(name: str, analyzer_type: str, properties: Optional[Dict[str, Any]] = None, features: Optional[Sequence[str]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create an analyzer.

Parameters:
  • name (str) – Analyzer name.
  • analyzer_type (str) – Analyzer type.
  • properties (dict | None) – Analyzer properties.
  • features (list | None) – Analyzer features.
Returns:

Analyzer details.

Return type:

dict

Raises:

arango.exceptions.AnalyzerCreateError – If create fails.

create_arangosearch_view(name: str, properties: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewCreateError – If create fails.

create_collection(name: str, sync: bool = False, system: bool = False, edge: bool = False, user_keys: bool = True, key_increment: Optional[int] = None, key_offset: Optional[int] = None, key_generator: str = 'traditional', shard_fields: Optional[Sequence[str]] = None, shard_count: Optional[int] = None, replication_factor: Optional[int] = None, shard_like: Optional[str] = None, sync_replication: Optional[bool] = None, enforce_replication_factor: Optional[bool] = None, sharding_strategy: Optional[str] = None, smart_join_attribute: Optional[str] = None, write_concern: Optional[int] = None, schema: Optional[Dict[str, Any]] = None, computedValues: Optional[List[Dict[str, Any]]] = None) → Union[arango.collection.StandardCollection, arango.job.AsyncJob[arango.collection.StandardCollection][arango.collection.StandardCollection], arango.job.BatchJob[arango.collection.StandardCollection][arango.collection.StandardCollection], None]

Create a new collection.

Parameters:
  • name (str) – Collection name.
  • sync (bool | None) – If set to True, document operations via the collection will block until synchronized to disk by default.
  • system (bool) – If set to True, a system collection is created. The collection name must have leading underscore “_” character.
  • edge (bool) – If set to True, an edge collection is created.
  • key_generator (str) – Used for generating document keys. Allowed values are “traditional” or “autoincrement”.
  • user_keys (bool) – If set to True, users are allowed to supply document keys. If set to False, the key generator is solely responsible for supplying the key values.
  • key_increment (int) – Key increment value. Applies only when value of key_generator is set to “autoincrement”.
  • key_offset (int) – Key offset value. Applies only when value of key_generator is set to “autoincrement”.
  • shard_fields ([str]) – Field(s) used to determine the target shard.
  • shard_count (int) – Number of shards to create.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • shard_like (str) – Name of prototype collection whose sharding specifics are imitated. Prototype collections cannot be dropped before imitating collections. Applies to enterprise version of ArangoDB only.
  • sync_replication (bool) – If set to True, server reports success only when collection is created in all replicas. You can set this to False for faster server response, and if full replication is not a concern.
  • enforce_replication_factor (bool) – Check if there are enough replicas available at creation time, or halt the operation.
  • sharding_strategy (str) – Sharding strategy. Available for ArangoDB version and up only. Possible values are “community-compat”, “enterprise-compat”, “enterprise-smart-edge-compat”, “hash” and “enterprise-hash-smart-edge”. Refer to ArangoDB documentation for more details on each value.
  • smart_join_attribute (str) – Attribute of the collection which must contain the shard key value of the smart join collection. The shard key for the documents must contain the value of this attribute, followed by a colon “:” and the primary key of the document. Requires parameter shard_like to be set to the name of another collection, and parameter shard_fields to be set to a single shard key attribute, with another colon “:” at the end. Available only for enterprise version of ArangoDB.
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
  • schema (dict) – Optional dict specifying the collection level schema for documents. See ArangoDB documentation for more information on document schema validation.
  • computedValues (list) – Array of computed values for the new collection enabling default values to new documents or the maintenance of auxiliary attributes for search queries. Available in ArangoDB version 3.10 or greater. See ArangoDB documentation for more information on computed values.
Returns:

Standard collection API wrapper.

Return type:

arango.collection.StandardCollection

Raises:

arango.exceptions.CollectionCreateError – If create fails.

create_database(name: str, users: Optional[Sequence[Dict[str, Any]]] = None, replication_factor: Union[int, str, None] = None, write_concern: Optional[int] = None, sharding: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Create a new database.

Parameters:
  • name (str) – Database name.
  • users ([dict]) – List of users with access to the new database, where each user is a dictionary with fields “username”, “password”, “active” and “extra” (see below for example). If not set, only the admin and current user are granted access.
  • replication_factor (int | str) – Default replication factor for collections created in this database. Special values include “satellite” which replicates the collection to every DBServer, and 1 which disables replication. Used for clusters only.
  • write_concern (int) – Default write concern for collections created in this database. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time, however. Value of this parameter can not be larger than the value of replication_factor. Used for clusters only.
  • sharding (str) – Sharding method used for new collections in this database. Allowed values are: “”, “flexible” and “single”. The first two are equivalent. Used for clusters only.
Returns:

True if database was created successfully.

Return type:

bool

Raises:

arango.exceptions.DatabaseCreateError – If create fails.

Here is an example entry for parameter users:

{
    'username': 'john',
    'password': 'password',
    'active': True,
    'extra': {'Department': 'IT'}
}
create_graph(name: str, edge_definitions: Optional[Sequence[Dict[str, Any]]] = None, orphan_collections: Optional[Sequence[str]] = None, smart: Optional[bool] = None, disjoint: Optional[bool] = None, smart_field: Optional[str] = None, shard_count: Optional[int] = None, replication_factor: Optional[int] = None, write_concern: Optional[int] = None) → Union[arango.graph.Graph, arango.job.AsyncJob[arango.graph.Graph][arango.graph.Graph], arango.job.BatchJob[arango.graph.Graph][arango.graph.Graph], None]

Create a new graph.

Parameters:
  • name (str) – Graph name.
  • edge_definitions ([dict] | None) – List of edge definitions, where each edge definition entry is a dictionary with fields “edge_collection”, “from_vertex_collections” and “to_vertex_collections” (see below for example).
  • orphan_collections ([str] | None) – Names of additional vertex collections that are not in edge definitions.
  • smart (bool | None) – If set to True, sharding is enabled (see parameter smart_field below). Applies only to enterprise version of ArangoDB.
  • disjoint (bool | None) – If set to True, create a disjoint SmartGraph instead of a regular SmartGraph. Applies only to enterprise version of ArangoDB.
  • smart_field (str | None) – Document field used to shard the vertices of the graph. To use this, parameter smart must be set to True and every vertex in the graph must have the smart field. Applies only to enterprise version of ArangoDB.
  • shard_count (int | None) – Number of shards used for every collection in the graph. To use this, parameter smart must be set to True and every vertex in the graph must have the smart field. This number cannot be modified later once set. Applies only to enterprise version of ArangoDB.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
Returns:

Graph API wrapper.

Return type:

arango.graph.Graph

Raises:

arango.exceptions.GraphCreateError – If create fails.

Here is an example entry for parameter edge_definitions:

[
    {
        'edge_collection': 'teach',
        'from_vertex_collections': ['teachers'],
        'to_vertex_collections': ['lectures']
    }
]
create_task(name: str, command: str, params: Optional[Dict[str, Any]] = None, period: Optional[int] = None, offset: Optional[int] = None, task_id: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new server task.

Parameters:
  • name (str) – Name of the server task.
  • command (str) – Javascript command to execute.
  • params (dict | None) – Optional parameters passed into the Javascript command.
  • period (int | None) – Number of seconds to wait between executions. If set to 0, the new task will be “timed”, meaning it will execute only once and be deleted afterwards.
  • offset (int | None) – Initial delay before execution in seconds.
  • task_id (str | None) – Pre-defined ID for the new server task.
Returns:

Details of the new task.

Return type:

dict

Raises:

arango.exceptions.TaskCreateError – If create fails.

create_user(username: str, password: Optional[str] = None, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new user.

Parameters:
  • username (str) – Username.
  • password (str | None) – Password.
  • active (bool | None) – True if user is active, False otherwise.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserCreateError – If create fails.

create_view(name: str, view_type: str, properties: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewCreateError – If create fails.

databases() → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None]

Return the names all databases.

Returns:Database names.
Return type:[str]
Raises:arango.exceptions.DatabaseListError – If retrieval fails.
db_name

Return the name of the current database.

Returns:Database name.
Return type:str
delete_analyzer(name: str, force: bool = False, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete an analyzer.

Parameters:
  • name (str) – Analyzer name.
  • force (bool) – Remove the analyzer configuration even if in use.
  • ignore_missing (bool) – Do not raise an exception on missing analyzer.
Returns:

True if analyzer was deleted successfully, False if analyzer was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.AnalyzerDeleteError – If delete fails.

delete_collection(name: str, ignore_missing: bool = False, system: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete the collection.

Parameters:
  • name (str) – Collection name.
  • ignore_missing (bool) – Do not raise an exception on missing collection.
  • system (bool) – Whether the collection is a system collection.
Returns:

True if collection was deleted successfully, False if collection was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.CollectionDeleteError – If delete fails.

delete_database(name: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete the database.

Parameters:
  • name (str) – Database name.
  • ignore_missing (bool) – Do not raise an exception on missing database.
Returns:

True if database was deleted successfully, False if database was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.DatabaseDeleteError – If delete fails.

delete_document(document: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, ignore_missing: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Delete a document.

Parameters:
  • document (str | dict) – Document ID, key or body. Document body must contain the “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • ignore_missing (bool) – Do not raise an exception on missing document. This parameter has no effect in transactions where an exception is always raised on failures.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision), or True if parameter silent was set to True, or False if document was not found and ignore_missing was set to True (does not apply in transactions).

Return type:

bool | dict

Raises:
delete_graph(name: str, ignore_missing: bool = False, drop_collections: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Drop the graph of the given name from the database.

Parameters:
  • name (str) – Graph name.
  • ignore_missing (bool) – Do not raise an exception on missing graph.
  • drop_collections (bool | None) – Drop the collections of the graph also. This is only if they are not in use by other graphs.
Returns:

True if graph was deleted successfully, False if graph was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.GraphDeleteError – If delete fails.

delete_task(task_id: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a server task.

Parameters:
  • task_id (str) – Server task ID.
  • ignore_missing (bool) – Do not raise an exception on missing task.
Returns:

True if task was successfully deleted, False if task was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.TaskDeleteError – If delete fails.

delete_user(username: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a user.

Parameters:
  • username (str) – Username.
  • ignore_missing (bool) – Do not raise an exception on missing user.
Returns:

True if user was deleted successfully, False if user was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.UserDeleteError – If delete fails.

delete_view(name: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a view.

Parameters:
  • name (str) – View name.
  • ignore_missing (bool) – Do not raise an exception on missing view.
Returns:

True if view was deleted successfully, False if view was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.ViewDeleteError – If delete fails.

details() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return ArangoDB server details.

Returns:Server details.
Return type:dict
Raises:arango.exceptions.ServerDetailsError – If retrieval fails.
document(document: Dict[str, Any], rev: Optional[str] = None, check_rev: bool = True) → Union[Dict[str, Any], None, arango.job.AsyncJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]], arango.job.BatchJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]]]

Return a document.

Parameters:
  • document (str | dict) – Document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
Returns:

Document, or None if not found.

Return type:

dict | None

Raises:
echo() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return details of the last request (e.g. headers, payload).

Returns:Details of the last request.
Return type:dict
Raises:arango.exceptions.ServerEchoError – If retrieval fails.
encryption() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Rotate the user-supplied keys for encryption.

This method is available only for enterprise edition of ArangoDB.

Returns:New TLS data.
Return type:dict
Raises:arango.exceptions.ServerEncryptionError – If retrieval fails.
engine() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return the database engine details.

Returns:Database engine details.
Return type:dict
Raises:arango.exceptions.ServerEngineError – If retrieval fails.
execute_transaction(command: str, params: Optional[Dict[str, Any]] = None, read: Optional[Sequence[str]] = None, write: Optional[Sequence[str]] = None, sync: Optional[bool] = None, timeout: Optional[numbers.Number] = None, max_size: Optional[int] = None, allow_implicit: Optional[bool] = None, intermediate_commit_count: Optional[int] = None, intermediate_commit_size: Optional[int] = None, allow_dirty_read: bool = False) → Union[Any, arango.job.AsyncJob[typing.Any][Any], arango.job.BatchJob[typing.Any][Any], None]

Execute raw Javascript command in transaction.

Parameters:
  • command (str) – Javascript command to execute.
  • read ([str] | None) – Names of collections read during transaction. If parameter allow_implicit is set to True, any undeclared read collections are loaded lazily.
  • write ([str] | None) – Names of collections written to during transaction. Transaction fails on undeclared write collections.
  • params (dict | None) – Optional parameters passed into the Javascript command.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • timeout (int | None) – Timeout for waiting on collection locks. If set to 0, ArangoDB server waits indefinitely. If not set, system default value is used.
  • max_size (int | None) – Max transaction size limit in bytes.
  • allow_implicit (bool | None) – If set to True, undeclared read collections are loaded lazily. If set to False, transaction fails on any undeclared collections.
  • intermediate_commit_count (int | None) – Max number of operations after which an intermediate commit is performed automatically.
  • intermediate_commit_size (int | None) – Max size of operations in bytes after which an intermediate commit is performed automatically.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Return value of command.

Return type:

Any

Raises:

arango.exceptions.TransactionExecuteError – If execution fails.

foxx

Return Foxx API wrapper.

Returns:Foxx API wrapper.
Return type:arango.foxx.Foxx
graph(name: str) → arango.graph.Graph

Return the graph API wrapper.

Parameters:name (str) – Graph name.
Returns:Graph API wrapper.
Return type:arango.graph.Graph
graphs() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

List all graphs in the database.

Returns:Graphs in the database.
Return type:[dict]
Raises:arango.exceptions.GraphListError – If retrieval fails.
has_collection(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if collection exists in the database.

Parameters:name (str) – Collection name.
Returns:True if collection exists, False otherwise.
Return type:bool
has_database(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a database exists.

Parameters:name (str) – Database name.
Returns:True if database exists, False otherwise.
Return type:bool
has_document(document: Dict[str, Any], rev: Optional[str] = None, check_rev: bool = True) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a document exists.

Parameters:
  • document (str | dict) – Document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
Returns:

True if document exists, False otherwise.

Return type:

bool

Raises:
has_graph(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a graph exists in the database.

Parameters:name (str) – Graph name.
Returns:True if graph exists, False otherwise.
Return type:bool
has_user(username: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if user exists.

Parameters:username (str) – Username.
Returns:True if user exists, False otherwise.
Return type:bool
insert_document(collection: str, document: Dict[str, Any], return_new: bool = False, sync: Optional[bool] = None, silent: bool = False, overwrite: bool = False, return_old: bool = False, overwrite_mode: Optional[str] = None, keep_none: Optional[bool] = None, merge: Optional[bool] = None) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Insert a new document.

Parameters:
  • collection (str) – Collection name.
  • document (dict) – Document to insert. If it contains the “_key” or “_id” field, the value is used as the key of the new document (otherwise it is auto-generated). Any “_rev” field is ignored.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • overwrite (bool) – If set to True, operation does not fail on duplicate key and the existing document is replaced.
  • return_old (bool) – Include body of the old document if replaced. Applies only when value of overwrite is set to True.
  • overwrite_mode (str | None) – Overwrite behavior used when the document key exists already. Allowed values are “replace” (replace-insert) or “update” (update-insert). Implicitly sets the value of parameter overwrite.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely. Applies only when overwrite_mode is set to “update” (update-insert).
  • merge (bool | None) – If set to True (default), sub-dictionaries are merged instead of the new one overwriting the old one. Applies only when overwrite_mode is set to “update” (update-insert).
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

jwt_secrets() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return information on currently loaded JWT secrets.

Returns:Information on currently loaded JWT secrets.
Return type:dict
log_levels() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return current logging levels.

Returns:Current logging levels.
Return type:dict
metrics() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return server metrics in Prometheus format.

Returns:Server metrics in Prometheus format.
Return type:str
name

Return database name.

Returns:Database name.
Return type:str
permission(username: str, database: str, collection: Optional[str] = None) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • database (str) – Database name.
  • collection (str | None) – Collection name.
Returns:

Permission for given database or collection.

Return type:

str

Raises:

arango.exceptions.PermissionGetError – If retrieval fails.

permissions(username: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return user permissions for all databases and collections.

Parameters:username (str) – Username.
Returns:User permissions for all databases and collections.
Return type:dict
Raises:arango.exceptions.PermissionListError – If retrieval fails.
pregel

Return Pregel API wrapper.

Returns:Pregel API wrapper.
Return type:arango.pregel.Pregel
properties() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return database properties.

Returns:Database properties.
Return type:dict
Raises:arango.exceptions.DatabasePropertiesError – If retrieval fails.
read_log(upto: Union[int, str, None] = None, level: Union[int, str, None] = None, start: Optional[int] = None, size: Optional[int] = None, offset: Optional[int] = None, search: Optional[str] = None, sort: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Read the global log from server.

Parameters:
  • upto (int | str) – Return the log entries up to the given level (mutually exclusive with parameter level). Allowed values are “fatal”, “error”, “warning”, “info” (default) and “debug”.
  • level (int | str) – Return the log entries of only the given level (mutually exclusive with upto). Allowed values are “fatal”, “error”, “warning”, “info” (default) and “debug”.
  • start (int) – Return the log entries whose ID is greater or equal to the given value.
  • size (int) – Restrict the size of the result to the given value. This can be used for pagination.
  • offset (int) – Number of entries to skip (e.g. for pagination).
  • search (str) – Return only the log entries containing the given text.
  • sort (str) – Sort the log entries according to the given fashion, which can be “sort” or “desc”.
Returns:

Server log entries.

Return type:

dict

Raises:

arango.exceptions.ServerReadLogError – If read fails.

reload_jwt_secrets() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Hot-reload JWT secrets.

Calling this without payload reloads JWT secrets from disk. Only files specified via arangod startup option --server.jwt-secret-keyfile or --server.jwt-secret-folder are used. It is not possible to change the location where files are loaded from without restarting the server.

Returns:Information on reloaded JWT secrets.
Return type:dict
reload_routing() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Reload the routing information.

Returns:True if routing was reloaded successfully.
Return type:bool
Raises:arango.exceptions.ServerReloadRoutingError – If reload fails.
reload_tls() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Reload TLS data (server key, client-auth CA).

Returns:New TLS data.
Return type:dict
rename_view(name: str, new_name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Rename a view.

Parameters:
  • name (str) – View name.
  • new_name (str) – New view name.
Returns:

True if view was renamed successfully.

Return type:

bool

Raises:

arango.exceptions.ViewRenameError – If delete fails.

replace_arangosearch_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Replace an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewReplaceError – If replace fails.

replace_document(document: Dict[str, Any], check_rev: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Replace a document.

Parameters:
  • document (dict) – New document to replace the old one with. It must contain the “_id” field. Edge document must also have “_from” and “_to” fields.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • return_new (bool) – Include body of the new document in the result.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
replace_user(username: str, password: str, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Replace a user.

Parameters:
  • username (str) – Username.
  • password (str) – New password.
  • active (bool | None) – Whether the user is active.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserReplaceError – If replace fails.

replace_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Replace a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewReplaceError – If replace fails.

replication

Return Replication API wrapper.

Returns:Replication API wrapper.
Return type:arango.replication.Replication
required_db_version() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return required version of target database.

Returns:Required version of target database.
Return type:str
Raises:arango.exceptions.ServerRequiredDBVersionError – If retrieval fails.
reset_permission(username: str, database: str, collection: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Reset user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • database (str) – Database name.
  • collection (str) – Collection name.
Returns:

True if permission was reset successfully.

Return type:

bool

Raises:

arango.exceptions.PermissionRestError – If reset fails.

role() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return server role.

Returns:Server role. Possible values are “SINGLE” (server which is not in a cluster), “COORDINATOR” (cluster coordinator), “PRIMARY”, “SECONDARY”, “AGENT” (Agency node in a cluster) or “UNDEFINED”.
Return type:str
Raises:arango.exceptions.ServerRoleError – If retrieval fails.
run_tests(tests: Sequence[str]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Run available unittests on the server.

Parameters:tests ([str]) – List of files containing the test suites.
Returns:Test results.
Return type:dict
Raises:arango.exceptions.ServerRunTestsError – If execution fails.
set_log_levels(**kwargs) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Set the logging levels.

This method takes arbitrary keyword arguments where the keys are the logger names and the values are the logging levels. For example:

arango.set_log_levels(
    agency='DEBUG',
    collector='INFO',
    threads='WARNING'
)

Keys that are not valid logger names are ignored.

Returns:New logging levels.
Return type:dict
shutdown() → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Initiate server shutdown sequence.

Returns:True if the server was shutdown successfully.
Return type:bool
Raises:arango.exceptions.ServerShutdownError – If shutdown fails.
statistics(description: bool = False) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return server statistics.

Returns:Server statistics.
Return type:dict
Raises:arango.exceptions.ServerStatisticsError – If retrieval fails.
status() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return ArangoDB server status.

Returns:Server status.
Return type:dict
Raises:arango.exceptions.ServerStatusError – If retrieval fails.
task(task_id: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return the details of an active server task.

Parameters:task_id (str) – Server task ID.
Returns:Server task details.
Return type:dict
Raises:arango.exceptions.TaskGetError – If retrieval fails.
tasks() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return all currently active server tasks.

Returns:Currently active server tasks.
Return type:[dict]
Raises:arango.exceptions.TaskListError – If retrieval fails.
time() → Union[datetime.datetime, arango.job.AsyncJob[datetime.datetime][datetime.datetime], arango.job.BatchJob[datetime.datetime][datetime.datetime], None]

Return server system time.

Returns:Server system time.
Return type:datetime.datetime
Raises:arango.exceptions.ServerTimeError – If retrieval fails.
tls() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return TLS data (server key, client-auth CA).

Returns:TLS data.
Return type:dict
update_arangosearch_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Update an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewUpdateError – If update fails.

update_document(document: Dict[str, Any], check_rev: bool = True, merge: bool = True, keep_none: bool = True, return_new: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Update a document.

Parameters:
  • document (dict) – Partial or full document with the updated values. It must contain the “_id” field.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • merge (bool | None) – If set to True, sub-dictionaries are merged instead of the new one overwriting the old one.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely.
  • return_new (bool) – Include body of the new document in the result.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:
update_permission(username: str, permission: str, database: str, collection: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Update user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • permission (str) – Allowed values are “rw” (read and write), “ro” (read only) or “none” (no access).
  • database (str) – Database name.
  • collection (str | None) – Collection name.
Returns:

True if access was granted successfully.

Return type:

bool

Raises:

arango.exceptions.PermissionUpdateError – If update fails.

update_user(username: str, password: Optional[str] = None, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Update a user.

Parameters:
  • username (str) – Username.
  • password (str | None) – New password.
  • active (bool | None) – Whether the user is active.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserUpdateError – If update fails.

update_view(name: str, properties: Dict[str, Any]) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Update a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewUpdateError – If update fails.

user(username: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return user details.

Parameters:username (str) – Username.
Returns:User details.
Return type:dict
Raises:arango.exceptions.UserGetError – If retrieval fails.
username

Return the username.

Returns:Username.
Return type:str
users() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return all user details.

Returns:List of user details.
Return type:[dict]
Raises:arango.exceptions.UserListError – If retrieval fails.
version() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return ArangoDB server version.

Returns:Server version.
Return type:str
Raises:arango.exceptions.ServerVersionError – If retrieval fails.
view(name: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return view details.

Returns:View details.
Return type:dict
Raises:arango.exceptions.ViewGetError – If retrieval fails.
views() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return list of views and their summaries.

Returns:List of views.
Return type:[dict]
Raises:arango.exceptions.ViewListError – If retrieval fails.
wal

Return WAL (Write-Ahead Log) API wrapper.

Returns:WAL API wrapper.
Return type:arango.wal.WAL

TransactionDatabase

class arango.database.TransactionDatabase(connection: Union[BasicConnection, JwtConnection, JwtSuperuserConnection], read: Union[str, Sequence[str], None] = None, write: Union[str, Sequence[str], None] = None, exclusive: Union[str, Sequence[str], None] = None, sync: Optional[bool] = None, allow_implicit: Optional[bool] = None, lock_timeout: Optional[int] = None, max_size: Optional[int] = None)[source]

Database API wrapper tailored specifically for transactions.

See arango.database.StandardDatabase.begin_transaction().

Parameters:
  • connection – HTTP connection.
  • read (str | [str] | None) – Name(s) of collections read during transaction. Read-only collections are added lazily but should be declared if possible to avoid deadlocks.
  • write (str | [str] | None) – Name(s) of collections written to during transaction with shared access.
  • exclusive (str | [str] | None) – Name(s) of collections written to during transaction with exclusive access.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • allow_implicit (bool | None) – Allow reading from undeclared collections.
  • lock_timeout (int | None) – Timeout for waiting on collection locks. If not given, a default value is used. Setting it to 0 disables the timeout.
  • max_size (int | None) – Max transaction size in bytes.
transaction_id

Return the transaction ID.

Returns:Transaction ID.
Return type:str
transaction_status() → str[source]

Return the transaction status.

Returns:Transaction status.
Return type:str
Raises:arango.exceptions.TransactionStatusError – If retrieval fails.
commit_transaction() → bool[source]

Commit the transaction.

Returns:True if commit was successful.
Return type:bool
Raises:arango.exceptions.TransactionCommitError – If commit fails.
abort_transaction() → bool[source]

Abort the transaction.

Returns:True if the abort operation was successful.
Return type:bool
Raises:arango.exceptions.TransactionAbortError – If abort fails.
analyzer(name: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return analyzer details.

Parameters:name (str) – Analyzer name.
Returns:Analyzer details.
Return type:dict
Raises:arango.exceptions.AnalyzerGetError – If retrieval fails.
analyzers() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return list of analyzers.

Returns:List of analyzers.
Return type:[dict]
Raises:arango.exceptions.AnalyzerListError – If retrieval fails.
aql

Return AQL (ArangoDB Query Language) API wrapper.

Returns:AQL API wrapper.
Return type:arango.aql.AQL
async_jobs(status: str, count: Optional[int] = None) → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None]

Return IDs of async jobs with given status.

Parameters:
  • status (str) – Job status (e.g. “pending”, “done”).
  • count (int) – Max number of job IDs to return.
Returns:

List of job IDs.

Return type:

[str]

Raises:

arango.exceptions.AsyncJobListError – If retrieval fails.

backup

Return Backup API wrapper.

Returns:Backup API wrapper.
Return type:arango.backup.Backup
clear_async_jobs(threshold: Optional[int] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Clear async job results from the server.

Async jobs that are still queued or running are not stopped.

Parameters:threshold (int | None) – If specified, only the job results created prior to the threshold (a unix timestamp) are deleted. Otherwise, all job results are deleted.
Returns:True if job results were cleared successfully.
Return type:bool
Raises:arango.exceptions.AsyncJobClearError – If operation fails.
cluster

Return Cluster API wrapper.

Returns:Cluster API wrapper.
Return type:arango.cluster.Cluster
collection(name: str) → arango.collection.StandardCollection

Return the standard collection API wrapper.

Parameters:name (str) – Collection name.
Returns:Standard collection API wrapper.
Return type:arango.collection.StandardCollection
collections() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

Return the collections in the database.

Returns:Collections in the database and their details.
Return type:[dict]
Raises:arango.exceptions.CollectionListError – If retrieval fails.
conn

Return the HTTP connection.

Returns:HTTP connection.
Return type:arango.connection.BasicConnection | arango.connection.JwtConnection | arango.connection.JwtSuperuserConnection
context

Return the API execution context.

Returns:API execution context. Possible values are “default”, “async”, “batch” and “transaction”.
Return type:str
create_analyzer(name: str, analyzer_type: str, properties: Optional[Dict[str, Any]] = None, features: Optional[Sequence[str]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create an analyzer.

Parameters:
  • name (str) – Analyzer name.
  • analyzer_type (str) – Analyzer type.
  • properties (dict | None) – Analyzer properties.
  • features (list | None) – Analyzer features.
Returns:

Analyzer details.

Return type:

dict

Raises:

arango.exceptions.AnalyzerCreateError – If create fails.

create_arangosearch_view(name: str, properties: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create an ArangoSearch view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewCreateError – If create fails.

create_collection(name: str, sync: bool = False, system: bool = False, edge: bool = False, user_keys: bool = True, key_increment: Optional[int] = None, key_offset: Optional[int] = None, key_generator: str = 'traditional', shard_fields: Optional[Sequence[str]] = None, shard_count: Optional[int] = None, replication_factor: Optional[int] = None, shard_like: Optional[str] = None, sync_replication: Optional[bool] = None, enforce_replication_factor: Optional[bool] = None, sharding_strategy: Optional[str] = None, smart_join_attribute: Optional[str] = None, write_concern: Optional[int] = None, schema: Optional[Dict[str, Any]] = None, computedValues: Optional[List[Dict[str, Any]]] = None) → Union[arango.collection.StandardCollection, arango.job.AsyncJob[arango.collection.StandardCollection][arango.collection.StandardCollection], arango.job.BatchJob[arango.collection.StandardCollection][arango.collection.StandardCollection], None]

Create a new collection.

Parameters:
  • name (str) – Collection name.
  • sync (bool | None) – If set to True, document operations via the collection will block until synchronized to disk by default.
  • system (bool) – If set to True, a system collection is created. The collection name must have leading underscore “_” character.
  • edge (bool) – If set to True, an edge collection is created.
  • key_generator (str) – Used for generating document keys. Allowed values are “traditional” or “autoincrement”.
  • user_keys (bool) – If set to True, users are allowed to supply document keys. If set to False, the key generator is solely responsible for supplying the key values.
  • key_increment (int) – Key increment value. Applies only when value of key_generator is set to “autoincrement”.
  • key_offset (int) – Key offset value. Applies only when value of key_generator is set to “autoincrement”.
  • shard_fields ([str]) – Field(s) used to determine the target shard.
  • shard_count (int) – Number of shards to create.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • shard_like (str) – Name of prototype collection whose sharding specifics are imitated. Prototype collections cannot be dropped before imitating collections. Applies to enterprise version of ArangoDB only.
  • sync_replication (bool) – If set to True, server reports success only when collection is created in all replicas. You can set this to False for faster server response, and if full replication is not a concern.
  • enforce_replication_factor (bool) – Check if there are enough replicas available at creation time, or halt the operation.
  • sharding_strategy (str) – Sharding strategy. Available for ArangoDB version and up only. Possible values are “community-compat”, “enterprise-compat”, “enterprise-smart-edge-compat”, “hash” and “enterprise-hash-smart-edge”. Refer to ArangoDB documentation for more details on each value.
  • smart_join_attribute (str) – Attribute of the collection which must contain the shard key value of the smart join collection. The shard key for the documents must contain the value of this attribute, followed by a colon “:” and the primary key of the document. Requires parameter shard_like to be set to the name of another collection, and parameter shard_fields to be set to a single shard key attribute, with another colon “:” at the end. Available only for enterprise version of ArangoDB.
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
  • schema (dict) – Optional dict specifying the collection level schema for documents. See ArangoDB documentation for more information on document schema validation.
  • computedValues (list) – Array of computed values for the new collection enabling default values to new documents or the maintenance of auxiliary attributes for search queries. Available in ArangoDB version 3.10 or greater. See ArangoDB documentation for more information on computed values.
Returns:

Standard collection API wrapper.

Return type:

arango.collection.StandardCollection

Raises:

arango.exceptions.CollectionCreateError – If create fails.

create_database(name: str, users: Optional[Sequence[Dict[str, Any]]] = None, replication_factor: Union[int, str, None] = None, write_concern: Optional[int] = None, sharding: Optional[str] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Create a new database.

Parameters:
  • name (str) – Database name.
  • users ([dict]) – List of users with access to the new database, where each user is a dictionary with fields “username”, “password”, “active” and “extra” (see below for example). If not set, only the admin and current user are granted access.
  • replication_factor (int | str) – Default replication factor for collections created in this database. Special values include “satellite” which replicates the collection to every DBServer, and 1 which disables replication. Used for clusters only.
  • write_concern (int) – Default write concern for collections created in this database. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time, however. Value of this parameter can not be larger than the value of replication_factor. Used for clusters only.
  • sharding (str) – Sharding method used for new collections in this database. Allowed values are: “”, “flexible” and “single”. The first two are equivalent. Used for clusters only.
Returns:

True if database was created successfully.

Return type:

bool

Raises:

arango.exceptions.DatabaseCreateError – If create fails.

Here is an example entry for parameter users:

{
    'username': 'john',
    'password': 'password',
    'active': True,
    'extra': {'Department': 'IT'}
}
create_graph(name: str, edge_definitions: Optional[Sequence[Dict[str, Any]]] = None, orphan_collections: Optional[Sequence[str]] = None, smart: Optional[bool] = None, disjoint: Optional[bool] = None, smart_field: Optional[str] = None, shard_count: Optional[int] = None, replication_factor: Optional[int] = None, write_concern: Optional[int] = None) → Union[arango.graph.Graph, arango.job.AsyncJob[arango.graph.Graph][arango.graph.Graph], arango.job.BatchJob[arango.graph.Graph][arango.graph.Graph], None]

Create a new graph.

Parameters:
  • name (str) – Graph name.
  • edge_definitions ([dict] | None) – List of edge definitions, where each edge definition entry is a dictionary with fields “edge_collection”, “from_vertex_collections” and “to_vertex_collections” (see below for example).
  • orphan_collections ([str] | None) – Names of additional vertex collections that are not in edge definitions.
  • smart (bool | None) – If set to True, sharding is enabled (see parameter smart_field below). Applies only to enterprise version of ArangoDB.
  • disjoint (bool | None) – If set to True, create a disjoint SmartGraph instead of a regular SmartGraph. Applies only to enterprise version of ArangoDB.
  • smart_field (str | None) – Document field used to shard the vertices of the graph. To use this, parameter smart must be set to True and every vertex in the graph must have the smart field. Applies only to enterprise version of ArangoDB.
  • shard_count (int | None) – Number of shards used for every collection in the graph. To use this, parameter smart must be set to True and every vertex in the graph must have the smart field. This number cannot be modified later once set. Applies only to enterprise version of ArangoDB.
  • replication_factor (int) – Number of copies of each shard on different servers in a cluster. Allowed values are 1 (only one copy is kept and no synchronous replication), and n (n-1 replicas are kept and any two copies are replicated across servers synchronously, meaning every write to the master is copied to all slaves before operation is reported successful).
  • write_concern (int) – Write concern for the collection. Determines how many copies of each shard are required to be in sync on different DBServers. If there are less than these many copies in the cluster a shard will refuse to write. Writes to shards with enough up-to-date copies will succeed at the same time. The value of this parameter cannot be larger than that of replication_factor. Default value is 1. Used for clusters only.
Returns:

Graph API wrapper.

Return type:

arango.graph.Graph

Raises:

arango.exceptions.GraphCreateError – If create fails.

Here is an example entry for parameter edge_definitions:

[
    {
        'edge_collection': 'teach',
        'from_vertex_collections': ['teachers'],
        'to_vertex_collections': ['lectures']
    }
]
create_task(name: str, command: str, params: Optional[Dict[str, Any]] = None, period: Optional[int] = None, offset: Optional[int] = None, task_id: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new server task.

Parameters:
  • name (str) – Name of the server task.
  • command (str) – Javascript command to execute.
  • params (dict | None) – Optional parameters passed into the Javascript command.
  • period (int | None) – Number of seconds to wait between executions. If set to 0, the new task will be “timed”, meaning it will execute only once and be deleted afterwards.
  • offset (int | None) – Initial delay before execution in seconds.
  • task_id (str | None) – Pre-defined ID for the new server task.
Returns:

Details of the new task.

Return type:

dict

Raises:

arango.exceptions.TaskCreateError – If create fails.

create_user(username: str, password: Optional[str] = None, active: Optional[bool] = None, extra: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a new user.

Parameters:
  • username (str) – Username.
  • password (str | None) – Password.
  • active (bool | None) – True if user is active, False otherwise.
  • extra (dict | None) – Additional data for the user.
Returns:

New user details.

Return type:

dict

Raises:

arango.exceptions.UserCreateError – If create fails.

create_view(name: str, view_type: str, properties: Optional[Dict[str, Any]] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Create a view.

Parameters:
Returns:

View details.

Return type:

dict

Raises:

arango.exceptions.ViewCreateError – If create fails.

databases() → Union[List[str], arango.job.AsyncJob[typing.List[str]][List[str]], arango.job.BatchJob[typing.List[str]][List[str]], None]

Return the names all databases.

Returns:Database names.
Return type:[str]
Raises:arango.exceptions.DatabaseListError – If retrieval fails.
db_name

Return the name of the current database.

Returns:Database name.
Return type:str
delete_analyzer(name: str, force: bool = False, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete an analyzer.

Parameters:
  • name (str) – Analyzer name.
  • force (bool) – Remove the analyzer configuration even if in use.
  • ignore_missing (bool) – Do not raise an exception on missing analyzer.
Returns:

True if analyzer was deleted successfully, False if analyzer was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.AnalyzerDeleteError – If delete fails.

delete_collection(name: str, ignore_missing: bool = False, system: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete the collection.

Parameters:
  • name (str) – Collection name.
  • ignore_missing (bool) – Do not raise an exception on missing collection.
  • system (bool) – Whether the collection is a system collection.
Returns:

True if collection was deleted successfully, False if collection was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.CollectionDeleteError – If delete fails.

delete_database(name: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete the database.

Parameters:
  • name (str) – Database name.
  • ignore_missing (bool) – Do not raise an exception on missing database.
Returns:

True if database was deleted successfully, False if database was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.DatabaseDeleteError – If delete fails.

delete_document(document: Union[str, Dict[str, Any]], rev: Optional[str] = None, check_rev: bool = True, ignore_missing: bool = False, return_old: bool = False, sync: Optional[bool] = None, silent: bool = False) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Delete a document.

Parameters:
  • document (str | dict) – Document ID, key or body. Document body must contain the “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
  • ignore_missing (bool) – Do not raise an exception on missing document. This parameter has no effect in transactions where an exception is always raised on failures.
  • return_old (bool) – Include body of the old document in the result.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
Returns:

Document metadata (e.g. document key, revision), or True if parameter silent was set to True, or False if document was not found and ignore_missing was set to True (does not apply in transactions).

Return type:

bool | dict

Raises:
delete_graph(name: str, ignore_missing: bool = False, drop_collections: Optional[bool] = None) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Drop the graph of the given name from the database.

Parameters:
  • name (str) – Graph name.
  • ignore_missing (bool) – Do not raise an exception on missing graph.
  • drop_collections (bool | None) – Drop the collections of the graph also. This is only if they are not in use by other graphs.
Returns:

True if graph was deleted successfully, False if graph was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.GraphDeleteError – If delete fails.

delete_task(task_id: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a server task.

Parameters:
  • task_id (str) – Server task ID.
  • ignore_missing (bool) – Do not raise an exception on missing task.
Returns:

True if task was successfully deleted, False if task was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.TaskDeleteError – If delete fails.

delete_user(username: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a user.

Parameters:
  • username (str) – Username.
  • ignore_missing (bool) – Do not raise an exception on missing user.
Returns:

True if user was deleted successfully, False if user was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.UserDeleteError – If delete fails.

delete_view(name: str, ignore_missing: bool = False) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Delete a view.

Parameters:
  • name (str) – View name.
  • ignore_missing (bool) – Do not raise an exception on missing view.
Returns:

True if view was deleted successfully, False if view was not found and ignore_missing was set to True.

Return type:

bool

Raises:

arango.exceptions.ViewDeleteError – If delete fails.

details() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return ArangoDB server details.

Returns:Server details.
Return type:dict
Raises:arango.exceptions.ServerDetailsError – If retrieval fails.
document(document: Dict[str, Any], rev: Optional[str] = None, check_rev: bool = True) → Union[Dict[str, Any], None, arango.job.AsyncJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]], arango.job.BatchJob[typing.Union[typing.Dict[str, typing.Any], NoneType]][Optional[Dict[str, Any]]]]

Return a document.

Parameters:
  • document (str | dict) – Document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides the value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
Returns:

Document, or None if not found.

Return type:

dict | None

Raises:
echo() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return details of the last request (e.g. headers, payload).

Returns:Details of the last request.
Return type:dict
Raises:arango.exceptions.ServerEchoError – If retrieval fails.
encryption() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Rotate the user-supplied keys for encryption.

This method is available only for enterprise edition of ArangoDB.

Returns:New TLS data.
Return type:dict
Raises:arango.exceptions.ServerEncryptionError – If retrieval fails.
engine() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return the database engine details.

Returns:Database engine details.
Return type:dict
Raises:arango.exceptions.ServerEngineError – If retrieval fails.
execute_transaction(command: str, params: Optional[Dict[str, Any]] = None, read: Optional[Sequence[str]] = None, write: Optional[Sequence[str]] = None, sync: Optional[bool] = None, timeout: Optional[numbers.Number] = None, max_size: Optional[int] = None, allow_implicit: Optional[bool] = None, intermediate_commit_count: Optional[int] = None, intermediate_commit_size: Optional[int] = None, allow_dirty_read: bool = False) → Union[Any, arango.job.AsyncJob[typing.Any][Any], arango.job.BatchJob[typing.Any][Any], None]

Execute raw Javascript command in transaction.

Parameters:
  • command (str) – Javascript command to execute.
  • read ([str] | None) – Names of collections read during transaction. If parameter allow_implicit is set to True, any undeclared read collections are loaded lazily.
  • write ([str] | None) – Names of collections written to during transaction. Transaction fails on undeclared write collections.
  • params (dict | None) – Optional parameters passed into the Javascript command.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • timeout (int | None) – Timeout for waiting on collection locks. If set to 0, ArangoDB server waits indefinitely. If not set, system default value is used.
  • max_size (int | None) – Max transaction size limit in bytes.
  • allow_implicit (bool | None) – If set to True, undeclared read collections are loaded lazily. If set to False, transaction fails on any undeclared collections.
  • intermediate_commit_count (int | None) – Max number of operations after which an intermediate commit is performed automatically.
  • intermediate_commit_size (int | None) – Max size of operations in bytes after which an intermediate commit is performed automatically.
  • allow_dirty_read (bool | None) – Allow reads from followers in a cluster.
Returns:

Return value of command.

Return type:

Any

Raises:

arango.exceptions.TransactionExecuteError – If execution fails.

foxx

Return Foxx API wrapper.

Returns:Foxx API wrapper.
Return type:arango.foxx.Foxx
graph(name: str) → arango.graph.Graph

Return the graph API wrapper.

Parameters:name (str) – Graph name.
Returns:Graph API wrapper.
Return type:arango.graph.Graph
graphs() → Union[List[Dict[str, Any]], arango.job.AsyncJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], arango.job.BatchJob[typing.List[typing.Dict[str, typing.Any]]][List[Dict[str, Any]]], None]

List all graphs in the database.

Returns:Graphs in the database.
Return type:[dict]
Raises:arango.exceptions.GraphListError – If retrieval fails.
has_collection(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if collection exists in the database.

Parameters:name (str) – Collection name.
Returns:True if collection exists, False otherwise.
Return type:bool
has_database(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a database exists.

Parameters:name (str) – Database name.
Returns:True if database exists, False otherwise.
Return type:bool
has_document(document: Dict[str, Any], rev: Optional[str] = None, check_rev: bool = True) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a document exists.

Parameters:
  • document (str | dict) – Document ID or body with “_id” field.
  • rev (str | None) – Expected document revision. Overrides value of “_rev” field in document if present.
  • check_rev (bool) – If set to True, revision of document (if given) is compared against the revision of target document.
Returns:

True if document exists, False otherwise.

Return type:

bool

Raises:
has_graph(name: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if a graph exists in the database.

Parameters:name (str) – Graph name.
Returns:True if graph exists, False otherwise.
Return type:bool
has_user(username: str) → Union[bool, arango.job.AsyncJob[bool][bool], arango.job.BatchJob[bool][bool], None]

Check if user exists.

Parameters:username (str) – Username.
Returns:True if user exists, False otherwise.
Return type:bool
insert_document(collection: str, document: Dict[str, Any], return_new: bool = False, sync: Optional[bool] = None, silent: bool = False, overwrite: bool = False, return_old: bool = False, overwrite_mode: Optional[str] = None, keep_none: Optional[bool] = None, merge: Optional[bool] = None) → Union[bool, Dict[str, Any], arango.job.AsyncJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], arango.job.BatchJob[typing.Union[bool, typing.Dict[str, typing.Any]]][Union[bool, Dict[str, Any]]], None]

Insert a new document.

Parameters:
  • collection (str) – Collection name.
  • document (dict) – Document to insert. If it contains the “_key” or “_id” field, the value is used as the key of the new document (otherwise it is auto-generated). Any “_rev” field is ignored.
  • return_new (bool) – Include body of the new document in the returned metadata. Ignored if parameter silent is set to True.
  • sync (bool | None) – Block until operation is synchronized to disk.
  • silent (bool) – If set to True, no document metadata is returned. This can be used to save resources.
  • overwrite (bool) – If set to True, operation does not fail on duplicate key and the existing document is replaced.
  • return_old (bool) – Include body of the old document if replaced. Applies only when value of overwrite is set to True.
  • overwrite_mode (str | None) – Overwrite behavior used when the document key exists already. Allowed values are “replace” (replace-insert) or “update” (update-insert). Implicitly sets the value of parameter overwrite.
  • keep_none (bool | None) – If set to True, fields with value None are retained in the document. Otherwise, they are removed completely. Applies only when overwrite_mode is set to “update” (update-insert).
  • merge (bool | None) – If set to True (default), sub-dictionaries are merged instead of the new one overwriting the old one. Applies only when overwrite_mode is set to “update” (update-insert).
Returns:

Document metadata (e.g. document key, revision) or True if parameter silent was set to True.

Return type:

bool | dict

Raises:

arango.exceptions.DocumentInsertError – If insert fails.

jwt_secrets() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return information on currently loaded JWT secrets.

Returns:Information on currently loaded JWT secrets.
Return type:dict
log_levels() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return current logging levels.

Returns:Current logging levels.
Return type:dict
metrics() → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return server metrics in Prometheus format.

Returns:Server metrics in Prometheus format.
Return type:str
name

Return database name.

Returns:Database name.
Return type:str
permission(username: str, database: str, collection: Optional[str] = None) → Union[str, arango.job.AsyncJob[str][str], arango.job.BatchJob[str][str], None]

Return user permission for a specific database or collection.

Parameters:
  • username (str) – Username.
  • database (str) – Database name.
  • collection (str | None) – Collection name.
Returns:

Permission for given database or collection.

Return type:

str

Raises:

arango.exceptions.PermissionGetError – If retrieval fails.

permissions(username: str) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return user permissions for all databases and collections.

Parameters:username (str) – Username.
Returns:User permissions for all databases and collections.
Return type:dict
Raises:arango.exceptions.PermissionListError – If retrieval fails.
pregel

Return Pregel API wrapper.

Returns:Pregel API wrapper.
Return type:arango.pregel.Pregel
properties() → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Return database properties.

Returns:Database properties.
Return type:dict
Raises:arango.exceptions.DatabasePropertiesError – If retrieval fails.
read_log(upto: Union[int, str, None] = None, level: Union[int, str, None] = None, start: Optional[int] = None, size: Optional[int] = None, offset: Optional[int] = None, search: Optional[str] = None, sort: Optional[str] = None) → Union[Dict[str, Any], arango.job.AsyncJob[typing.Dict[str, typing.Any]][Dict[str, Any]], arango.job.BatchJob[typing.Dict[str, typing.Any]][Dict[str, Any]], None]

Read the global log from server.

Parameters:
  • upto (int | str) – Return the log entries up to the given level (mutually exclusive with parameter level). Allowed values are “fatal”, “error”, “warning”, “info” (default) and “debug”.
  • level (int | str) – Return the log entries of only the given level (mutually exclusive with upto). Allowed values are “fatal”, “error”, “warning”, “info” (default) and “debug”.
  • start (int) – Return the log entries whose ID is greater or equal to the given value.
  • size (int) – Restrict the size of the result to the given value. This can be used for pagination.
  • offset (int) – Number of entries to skip (e.g. for pagination).
  • search (str) – Return only the log entries containing the given text.
  • sort (str) – Sort the log entries according to the given fashion, which can be “sort” or “desc”.
Returns:

Server log entries.

Return type:

dict

Raises:

arango.excep