Jessica Li
03/24/2025, 1:17 PMselect
to specify only the desired nested fields? is it always required to explicitly deselect all other unwanted fields? for tap-example
, if there were many unwanted attributes, they would all need to be listed as !entity.attributes.a
, entity.attributes.b
, etc.,? is there no way to ignore all other nested fields aside from the ones selected?
plugins:
extractors:
- name: tap-example
select:
- entity.id
# - entity.attributes # without this, SDK will drop attributes
# - entity.attributes.* # without this, no nested properties will be selected
- entity.attributes.name # select wanted nested property
# - "!entity.attributes.unwanted" # without this, all other nested properties will be selected
Edgar Ramírez (Arch.dev)
03/26/2025, 12:03 AM