GraphApiClientDeleteGraphAsync Method |
Deletes an existing graph object by name.
Optionally all collections not used by other
graphs can be deleted as well, using
DeleteGraphQuery.
DELETE /_api/gharial/{graph-name}
Namespace:
ArangoDBNetStandard.GraphApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public virtual Task<DeleteGraphResponse> DeleteGraphAsync(
string graphName,
DeleteGraphQuery query = null
)
Public Overridable Function DeleteGraphAsync (
graphName As String,
Optional query As DeleteGraphQuery = Nothing
) As Task(Of DeleteGraphResponse)
public:
virtual Task<DeleteGraphResponse^>^ DeleteGraphAsync(
String^ graphName,
DeleteGraphQuery^ query = nullptr
)
abstract DeleteGraphAsync :
graphName : string *
?query : DeleteGraphQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<DeleteGraphResponse>
override DeleteGraphAsync :
graphName : string *
?query : DeleteGraphQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<DeleteGraphResponse>
Parameters
- graphName
- Type: SystemString
- query (Optional)
- Type: ArangoDBNetStandard.GraphApi.ModelsDeleteGraphQuery
Return Value
Type:
TaskDeleteGraphResponseImplements
IGraphApiClientDeleteGraphAsync(String, DeleteGraphQuery)See Also