Filter a value and null values

Code snippet below shows a filter for field test whose value is reviewing.

a!queryFilter(
field: recordType! a.fields.test
operator: "=",
value: "Reviewing"
)

How can I filter field test whose values are "reviewing" or null?  I should be able to get rows 1 and 2

test
1 reviewing
2
3 resolved

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    a!queryEntity(
      entity: cons!recordType,
      query: a!query(
        selection: a!querySelection(
          columns: {
           
          }
        ),
        logicalExpression: a!queryLogicalExpression(
          operator: "OR",
          filters: {
            a!queryFilter(
    field: recordType! a.fields.test
    operator: "=",
    value: "Reviewing"
    ),
            a!queryFilter(
    field: recordType! a.fields.test
     operator: "is null"
    )
          },
          ignoreFiltersWithEmptyValues: true
        ),
        pagingInfo: a!pagingInfo(
          startIndex: 1,
          batchSize: -1
        )
      )
    )	

Reply
  • 0
    Certified Lead Developer

    a!queryEntity(
      entity: cons!recordType,
      query: a!query(
        selection: a!querySelection(
          columns: {
           
          }
        ),
        logicalExpression: a!queryLogicalExpression(
          operator: "OR",
          filters: {
            a!queryFilter(
    field: recordType! a.fields.test
    operator: "=",
    value: "Reviewing"
    ),
            a!queryFilter(
    field: recordType! a.fields.test
     operator: "is null"
    )
          },
          ignoreFiltersWithEmptyValues: true
        ),
        pagingInfo: a!pagingInfo(
          startIndex: 1,
          batchSize: -1
        )
      )
    )	

Children