JanusGraph/janusgraph

Possible incosistency in chapter 5 documentation

オープン

#1,573 opened on 2019/05/12

 (2 件のコメント) (0 件のリアクション) (0 人の担当者)Java (1,137 件のフォーク)batch import
good first issuehelp wanted

Repository metrics

Stars
 (4,985 個のスター)
PR merge metrics
 (平均マージ 3d 18h) (30d で 12 merged PRs)

説明

In Chapter 5. Schema and Data Modeling first there is paragraph:

The default cardinality setting is SINGLE. Note, that property keys used on edges and properties have cardinality SINGLE. Attaching multiple values for a single key on an edge or property is not supported.

and then example:

mgmt = graph.openManagement()
follow = mgmt.makeEdgeLabel('follow').multiplicity(MULTI).make()
name = mgmt.makePropertyKey('name').dataType(String.class).cardinality(Cardinality.SET).make()
mgmt.addProperties(follow, name)
mgmt.commit()

doesn't this example contradict that edges can't have multiple values for a single key?

コントリビューターガイド