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
{{ message }}
This repository was archived by the owner on Jan 31, 2022. It is now read-only.
Update README Android
[This list might not be relevant]
Add documentation for restrictSources (#134)
* Add documentation for restrictSources
adding typescript setup to menu (#131)
Adapt to the Swift-3-compatible 4.x version
fix singular method in indexing section
fix too many quotes
Move the add_objects, save_objects, delete_objects & partial_update_objects methods out of the Advanced section. (#127)
wording improvement for generate key method [ci skip]
Each entry in an index has a unique identifier called `objectID`.There are two ways to add an entry to the index:
579
579
580
-
1.Using automatic `objectID` assignment. You will be able to access it in the answer.
581
-
2.Supplying your own `objectID`.
580
+
1.Supplying your own `objectID`.
581
+
2.Using automatic `objectID` assignment. You will be able to access it in the answer.
582
582
583
583
You don't need to explicitly create an index, it will be automatically created the first time you add an object.
584
584
Objects are schema less so you don't need any configuration to start indexing. If you wish to configure things, the settings section provides details about advanced settings.
Note: Here we are decrementing the value by `42`. To decrement just by one, put
682
692
`value:1`.
683
693
694
+
To partial update multiple objects using one API call, you can use the `[Partial update objects](#partial-update-objects---partialupdateobjectsasync)` method:
695
+
696
+
```java
697
+
List<JSONObject> array = new ArrayList<JSONObject>();
You may want to perform multiple operations with one API call to reduce latency.
1981
-
We expose four methods to perform batch operations:
1982
-
1983
-
*Add objects - `addObjectsAsync`:Add an array of objects using automatic `objectID` assignment.
1984
-
*Update objects - `saveObjectsAsync`:Add or update an array of objects that contains an `objectID` attribute.
1985
-
*Delete objects - `deleteObjectsAsync`:Delete an array of objectIDs.
1986
-
*Partial update - `partialUpdateObjectsAsync`:Partially update an array of objects that contain an `objectID` attribute (only specified attributes will be updated).
0 commit comments