0

Neo4jClient で既に作成された関係インデックスに関係を追加する構文は何ですか?

次の投稿 (「neo4jclient でインデックスに関係を追加する」 ) を見つけましたが、構文はノードの構文と似ているとしか書かれていませんが、CreateRelationship メソッドには、インデックスへの関係の挿入をサポートする署名がありません。

Neo4jClient noob へのヘルプは大歓迎です。

4

1 に答える 1

1

ReIndex コマンドを使用して実行できます。

if(!GraphClient.CheckIndexExists("relatedto", IndexFor.Relationship))
    GraphClient.CreateIndex("relatedto", ExactIndex, IndexFor.Relationship);

var simple1 = new Simple {Value = "simple_1"};
var simple2 = new Simple { Value = "simple_2" };

var s1Ref = GraphClient.Create(simple1);
var s2Ref = GraphClient.Create(simple2);

var relationship = new RelatedTo(s2Ref){RelationshipValue = "indexed_" + s1Ref.Id};

var relRef = GraphClient.CreateRelationship(s1Ref, relationship);

//Adding to the index
GraphClient.ReIndex(relRef, new []{new IndexEntry("relatedto"){{"value", relationship.RelationshipValue}}});

Console.WriteLine("Use this in N4J Data Browser: rel:index:relatedto:value:{0}", relationship.RelationshipValue);
于 2013-08-15T09:24:54.000 に答える