使用Neo4jClient调用TimeTree

时间:2017-01-10 02:06:59

标签: c# neo4j neo4jclient graphaware

我正在使用以下代码尝试从Neo4jClient调用TimeTree。

其他简单的调用有效,但这个什么都不做。没有错误,也没有新的时间对象。

public class Trip
{
    public long Id { get; set; }
    public string Name { get; set; }
}

public class UUID
{
    public long Value { get; set; }
}

public class TimeStamp
{
    //public long Id { get; set; }
    //public string Name { get; set; }

    public long time { get; set; }
}


public class User
{
    public long Id { get; set; }
    public string Name { get; set; }
    public int Age { get; set; }
    public string Email { get; set; }
}

class Program
{
    static void Main(string[] args)
    {

        var client = new Neo4jClient.GraphClient(new Uri("http://localhost:7474/db/data"), "neo4j", "password");
        client.Connect();


        client.Cypher
            .Match("(n)")
            .DetachDelete("n")
            .ExecuteWithoutResults();


        var newUser = new User { Id = 456, Name = "Jim" };
        client.Cypher
            .Create("(user:User {newUser})")
            .WithParam("newUser", newUser)
            .ExecuteWithoutResults();

        var newTrip = new Trip { Id = 001, Name = "Antibes" };
        client.Cypher
            .Match("(traveller:User)")
            .Where((User traveller) => traveller.Id == 456)
            .Create("(traveller)-[:TRAVELLING]->(travelling:Trip {newTrip})")
            .WithParam("newTrip", newTrip)
            .ExecuteWithoutResults();

        var tstamp = client.Cypher
              .Match("(trip:Trip)")
              .Where((Trip trip) => trip.Name == "Antibes")
              .With("trip AS tripToLink")
              .Call("ga.timetree.events.attach({ node: 'tripToLink', time: 1483828451000, relationshipType: \"ARRIVING_ON\"})")
              .Yield("node")
              .Return(node => new { TimeStamp = node.As<TimeStamp>() });

以下内容适用于Shell:

MATCH (trip:Trip)
WHERE trip.Name = "Antibes"
WITH trip
CALL ga.timetree.events.attach({node: trip, time: 1483828451000 , relationshipType: "ARRIVING_ON"})
YIELD node RETURN node

1 个答案:

答案 0 :(得分:1)

首先 - 将所有代码放在那里做得很好,它让生活变得更轻松!

我认为这里的问题有两个:您拥有的tstamp变量类型为:ICypherFluentQuery<???>(我使用'?'来表示您正在创建的匿名类型) - 所以你需要实际得到结果才能得到任何回应。在您致电.Results之前,您实际上并未执行查询。

通常,我喜欢按原样创建查询,然后执行:

var tstamp = client.Cypher....
    /* rest of the query here */

var tStampResults = tstamp.Results;

当你这样做时,你可能会收到一个错误:

BadInputException: java.lang.String cannot be cast to org.neo4j.graphdb.Node

如果你从控制台中运行的查询中查看你的回复 - 你会看到你真的回来了:

╒═══════════════════════════╕
│"node"                     │
╞═══════════════════════════╡
│{"Id":"1","Name":"Antibes"}│
└───────────────────────────┘

那是因为你YIELD node Trip,所以你只能投射到var query = client.Cypher .Match("(trip:Trip)") .Where((Trip trip) => trip.Name == "Antibes") .With("trip") .Call("ga.timetree.events.attach({node: trip, time: 1483828451000 , relationshipType: \"ARRIVING_ON\"})") .Yield("node") .Return(node => node.As<Trip>()); //<-- Change here 类型:

powershell -file "C:\script.ps1"