I’m trying to sync a database with baserow, and what happens is it tries to write to baserow only if the primary key doesn’t exist.
So in SQL, I would do something like
INSERT INTO transactions
(key, value)
VALUES (a, b)
ON CONFLICT (key)
DO NOTHING
This does not exists for baserow.
What I do now is first ask baserow to return the list of keys
, and then find the ones doesn’t exist, and create the rows.