Question
Filter Data
Hi Team,
I have a column(Assignees) in a record type, there in the filter I'm thinking to write a logic like below
a!queryFilter(
field: 'recordType!Record Details.fields.assignees',
operator: "=",
value: loggedInUser()
),
id, Assignee(text)
-----------------------
1, "user1;user2"
2, "user2"
if the user1 login, record 1 should be displayed in the grid
if the user2 login, record 1,2 should be displayed in the grid
