Goal: So I would like to check if a specific object with a specific name exists in the current model.
Q: How would I write an IF statement within a process flow custom code to query such a thing?
Current Code:
- if(model().find("Operator1").first){
- //Do something
- }else{
- //Do something else
- }
> Do I need to make the "model().find..." part == #, NULL, or something else?