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