Replies: 1 comment 1 reply
-
Each transform should be seperate objects. Here you have one object for two transforms; transforms: [
{
filterSchema: {
mode: "wrap",
filters: ["query_result_items.!{name,age}"],
} as FilterSchemaTransform,
},
{
rename: {
mode: "wrap",
renames: [
{
from: {
type: "query_result_items",
field: "family",
},
to: {
type: "query_result_items",
field: "family_name",
},
},
],
} as RenameTransform,
},
], |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have a json-schema data source with two transforms at the source level as below:
As you can see I have one "filter transform" and a "rename transform" but the issue is my "rename transform" ONLY works when I remove the filter transform. So I can't use both of them for the same source. Is it a bug or it's the expected behavior?
Beta Was this translation helpful? Give feedback.
All reactions