INPUT_OBJECT
DerivedDataProcessingRulesInput
Derived Data Processing Rules Only one type of rules can be defined at once
link GraphQL Schema definition
- input DerivedDataProcessingRulesInput {
- # Processing rules may be expressed in [jmespath syntax](https://jmespath.org/)
- #
- # Note that rules can be daisy-chained in multiple steps which can make
- # rule-writing simpler.
- #
- # This is only in an initial version of derived data query support and may be
- # replaced with
- # strongly typed processing rules expressed in GraphQL.
- #
- # Recommendation to create your derived data processing rules in jmsepath:
- # 1. Run the query with an empty jmesPathRules field
- # 2. Copy the response into the [jmsepath tutorial as
- # input](https://jmespath.org/tutorial.html)
- # 3. Form your processing rules
- # 4. Copy and paste these processing rules into your query's jmesPathRules field
- String!] : [
- # Processing rules may be expressed in [jsonata
- # syntax](https://docs.jsonata.org/overview.html)
- #
- # Note that rules can be daisy-chained in multiple steps which can make
- # rule-writing simpler.
- #
- # This is only in an initial version of derived data query support and may be
- # replaced with
- # strongly typed processing rules expressed in GraphQL.
- #
- # Recommendation to create your derived data processing rules in jsonata:
- # 1. Run the query with an empty jsonataRules field
- # 2. Copy the response into the [jsonata query
- # playground](https://try.jsonata.org/)
- # 3. Form your processing rules
- # 4. Copy and paste these processing rules into your query's jsonataRules field
- String!] : [
- }