Uses of Class
com.graphdbapi.driver.v1.graph.VertexInfoByPk
-
Packages that use VertexInfoByPk Package Description com.graphdbapi.driver -
-
Uses of VertexInfoByPk in com.graphdbapi.driver
Method parameters in com.graphdbapi.driver with type arguments of type VertexInfoByPk Modifier and Type Method Description List<String>
Graph. deleteVertexesByPk(List<VertexInfoByPk> list)
批量删除点。通过点pk和type删除点。如果不存在或删除失败,则会返回异常结果集。 结果按传入顺序构成集合,集合中包含成功信息和错误信息。void
Graph. insertBatchVertexByPk(List<VertexInfoByPk> list)
批量新增点。通过点pk和type新增点,属性为可选项。List<ResponseItem<Vertex>>
Graph. insertVertexesByPk(List<VertexInfoByPk> list)
批量新增点。通过点pk和type新增点,属性为可选项。 结果按传入顺序构成集合,集合中包含新增后的点信息和错误信息。通过ResponseItem.isError()
方法判断操作是否失败。List<ResponseItem<Vertex>>
Graph. retrieveOrInsertVertexesByPk(List<VertexInfoByPk> list)
批量查询或新增点。通过点pk和type查询或新增点。若点已经存在,仅查询并返回点信息,属性值不做修改。若点不存在,新增并返回点信息。 结果按传入顺序构成集合,集合中包含查询或新增后的点信息和错误信息。通过ResponseItem.isError()
方法判断操作是否失败。List<ResponseItem<Vertex>>
Graph. retrieveVertexesByPk(List<VertexInfoByPk> list)
批量查询点。通过点pk和type查询点信息。不存在返回空集合 结果按传入顺序构成集合,集合中包含查询的点信息和错误信息。通过ResponseItem.isError()
方法判断操作是否失败。List<ResponseItem<Vertex>>
Graph. updateVertexesByPk(List<VertexInfoByPk> list)
批量更新点。通过点pk和type更新点。如果已存在,则会比较属性值。 结果按传入顺序构成集合,集合中包含更新后的点信息和错误信息。通过ResponseItem.isError()
方法判断操作是否失败。List<ResponseItem<Vertex>>
Graph. upsertVertexesByPk(List<VertexInfoByPk> list)
批量新增或更新点。通过点pk和type新增或更新点。如果已存在,则会比较属性值。 结果按传入顺序构成集合,集合中包含新增或更新后的点信息和错误信息。通过ResponseItem.isError()
方法判断操作是否失败。
-