Code Monkey home page Code Monkey logo

Comments (2)

jan-tennert avatar jan-tennert commented on May 20, 2024

This is not directly possible by calling both methods, as these methods overwrite each other. However, you can use a and or or statement to combine multiple filters on the same column (See logical-operators). I'm publishing a version 0.8.4-dev-1 containing a experimental DSL method for both:

supabaseClient.postgrest.from("user_books")
  .select(columns = "finish_date", count = Count.EXACT) {
        eq("user_id", "some_user_id")
        eq("reading_status", "FINISHED")
        and {
           gte("finish_date", "2023-01-01T00:00:00Z")
           lte("finish_date", "2023-12-31T23:59:59.999999999Z")
        } 
  }

The build should be done in around ~20-30min, let me know if it works or if I broke something! (Edit: It's done now)

from supabase-kt.

jollygreenegiant avatar jollygreenegiant commented on May 20, 2024

Works great, thanks so much for getting on that so quickly!

from supabase-kt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.