Skip to content

Releases: supabase-community/postgrest-rb

v0.3.2

20 Mar 14:06
a2190eb
Compare
Choose a tag to compare

Automatically decompress response's body

v0.3.1

07 May 11:31
e361231
Compare
Choose a tag to compare

Add Gemfile.lock to the files and fixed bug when trying to fetch data

v0.3.0

05 May 16:14
7d780dd
Compare
Choose a tag to compare

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

04 May 14:59
7a1e9c0
Compare
Choose a tag to compare

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 🔥