How to filter password field

Hi @muammer_keles , It’s queit something nearly, you can create your own api, and make logic to revert the requests for the filters and for password since is encrypted you can parse the things using a function for exemple mine:

const applications = await strapi.query('application').find({
  filters: {
    domain: 'demo.com',
    'client.email': 'demo@gmail.com',
  },
});

const filteredApplications = applications.filter((app) => {
  // Decrypt the password and perform your custom comparison logic
  return decryptAndCompare(app.client.password, 'GT3D3D');
});