Search:

Type: Posts; User: Tye East; Keyword(s):

Search: Search took 0.02 seconds.

  1. I'm actually having a similar issue where I've...

    I'm actually having a similar issue where I've changed a property and the findByQuery on the old property value is still returning the node. I think the indexes are maybe not being updated on...
  2. Ok, took your hint, Reverted the User class...

    Ok, took your hint,

    Reverted the User class to


    public class User
    {
    @Indexed private String firstName;
    @Indexed private String lastName;
    }
  3. Spring Data Graph: Multiple index queries?

    Given a situation where I have an Entity with multiple indexes.



    public class User
    {
    @Indexed(indexName = "user-firstname", fulltext=true) private String firstName;
    @Indexed(indexName =...
  4. Replies
    6
    Views
    572

    So I spent Sunday working on a proof of concept. ...

    So I spent Sunday working on a proof of concept. Along the way I was messing with the TransactionEventHandler and realized it might not be the right path to take for a couple of reasons.

    The most...
  5. Replies
    6
    Views
    572

    Yeah, there's only one historical node per node. ...

    Yeah, there's only one historical node per node.

    I looked at the TransactionEventHandler API it does look like the right place to start. I think you're right about doing up a proof of concept,...
  6. Replies
    6
    Views
    572

    Thank you for the quick reply, Any support...

    Thank you for the quick reply,

    Any support would be great as I'm very new to Spring Data Graph.
    I was actually kind of hoping someone would reply with "You're an idiot, just use this simple...
  7. Replies
    6
    Views
    572

    Spring data graph state history

    I'm working on a project that requires node state histories be saved. The use case being that a user may need to see what the system looked like at a given datetime, ex: September 3rd at 11:42am.
    ...
Results 1 to 7 of 7