DATAGRAPH-765 - Document supported query keywords.

This commit is contained in:
Luanne Misquitta
2016-01-27 13:56:33 +05:30
parent 83c88bcf69
commit 1c8bc60576
2 changed files with 56 additions and 0 deletions

View File

@@ -53,4 +53,15 @@ include::reference/migration/migration.adoc[]
:leveloffset: -1
[[Configuration]]
= Configuration in an HA Environment
:leveloffset: +1
include::reference/configuration/ha.adoc[]
:leveloffset: -1
[appendix]]
= Appendix
:leveloffset: +1
include::reference/appendix/appendix.adoc[]
:leveloffset: -1

View File

@@ -0,0 +1,45 @@
[[reference_appendix]]
= Appendix
== Repository Query Keywords
The following table lists the keywords generally supported by the Spring Data Neo4j repository query derivation mechanism.
[cols="1,1,2"]
.Query Keywords
|===
|Logical keyword|Keyword expressions|Restrictions
|`AND`
|`and`
|
|`OR`
|`or`
|Cannot be used to OR nested properties
|`GREATER_THAN`
|`GreaterThan`
|
|`LESS_THAN`
|`LessThan`
|
|`LIKE`
|`Like`, `IsLike`
|
|`NOT`
|`Not`
|
|`NOT_LIKE`
|`NotLike`, `IsNotLike`
|
|`REGEX`
|`Matches`
|
|===