I am using Dse graph version 5.x.
I have created a schema using Dse studio which uses gremlin query.
What I am trying to do is:
I want to index my graph based on vertex property called 'name'
Here is what I get when I do schema.describe()
Here is what I get when I do g.V()
As you can clearly see, I have index my vertex label type
with property name
.
But when I insert multiple vertex (of label type
) with same name
it accept it without error.
Ideally because of indexing it should show error on inserting vertex with same property `name'.