Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit cb8eed8

Browse files
♻️ Run on all rows
1 parent 40698d3 commit cb8eed8

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ export const airtableFill = async () => {
3636
const tables = config<string>("airtableTable");
3737
for await (const table of tables.split(",").map((i) => i.trim())) {
3838
console.log("Starting update for table", table);
39-
const rows = await getEmptyAirtableRows<Row>(table);
40-
console.log("Got empty rows", rows.length);
39+
// const rows = await getEmptyAirtableRows<Row>(table);
40+
// console.log("Got empty rows", rows.length);
41+
const rows = await getAllAirtableRows<Row>(table);
42+
console.log("Got all rows", rows.length);
4143
for await (const row of rows) {
4244
try {
4345
const newValues = await fill<Row>(row);

0 commit comments

Comments
 (0)