Version 1.5 of the documentation is no longer actively maintained. The site that you are currently viewing is an archived snapshot.
For up-to-date documentation, see the latest version .
IndexLabel API 1.5 IndexLabel Assuming PropertyKeys from version 1.1.3, VertexLabels from version 1.2.3, and EdgeLabels from version 1.3.3 have already been created.
1.5.1 Create an IndexLabel Method & Url
POST http://localhost:8080/graphs/hugegraph/schema/indexlabelsRequest Body
{
"name" : "personByCity" ,
"base_type" : "VERTEX_LABEL" ,
"base_value" : "person" ,
"index_type" : "SECONDARY" ,
"fields" : [
"city"
]
} Response Status Response Body
{
"index_label" : {
"id" : 1 ,
"base_type" : "VERTEX_LABEL" ,
"base_value" : "person" ,
"name" : "personByCity" ,
"fields" : [
"city"
],
"index_type" : "SECONDARY"
},
"task_id" : 2
} 1.5.2 Get all IndexLabels Method & Url
GET http://localhost:8080/graphs/hugegraph/schema/indexlabelsResponse Status Response Body
{
"indexlabels" : [
{
"id" : 3 ,
"base_type" : "VERTEX_LABEL" ,
"base_value" : "software" ,
"name" : "softwareByPrice" ,
"fields" : [
"price"
],
"index_type" : "RANGE"
},
{
"id" : 4 ,
"base_type" : "EDGE_LABEL" ,
"base_value" : "created" ,
"name" : "createdByDate" ,
"fields" : [
"date"
],
"index_type" : "SECONDARY"
},
{
"id" : 1 ,
"base_type" : "VERTEX_LABEL" ,
"base_value" : "person" ,
"name" : "personByCity" ,
"fields" : [
"city"
],
"index_type" : "SECONDARY"
},
{
"id" : 3 ,
"base_type" : "VERTEX_LABEL" ,
"base_value" : "person" ,
"name" : "personByAgeAndCity" ,
"fields" : [
"age" ,
"city"
],
"index_type" : "SECONDARY"
}
]
} 1.5.3 Get IndexLabel by name Method & Url
GET http://localhost:8080/graphs/hugegraph/schema/indexlabels/personByCityResponse Status Response Body
{
"id" : 1 ,
"base_type" : "VERTEX_LABEL" ,
"base_value" : "person" ,
"name" : "personByCity" ,
"fields" : [
"city"
],
"index_type" : "SECONDARY"
} 1.5.4 Delete IndexLabel by name Deleting an IndexLabel will result in the deletion of related index data. This operation will generate an asynchronous task.
Method & Url
DELETE http://localhost:8080/graphs/hugegraph/schema/indexlabels/personByCityResponse Status Response Body Note:
You can query the execution status of an asynchronous task by using GET http://localhost:8080/graphs/hugegraph/tasks/1 (where “1” is the task_id). For more information, refer to the Asynchronous Task RESTful API .