GraphApiClientDeleteVertexCollectionAsync Method |
Removes a vertex collection from the graph and optionally deletes the collection,
if it is not used in any other graph.
It can only remove vertex collections that are no longer part of edge definitions,
if they are used in edge definitions you are required to modify those first.
DELETE/_api/gharial/{graph}/vertex/{collection}
Namespace:
ArangoDBNetStandard.GraphApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public virtual Task<DeleteVertexCollectionResponse> DeleteVertexCollectionAsync(
string graphName,
string collectionName,
DeleteVertexCollectionQuery query = null
)
Public Overridable Function DeleteVertexCollectionAsync (
graphName As String,
collectionName As String,
Optional query As DeleteVertexCollectionQuery = Nothing
) As Task(Of DeleteVertexCollectionResponse)
public:
virtual Task<DeleteVertexCollectionResponse^>^ DeleteVertexCollectionAsync(
String^ graphName,
String^ collectionName,
DeleteVertexCollectionQuery^ query = nullptr
)
abstract DeleteVertexCollectionAsync :
graphName : string *
collectionName : string *
?query : DeleteVertexCollectionQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<DeleteVertexCollectionResponse>
override DeleteVertexCollectionAsync :
graphName : string *
collectionName : string *
?query : DeleteVertexCollectionQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<DeleteVertexCollectionResponse>
Parameters
- graphName
- Type: SystemString
- collectionName
- Type: SystemString
- query (Optional)
- Type: ArangoDBNetStandard.GraphApi.ModelsDeleteVertexCollectionQuery
Return Value
Type:
TaskDeleteVertexCollectionResponseImplements
IGraphApiClientDeleteVertexCollectionAsync(String, String, DeleteVertexCollectionQuery)See Also