SuiiiOriginal post
Rank 4: Virtual Machine
Plain text
Query.startsWith('familyNameEN', params.searchTerm!), Query.limit(params.pageSize!), // Query.offset(getOffsetSize(params.pageNumber!, params.pageSize!)) ]))```Summary
The developers were discussing an issue with an invalid query containing "OR" and "limit." It was explained that OR queries can only contain filter queries like "startswith" OR "equals." The code provided shows an example of a proper query using "startswith" OR "equals" without the limit and offset included within the OR query.