const result = props.find((prop) => {
        const wherePropValues = whereConditions[prop];
        const fieldValue = model[prop]
        if (Array.isArray(wherePropValues))
          return (wherePropValues.includes(fieldValue));