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 Mar 31, 2025. It is now read-only.
If you set the view parameter, the returned records in that view will be sorted by these fields.
229
231
230
-
Detailed example see [TableParameterTest](https://github.com/Sybit-Education/airtable.java/blob/develop/src/test/java/com/sybit/airtable/TableParameterTest.java)
232
+
Detailed example see [TableParameterTest](https://github.com/Sybit-Education/airtable.java/blob/develop/src/itest/java/com/sybit/airtable/TableParameterTest.java)
231
233
232
234
233
235
## CRUD-Operations on Table Records
@@ -249,7 +251,11 @@ Base base = new Airtable().base("AIRTABLE_BASE");
Detailed example see [TableSelectTest.java](https://github.com/Sybit-Education/airtable.java/blob/develop/src/test/java/com/sybit/airtable/TableSelectTest.java)
254
+
Detailed example see [TableSelectTest.java](https://github.com/Sybit-Education/airtable.java/blob/develop/src/itest/java/com/sybit/airtable/TableSelectTest.java)
255
+
256
+
### API Result Limitation
257
+
The REST-API of Airtable is limited to return max. 100 records. If the select has more than 100 records in result an `offest` is added to
258
+
returned data. The Airtable.java client will solve this and tries to load the offset data automatically.
Actor actor = actorTable.find("rec514228ed76ced1");
264
270
```
265
271
266
-
Detailed example see [TableFindTest.java](https://github.com/Sybit-Education/airtable.java/blob/develop/src/test/java/com/sybit/airtable/TableFindTest.java)
272
+
Detailed example see [TableFindTest.java](https://github.com/Sybit-Education/airtable.java/blob/develop/src/itest/java/com/sybit/airtable/TableFindTest.java)
267
273
268
274
## Destroy
269
275
Use `destroy` to delete a specific records of table:
@@ -276,7 +282,7 @@ Base base = airtable.base("AIRTABLE_BASE");
Detailed example see [TableDestroyTest.java](https://github.com/Sybit-Education/airtable.java/blob/develop/src/test/java/com/sybit/airtable/TableDestroyTest.java)
285
+
Detailed example see [TableDestroyTest.java](https://github.com/Sybit-Education/airtable.java/blob/develop/src/itest/java/com/sybit/airtable/TableDestroyTest.java)
280
286
281
287
## Create
282
288
First build your record. Then use `create` to generate a specific records of table:
@@ -299,7 +305,7 @@ Actor test = actorTable.create(newActor);
299
305
300
306
```
301
307
302
-
Detailed example see [TableDestroyTest.java](https://github.com/Sybit-Education/airtable.java/blob/develop/src/test/java/com/sybit/airtable/TableCreateRecordTest.java)
308
+
Detailed example see [TableCreateRecordTest.java](https://github.com/Sybit-Education/airtable.java/blob/develop/src/itest/java/com/sybit/airtable/TableCreateRecordTest.java)
Detailed example see [TableUpdateTest](https://github.com/Sybit-Education/airtable.java/blob/develop/src/test/java/com/sybit/airtable/TableUpdateTest.java)
327
+
Detailed example see [TableUpdateTest](https://github.com/Sybit-Education/airtable.java/blob/develop/src/itest/java/com/sybit/airtable/TableUpdateTest.java)
322
328
323
329
# Roadmap
324
330
@@ -333,12 +339,13 @@ Short overview of features, which are supported:
assertEquals(movie.getDescription(),"The Godfather is a 1972 American crime film film directed by Francis Ford Coppola and produced by Albert S. Ruddy and based on Mario Puzo's best-selli...");
0 commit comments