| GraphApiClientPostVertexCollectionAsync 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
Syntaxpublic virtual Task<PostVertexCollectionResponse> PostVertexCollectionAsync(
	string graphName,
	PostVertexCollectionBody body
)
Public Overridable Function PostVertexCollectionAsync ( 
	graphName As String,
	body As PostVertexCollectionBody
) As Task(Of PostVertexCollectionResponse)
public:
virtual Task<PostVertexCollectionResponse^>^ PostVertexCollectionAsync(
	String^ graphName, 
	PostVertexCollectionBody^ body
)
abstract PostVertexCollectionAsync : 
        graphName : string * 
        body : PostVertexCollectionBody -> Task<PostVertexCollectionResponse> 
override 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: 
TaskPostVertexCollectionResponseImplements
IGraphApiClientPostVertexCollectionAsync(String, PostVertexCollectionBody) See Also
See Also