@stritti I think i have found a bug.
Trying to print all record id's from a formula field in airtable. The formula is using the RECORD_ID() function to display all the ID's.
String[] field= {"Record_ID"};
System.out.println(table.select(field).size());
List<User> recordIDs = table.select(field);
for (User user : recordIDs) {
System.out.println(user.getRecordID().toString());
}
It returns null for each value but it .size() shows all values are there.
Any help would be much appreciated!