I'm new to Postgres and postgREST. I would need to receive distinct records from one column - ideally with possibility to filter.
Task I need to solve is in SQL
select distinct "column1" where "column2" = "value2 and "column3" = "value3
"
column1, column2, colum3 and values should be parameters of the REST call.
in postgREST I will likely need to use a function or stored procedure, but I'm new to this.
Can you please help?