IAqlFunctionApiClient Methods |
The IAqlFunctionApiClient type exposes the following members.
Name | Description | |
---|---|---|
DeleteAqlFunctionAsync |
Removes an existing AQL user function or function group, identified by name.
DELETE /_api/aqlfunction/{name}
| |
DeleteClearAqlQueryCacheAsync |
Clears the query results cache for the current database
DELETE /_api/query-cache
| |
DeleteClearSlowAqlQueriesAsync |
Clears the list of slow AQL queries in the currently
selected database or in all databases.
DELETE /_api/query/slow
| |
DeleteKillRunningAqlQueryAsync |
Kills an AQL query in the currently selected database
or in all databases.
DELETE /_api/query/{query-id}
| |
GetAqlFunctionsAsync |
Get all registered AQL user functions.
| |
GetCachedAqlQueryResultsAsync |
Gets a list of the stored results in the AQL query results cache.
GET /_api/query-cache/entries
| |
GetCurrentlyRunningAqlQueriesAsync |
Gets a list of currently running AQL queries.
GET /_api/query/current
| |
GetQueryCacheGlobalPropertiesAsync |
Gets the global configuration for the AQL query results cache.
| |
GetQueryTrackingConfigurationAsync |
Gets the current query tracking configuration.
GET /_api/query/properties
| |
GetSlowAqlQueriesAsync |
Gets a list of slow running AQL queries in the currently
selected database or in all databases.
GET /_api/query/slow
| |
PostAqlFunctionAsync |
Create a new AQL user function.
POST /_api/aqlfunction
| |
PostExplainAqlQueryAsync |
Explain an AQL query and return information about it
POST /_api/explain
| |
PostParseAqlQueryAsync |
Parse an AQL query and return information about it
POST /_api/query
| |
PutAdjustQueryCacheGlobalPropertiesAsync |
Changes the configuration for the AQL query results cache
PUT /_api/query-cache/properties
| |
PutChangeQueryTrackingConfigurationAsync |
Changes the configuration for the AQL query tracking.
PUT /_api/query/properties
|