The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
It's quite annoying when you need to need to add another variable to a script, but it only lets you append to the end. They are always presented in a consistent order, so it's a bit of an artificial limitation that one cannot change this presentation...
TODAY() and some similar functions are broken because they're stuck on Greenwich Mean Time. What it's meant to do is return a value that changes once per day, at the start of the day. It does this by setting the time part of the current date and time...
Sometimes you need a bit of both, e.g. an automation is triggered deliberately via a checkbox but some other precondition like an email address fails. If the record is corrected whilst that box is ticked, you're back in race condition territory. Addi...
They've since removed reference to returnFieldsbyFieldId in the Update/Upsert sections. It makes little sense to have only one method that can key by ID. Any method that returns record data should support the same parameter. There's no advantage to i...
I just discovered this was likely the reason why we suddenly received "true-up" invoices for extra builders, whose seats cannot be removed, and cost thousands! Two of the users never added any bases added to their workspaces, but apparently that's st...
This is just another CPU-thrashing busy wait. You can see it for yourself, e.g. in Windows open Task Manager's view of individual CPU cores then run your solution in your browser's JS console. It will max. out a core the entire duration, blocking all...