OrientDB – Create Vertex OrientDB database is not only a Document database but also a Graph database. New concepts such as Vertex and Edge are used to store the data in the form of graph. It applies polymorphism on vertices. The base class for Vertex is V. In this chapter you can learn how to […]
Author Archives: user
OrientDB – Move Vertex Move Vertex command in OrientDB is to move one or more vertices from current location to different class or cluster. If you are applying move command on a particular vertex, then it will update all the edges that are connected to this vertex. If you are specifying a cluster to move […]
OrientDB – Delete Vertex Delete Vertex command is used to remove vertices from the database. While deleting, it checks and maintains the consistency with the edges and removes all cross-references (with the edges) to the deleted vertex. The following statement is the basic syntax of Delete Vertex Command. DELETE VERTEX <vertex> [WHERE <conditions>] [LIMIT <MaxRecords>>] […]