IGraphApiClientPostVertexCollectionAsync Method |
Adds a vertex collection to the set of orphan collections of the graph.
If the collection does not exist, it will be created.
POST /_api/gharial/{graph}/vertex
Namespace:
ArangoDBNetStandard.GraphApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax Task<PostVertexCollectionResponse> PostVertexCollectionAsync(
string graphName,
PostVertexCollectionBody body
)
Function PostVertexCollectionAsync (
graphName As String,
body As PostVertexCollectionBody
) As Task(Of PostVertexCollectionResponse)
Task<PostVertexCollectionResponse^>^ PostVertexCollectionAsync(
String^ graphName,
PostVertexCollectionBody^ body
)
abstract PostVertexCollectionAsync :
graphName : string *
body : PostVertexCollectionBody -> Task<PostVertexCollectionResponse>
Parameters
- graphName
- Type: SystemString
The name of the graph. - body
- Type: ArangoDBNetStandard.GraphApi.ModelsPostVertexCollectionBody
The information of the vertex collection.
Return Value
Type:
TaskPostVertexCollectionResponseSee Also