Solved
how to define List of LogicalExpressions in query Record
I need 5 logical expressions inside the query record and each operator will have different values between AND/OR.
I need 5 logical expressions inside the query record and each operator will have different values between AND/OR.
Or you can try the below logic:
a!queryRecordType(
recordType: "RecordName",
fields: {},
filters: a!queryLogicalExpression(
operator: "AND / OR / AND_ALL",
logicalExpressions: a!forEach(
items: "ruleInput",
expression: a!queryLogicalExpression(operator: fv!item.operator, filters: {})
)
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.