Question about the handling of entities: If i def...
# troubleshooting
j
Question about the handling of entities: If i define a stream_map for tap-hubspot:
Copy code
stream_maps:
        companies:
          __filter__: properties.custom_prop = 'true' and (properties.custom_prop
            is not None) and (properties.custom_prop != '')
it happily works the way i expect, but when i try to select only that property with a select statement, it can't find it:
Copy code
❯ meltano run tap-hubspot target-jsonl
2024-11-02T02:41:59.868084Z [warning  ] Property `custom_prop` was not found in the schema of stream `companies`
1
Specifying that i have flattening enabled, so the output without the select has the entity named
properties__custom_prop
This is the path to the property
.streams[2].schema.properties.properties.properties.custom_prop
i guess this is related closely enough to my previous thread i should have kept it there
Disregard, i guess. I got it working with the mapper utility instead
👍 1