how can I use multiple filter for recordfilter list?

For one filter option I want to add to query filter in the record because the filter options are not in the cdt/table, when I apply 2 filters, it ignores the second filter. 

How can I use multiple filter for recordfilter list?

  Discussion posts and replies are publicly visible

Parents Reply
  • So the filter I am adding is not in the cdt, I added custom filter options and one option can have two different query filters. When I add two filters, appian skipped the second filter.
    for example:

    a!recordFilterListOption(
    id:1,
    name:"Show my tasks only",
    filter:{
    a!queryFilter(
    field:assignedTo
    operator:"=",
    value:loggedInUser()
    ),
    if(a!isUserMemberOfGroup(
    username:loggedInUser(),
    groups:{}),

    a!queryFilter(
    field: status
    operator: "=",
    value: cons!STATUS_RETURNED
    ),
    {}
    )
    }
    ),

Children