Mar 16, 2020 04:25 PM
Feb 16, 2021 06:27 AM
Hi, thanks a lot for this useful script.
I tried to run it in an automation but it outputs an error: “TypeError: output.clear is not a function
at main on line 114”
The same script works fine as a block script.
How can I fix this please ?
Feb 16, 2021 07:47 AM
Hi, yes, the output is only available in the script. If you remove all lines that start with output.
like: output.text(…), output.clear(…). output.markdown(…), etc
Mar 30, 2021 04:02 PM
Thanks. This is excellent.
Apr 29, 2021 08:07 AM
Hi there and thanks for sharing @openside! Incredibly valuable solution.
My question is, if you are working in a dynamic scenario where a linked relationship could be unlinked from one end, is there a way to run a version of this script to check for this and do the reverse and remove links?
Thanks in advance!
Apr 30, 2021 12:56 PM
Hi @Brett_Snelgrove - I don’t have plans to modify the script, maybe someone else can run with that idea. It does get tricky trying to keep both ways working and in sync, probably why Airtable never implemented it. Sorry can’t be of more help this time around.
Jun 07, 2021 06:06 AM
Hello @openside . Thanks for this script. Very useful.
I am just using it in a scripting block. No fancy automation. When using this script, I have noticed a limitation / bug which I would like to confirm with you. It does not look like anybody else has pointed this out, so I may be mistaken here:
The script does not remove the last backlink in a cell of the destination column. Let me explain with an example. Consider three records:
ID | Predecessor ID | Successor ID
1 | | 2, 3
2 | 1 | 3
3 | 1, 2 |
If I remove “1” from the “Predecessor ID” column of record number 2, and if I then run the script, the “Successor ID” column of record 1 gets updated correctly. It ends up with just the value “3” in that column.
If I remove the “2” from the “Predecessor ID” column of record number 3, and if I then run the script, the “3” does not get removed from the “Successor ID” column of record number 2.
Looking at the code, I saw that the reason for this behaviour could be because a “destination” cell is touched ONLY if it has been mentioned somewhere in the source column of any record. If a destination cell has not been mentioned, then its value does not get updated at all.
Is this a known issue? Do you have any quick way to fix this? Would it work to just (programmatically) delete the entire column’s values at the start of the script?
I made the following change, which worked. After line 78, I added the following line:
if (!tree[rec.id]) tree[rec.id] = []
But this obviously increases the running time of the script tremendously.
Manually, I know that I can just click on the column header to select the entire column and then press the delete key to clear the column instantly. What is the syntax to do this programmatically?
Jun 07, 2021 08:43 AM
@Anjan - I haven’t tested this, but try the updated code: Same Table Backlinks · GitHub
I expanded on your change to check all and update if there were some remaining that need to be cleared, and ignore if it was already empty, so should reduce the time running.
Let me know if it works.
Jun 12, 2021 04:26 AM
Disclaimer: I have the most rudimentary understanding of JS that it’s possible to have (but I’m trying to learn!)
Thank you for creating this script - it should do all I need to do, but I’m getting an error message as follows:
TypeError: null is not an object (evaluating ‘pRecord.getCellValue(dest).length’)
at asyncFunctionResume
at promiseReactionJob
Please can someone who understands what they’re doing help me to correct this!
Jun 16, 2021 07:20 PM
You got TypeScript’d. Typing aside, null is not an object is a pretty strong indication that some part of the code is executing sooner than it was intended to. Making matters even more interesting is the fact that you’re dealing with a null value; this is significant because unlike undefined objects, anything js labels as null had to have been manually set to that nil-value by someone or something. The Monaco linter hasn’t given up any line numbers? Can you try copy-pasting the code into VSC? Ideally with all of the major js+ts plugins installed, the entire software suite is free.
Jul 02, 2021 12:42 PM
I keep getting an error message when I try to run this script.
TypeError: Cannot read property 'length' of null
at findChildren on line 92
at async syncLinks on line 108
at async main on line 116
I think I have everything configured correctly. Any suggestions on what to try next?