Meaning of "in", "nin" query operators of crm_objects function
FWIW, unless anyone corrects this, my assumption is that the HubL crm_object(s) function queries behave as the HubDB API docs in that "in" and "nin" apply only to number, select, and multiselect (as I has stated earlier but couldn't find where I'd seen this):
I had a few questions to help give our community members more information.
Are you trying to query records where a single property might match any of multiple values? (For example, finding contacts where `status` is either "lead," "customer," or "partner")
Or are you trying to query records that match multiple properties, each with their own value? (For example, finding contacts where `firstname` = "John" AND `email` contains "company.com")
For the operators:
`in`: Returns objects where the property value matches ANY of the given values (is IN the list)
`nin`: Returns objects where the property value does NOT match ANY of the given values (is NOT IN the list)
Meaning of "in", "nin" query operators of crm_objects function
Thank you for the quick response and for the evidence of my hypothesis. Any ideas on the second part of my question then? If I do an exact match query "property__eq=VALUE" (expected results) as opposed to "property__in=VALUE,VALUEB" (zero results). Does the in operator only apply to dropdown/picklists? Or does it apply to string properties as well?
UPDATE:
I just noticed your link is to "crm_object" and not "crm_objects". Would that matter?