QueryRecordType not returning all values.

I am trying to pull the records from a reference table.  There are 4 records in the table.

However, the expression rule is only pulling three records.

There are no filters on the record type.

The Expression Rule

a!queryRecordType(
recordType: 'recordType!PMSO REF VolunteerRequestStatus',
fields: {
'recordType!PMSO REF VolunteerRequestStatus.fields.VolunteerStatus_id',
'recordType!PMSO REF VolunteerRequestStatus.fields.VolunteerStatus'
},
filters: {
a!queryFilter(
field: 'recordType!PMSO REF VolunteerRequestStatus.fields.isActive',
operator: "=",
value: true
)
},
pagingInfo: a!pagingInfo(
startIndex: 1,
batchSize: 10,
sort: a!sortInfo(
field: 'recordType!PMSO REF VolunteerRequestStatus.fields.sortBy',
ascending: true()
)
)
).data

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data