IGraphApiClientPostGraphAsync Method |
Creates a new graph in the graph module.
POST /_api/gharial
Namespace:
ArangoDBNetStandard.GraphApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax Task<PostGraphResponse> PostGraphAsync(
PostGraphBody postGraphBody,
PostGraphQuery query = null
)
Function PostGraphAsync (
postGraphBody As PostGraphBody,
Optional query As PostGraphQuery = Nothing
) As Task(Of PostGraphResponse)
Task<PostGraphResponse^>^ PostGraphAsync(
PostGraphBody^ postGraphBody,
PostGraphQuery^ query = nullptr
)
abstract PostGraphAsync :
postGraphBody : PostGraphBody *
?query : PostGraphQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<PostGraphResponse>
Parameters
- postGraphBody
- Type: ArangoDBNetStandard.GraphApi.ModelsPostGraphBody
The information of the graph to create. - query (Optional)
- Type: ArangoDBNetStandard.GraphApi.ModelsPostGraphQuery
Return Value
Type:
TaskPostGraphResponseSee Also