Hi All,
i have a query related to logical expression
as you can see their is a logic mentioned in below code which is i am using in a database table but now i need to use this logic in expression rule to show grid field so any one can help me to implement this logic or you can give any example
we requird the filter on below case where status
in('Started','Pending','Suspended','Resumed','On Going') OR ( in('Cancelled','Completed')AND ModifiedDate >= (GETDATE()-7))
Discussion posts and replies are publicly visible
a!queryRecordType( recordType: recordType!abc, fields: a!queryLogicalExpression( operator: "OR", filters: { a!queryFilter( field: recordType!abc.xyz, operator: "in", value: "Started" ) } ) )
Like that you can continue the queryFilter to get the value.