Delete a relationship type

To delete a relationship type from the repository, use RAMRelationshipType.setAction(RAMAction) and pass in RAMAction.DELETE.

                //Delete a relationship type
                newRelationshipType.setAction(RAMAction.DELETE);
                session.put(newRelationshipType, new NullProgressMonitor());

Feedback