Click or drag to resize

IViewApiClient Interface

Defines a client to access the ArangoDB API for Views.

Namespace:  ArangoDBNetStandard.ViewApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public interface IViewApiClient

The IViewApiClient type exposes the following members.

Methods
  NameDescription
Public methodDeleteViewAsync
Delete / drop a view DELETE /_api/view/{view-name}
Public methodGetAllViewsAsync
Gets a list of all views in a database, regardless of their type. GET /_api/view
Public methodGetViewAsync
Get information about a view GET /_api/view/{view-name}
Public methodGetViewPropertiesAsync
Get the properties of a view GET /_api/view/{view-name}/properties
Public methodPatchViewPropertiesAsync
Partially changes properties of a view PATCH /_api/view/{view-name}/properties
Public methodPostCreateViewAsync
Create a new View POST /_api/view
Public methodPutRenameViewAsync
Renames a view PUT /_api/view/{view-name}/rename
Public methodPutViewPropertiesAsync
Changes all properties of a view PUT /_api/view/{view-name}/properties
Top
See Also