about duplicate vertex and edge #1845
wuyueandrew
started this conversation in
General
Replies: 1 comment
-
Answered in #1877 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
consider a bench dataset like:
vertex label a:
vertex label b:
edge(a -> b)
What's the reason of node_num=7, edge_num=3 ?
I think
node_num=7
andedge_num=3
are confilct.1.Duplicate vertexs which have equal vid_field can be create repeatly ?
Is vid_field a unique key and gs has a oid like primary key?
2.If the answer 1 is yes, the edge number should be 5 (2 * (1->6) + 2 * (2->6) + 1 * (3 ->7)) i thought.
what's the reason of edge_num = 3 (due to this, duplicate vertexs which have equal vid_field can not be created obviously)?
Beta Was this translation helpful? Give feedback.
All reactions