OrientDB – Drop Property The Drop property command removes the property from the schema. It does not remove the property values from the record, it just change the schema. The following statement is the basic syntax of Drop Property Command. DROP PROPERTY <class>.<property> [FORCE] Following are the details about the options in the above syntax. […]
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 […]
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 […]