We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@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.
.size()
Any help would be much appreciated!
The text was updated successfully, but these errors were encountered:
Hi @magicmass could you provide an example airtable to reproduce?
Sorry, something went wrong.
No branches or pull requests
@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.
It returns null for each value but it
.size()
shows all values are there.Any help would be much appreciated!
The text was updated successfully, but these errors were encountered: