Skip to content

Commit 8ae6d15

Browse files
Minor doc update
1 parent 6e5f1cd commit 8ae6d15

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

docs/queryHandlers.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,9 @@ <h4 class="name" id=".getOracleRestQueryHandler"><span class="type-signature">(s
151151
enforce a particular format for the query itself. Therefore this API takes a parameter
152152
createQueryExp where the developer can plugin a function which takes the parameter
153153
value and returns a persistence store query. If none if provided then the
154-
default is to use the ADFBc REST query parameter structure which has the form
155-
?q=EmpId=100
154+
default is to use the ADFBc REST query parameter structure which has the form:
155+
?q=EmpId=100. Offline supports the following ADFBc operators in the expression:
156+
>, <, >=, <=, =, !=, AND, OR, LIKE.
156157
In addition, the query handler supports the limit and offset query parameters
157158
used for paging in the Oracle REST specification.
158159
</div>
@@ -559,7 +560,7 @@ <h5>Parameters:</h5>
559560

560561
<dt class="tag-source">Source:</dt>
561562
<dd class="tag-source"><ul class="dummy"><li>
562-
<a href="queryHandlers.js.html">queryHandlers.js</a>, <a href="queryHandlers.js.html#line344">line 344</a>
563+
<a href="queryHandlers.js.html">queryHandlers.js</a>, <a href="queryHandlers.js.html#line345">line 345</a>
563564
</li></ul></dd>
564565

565566

docs/queryHandlers.js.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ <h1 class="page-title">Source: queryHandlers.js</h1>
4949
* enforce a particular format for the query itself. Therefore this API takes a parameter
5050
* createQueryExp where the developer can plugin a function which takes the parameter
5151
* value and returns a persistence store query. If none if provided then the
52-
* default is to use the ADFBc REST query parameter structure which has the form
53-
* ?q=EmpId=100
52+
* default is to use the ADFBc REST query parameter structure which has the form:
53+
* ?q=EmpId=100. Offline supports the following ADFBc operators in the expression:
54+
* >, &lt;, >=, &lt;=, =, !=, AND, OR, LIKE.
5455
* In addition, the query handler supports the limit and offset query parameters
5556
* used for paging in the Oracle REST specification.
5657
* @method

src/queryHandlers.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ define(['./persistenceManager', './persistenceStoreManager', './persistenceUtils
2121
* enforce a particular format for the query itself. Therefore this API takes a parameter
2222
* createQueryExp where the developer can plugin a function which takes the parameter
2323
* value and returns a persistence store query. If none if provided then the
24-
* default is to use the ADFBc REST query parameter structure which has the form
25-
* ?q=EmpId=100
24+
* default is to use the ADFBc REST query parameter structure which has the form:
25+
* ?q=EmpId=100. Offline supports the following ADFBc operators in the expression:
26+
* >, <, >=, <=, =, !=, AND, OR, LIKE.
2627
* In addition, the query handler supports the limit and offset query parameters
2728
* used for paging in the Oracle REST specification.
2829
* @method

0 commit comments

Comments
 (0)