Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit b04ebad

Browse files
committed
Doku extended/corrected
1 parent 663f49e commit b04ebad

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77

88
# Airtable.java
99

10-
Java API for Airtable (http://www.airtable.com). The Airtable API provides a simple way of accessing your data within your Java project.
10+
This is a Java API client for Airtable (http://www.airtable.com).
11+
12+
The Airtable API provides a simple way of accessing data within Java projects.
1113

1214
More information about the Airtable API could be found at [https://airtable.com/api](https://airtable.com/api).
1315
The documentation will provide detailed information about your created base.
@@ -251,6 +253,10 @@ List<Movie> retval = base.table("Movies", Movie.class).select();
251253

252254
Detailed example see [TableSelectTest.java](https://github.com/Sybit-Education/airtable.java/blob/develop/src/itest/java/com/sybit/airtable/TableSelectTest.java)
253255

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.
259+
254260
## Find
255261
Use `find` to get specific records of table:
256262

@@ -333,12 +339,13 @@ Short overview of features, which are supported:
333339
+ [x] SelectAll
334340
+ [x] Queries (`maxRecords`, `sort` & `view` )
335341
+ [x] Support of `filterByFormula`
336-
+ [x] Support of Paging
342+
+ [x] Support of `paging`
343+
+ [x] Support of appending `offset` data
337344

338345
+ [x] Find Record
339-
340346
+ [x] Create Record
341347
+ [x] Update Record
348+
+ [ ] Replace Record (could be done by update)
342349
+ [x] Delete/Destroy Record
343350
+ General requirements
344351
+ [x] Automatic ObjectMapping

0 commit comments

Comments
 (0)