Created
July 25, 2016 21:50
-
-
Save SIRHAMY/d4daf5117065babdeb68731033a20c02 to your computer and use it in GitHub Desktop.
IBM GraphDB - Update a vertex property, selecting vertex by vertex ID.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"properties": | |
{ | |
"name": "Your new name", | |
"age": 21, | |
"tags": "TAG1" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Here, you hit the vertex endpoint, supplying VERTEX_ID in the URL. | |
DOCUMENTATION: https://ibm-graph-docs.ng.bluemix.net/api.html#vertex-apis | |
Currently, something like: | |
-HTTP: POST | |
-URL: https://ibmgraph-alpha.ng.bluemix.net/$APIURL/$GRAPHNAME/vertices/$VERTEXID | |
-BODY: update_vertex_property.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment