You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,37 @@ Shall we?
124
124
125
125
Following API examples are shown based on the sample JSON data given [here](examples/data.json). To get a better idea of the examples see that JSON data first. Also detailed examples of each API can be found [here](examples/).
126
126
127
+
**List of API:**
128
+
129
+
*[fetch](#fetch)
130
+
*[find](#findpath)
131
+
*[at](#atpath)
132
+
*[from](#frompath)
133
+
*[where](#wherekey-op-val)
134
+
*[orWhere](#orwherekey-op-val)
135
+
*[whereIn](#whereinkey-val)
136
+
*[whereNotIn](#wherenotinkey-val)
137
+
*[whereNull](#wherenullkey)
138
+
*[whereNotNull](#wherenotnullkey)
139
+
*[whereStartsWith](#wherestartswithkey-val)
140
+
*[whereEndsWith](#whereendswithkey-val)
141
+
*[whereContains](#wherecontainskey-val)
142
+
*[sum](#sumproperty)
143
+
*[count](#count)
144
+
*[size](#size)
145
+
*[max](#maxproperty)
146
+
*[min](#minproperty)
147
+
*[avg](#avgproperty)
148
+
*[first](#first)
149
+
*[last](#last)
150
+
*[nth](#nthindex)
151
+
*[exists](#exists)
152
+
*[groupBy](#groupbyproperty)
153
+
*[sort](#sortorder)
154
+
*[sortBy](#sortbyproperty-order)
155
+
*[reset](#resetdata)
156
+
*[clone](#clone)
157
+
127
158
### `fetch()`
128
159
129
160
This method will execute queries and will return the resulted data. You need to call it finally after using some query methods. Details can be found in other API examples.
0 commit comments