Releases: supabase-community/postgrest-rb
Releases · supabase-community/postgrest-rb
v0.3.2
v0.3.1
Add Gemfile.lock to the files and fixed bug when trying to fetch data
v0.3.0
Added more methods to the PostgREST DSL. Things like a full query already works:
db.from('todos').select(:id, :title).owners(:name, as: :owner).workers(:name, as: :worker).in(id: [112, 113]).order(id: :asc).execute
#<Postgrest::Responses::GetResponse GET OK data=[{"id"=>112, "title"=>"Eat something", "owner"=>{"name"=>"Marcelo"}, "worker"=>{"name"=>"Marcelo"}}, {"id"=>113, "title"=>"Go to the gym", "owner"=>{"name"=>"Marcelo"}, "worker"=>nil}]>
v0.2.0
Added methods that makes this gem to be something that you can start to use and get motivated with the project, come help me with this project 🔥