Hi all, this might be a very quick 'No' I'm doing the below to get tokens that have a value in represents, is it possible to do a field is not blank check in findObjs or is filter the way? var AllTokens = findObjs({_type: "graphic", layer: "objects", subtype: "token" }); AllTokens = AllTokens.filter(function(token){ var represents = token.get("represents"); return PCIds.includes(represents); });