How to find out whether a given ID is a Folder or a Document
I have an ID. It's currently an integer.
I want to know if there's a Document with that ID, or if there's a Folder with that ID. Why? Because if I guess and try to put it in the document() function, it will crash if it's a folder. If I guess and try to put it in the folder() function, it will crash if it's a document.
I've tried plugins, but the plugins have a super fun tendency to throw lots of Java errors destroying our logs whenever we try to find out if this stupid thing is a Document or a Folder.
Is there a way to do this out of the box? I want a rule that receives an integer and outputs the word "Document" or the word "Folder" or the word "Neither" and DOES NOT PINK BOX no matter what integer is.
