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...
Type: Posts; User: Tye East; Keyword(s):
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...
Ok, took your hint,
Reverted the User class to
public class User
{
@Indexed private String firstName;
@Indexed private String lastName;
}
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 =...
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...
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,...
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...
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.
...