I want to query all the names starting with p (case insensitive). Below is the query object and Organisation is my generated lb-service name
query = {
filter: {
order: 'updatedAt ASC',
where: {name: {ilike: 'P%'}}
};
Organisation.find({filter: query.filter})
You can use regex for this.