I'm successfully using the Neo4J Java API (currently version 2.2.1) to do simple queries like this:
Label label = DynamicLabel.label("User");
ResourceIterator<Node> providers = graphDb.findNodes(
label, "username", "player1"));
But is there a way to allow something other than a simple match (String in my case) for the values? Can I do REGEX, or provide a list of possible values that the key could match on for string comparisons? If so, are there any examples out there?
I've dug around the docs and my favorite search engines and can't seem to find anything other than a straight string match (such as this: http://neo4j.com/docs/2.2.1/tutorials-java-embedded-new-index.html).