feat(formatter): add number action with math operation transformer (#1264)

* feat(formatter): Add number action with math operation transformer

* chore: Use different folders for list transform options of formatter
This commit is contained in:
Ömer Faruk Aydın
2023-09-05 13:02:43 +02:00
committed by GitHub
parent 18cef5f3bd
commit c9f292e252
17 changed files with 175 additions and 13 deletions

View File

@@ -13,10 +13,58 @@ export const GET_DYNAMIC_FIELDS = gql`
required
description
variables
dependsOn
value
options {
label
value
}
source {
type
name
arguments {
name
value
}
}
additionalFields {
type
name
arguments {
name
value
}
}
fields {
label
key
type
required
description
variables
value
dependsOn
options {
label
value
}
source {
type
name
arguments {
name
value
}
}
additionalFields {
type
name
arguments {
name
value
}
}
}
}
}
`;