Josh Jeffries
03/13/2023, 10:24 AMrecord_selector:
type: RecordSelector
extractor:
type: DpathExtractor
field_path:
- items
transformations:
- type: RemoveFields
field_pointers:
- [ "items", "links" ]
My json record response
{
"userId": 860,
"firstName": "__WebServiceUser_",
"email": "",
"deleted": true,
"mentionName": "@__webserviceuser_",
"createdAt": "2021-08-24T00:02:04Z",
"updatedAt": "2021-08-24T00:02:04Z",
"links": {
"self": "<https://eu2api.jobadder.com/v2/users/860>",
"userGroups": "<https://eu2api.jobadder.com/v2/users/860/usergroups>"
}
}
This should have removed the links array, but hasn't. I have tried with various field_pointers all with the same results. I also can't get the AddField transformation to work either.Alexandre Girard (Airbyte)
03/13/2023, 3:38 PMtransformations:
- type: RemoveFields
field_pointers:
- [ "links" ]Josh Jeffries
03/15/2023, 8:21 AM