We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4394dba commit ec434b8Copy full SHA for ec434b8
sources/hubspot/__init__.py
@@ -98,10 +98,12 @@ def fetch_data_for_properties(
98
associations = CRM_OBJECT_ASSOCIATIONS[object_type]
99
joined_associations = ",".join(associations)
100
params: Dict[str, Any] = {
101
- "associations": joined_associations,
102
"properties": joined_props,
103
"limit": 100,
104
}
+ if associations:
105
+ params["associations"] = joined_associations
106
+
107
context: Optional[Dict[str, Any]] = (
108
{SOFT_DELETE_KEY: False} if soft_delete else None
109
)
0 commit comments