Giter Club home page Giter Club logo

Comments (5)

robconery avatar robconery commented on August 12, 2024

Probably the easiest way is to do this:

db(:emails)
|> filter("deleted_at IS NULL")
|> all

Although what you wrote above should work. I'm a bit puzzled because we had a filter method in there where you could:

db(:emails)
|> filter(:id, ">", 100)
|> all

... which should allow you to do this. Anyway the query here should work for you (for now) - I''ll leave this open to work on for 1.0.9. Cheers.

from moebius.

taylorbrooks avatar taylorbrooks commented on August 12, 2024

I get an unidentified func filter/4 for your 2nd example.

The first example works, but not when I pipe through filter() a second time:

iex(36)> db(:emails) |> filter(user_id: 16) |> count
919

iex(37)> db(:emails) |> filter(user_id: 16) |> filter("deleted_at IS NULL") |> count
36081

## what the queries look like: 

iex(38)> db(:emails) |> filter(user_id: 16)                                         
%Moebius.QueryCommand{columns: nil, error: nil, group_by: nil, join: [""],
 limit: "", offset: "", order: "", params: [16], pid: nil, sql: nil,
 table_name: "emails", type: :select, vals: nil, where: " where user_id = $1",
 where_columns: [:user_id]}

iex(39)> db(:emails) |> filter(user_id: 16) |> filter("deleted_at IS NULL")         
%Moebius.QueryCommand{columns: nil, error: nil, group_by: nil, join: [""],
 limit: "", offset: "", order: "", params: [], pid: nil, sql: nil,
 table_name: "emails", type: :select, vals: nil,
 where: " where deleted_at IS NULL", where_columns: [:user_id]}

So it appears the 2nd pass through filter() is destructive.

from moebius.

nurugger07 avatar nurugger07 commented on August 12, 2024

You can't pass through to filters now. This is something that I wanted to look at. @taylorbrooks We are doing it but updating :where in the map


Thanks,

Johnny

On Thu, Nov 19, 2015 at 9:07 PM, Taylor Brooks [email protected]
wrote:

I get an unidentified func filter/4 for your 2nd example.
The first example works, but not when I pipe through filter() a second time:

iex(36)> db(:emails) |> filter(user_id: 16) |> count
919
iex(37)> db(:emails) |> filter(user_id: 16) |> filter("deleted_at IS NULL") |> count
36081
## what the queries look like: 
iex(38)> db(:emails) |> filter(user_id: 16)                                         
%Moebius.QueryCommand{columns: nil, error: nil, group_by: nil, join: [""],
 limit: "", offset: "", order: "", params: [16], pid: nil, sql: nil,
 table_name: "emails", type: :select, vals: nil, where: " where user_id = $1",
 where_columns: [:user_id]}
iex(39)> db(:emails) |> filter(user_id: 16) |> filter("deleted_at IS NULL")         
%Moebius.QueryCommand{columns: nil, error: nil, group_by: nil, join: [""],
 limit: "", offset: "", order: "", params: [], pid: nil, sql: nil,
 table_name: "emails", type: :select, vals: nil,
 where: " where deleted_at IS NULL", where_columns: [:user_id]}

So it appears the 2nd pass through filter() is destructive.

Reply to this email directly or view it on GitHub:
#35 (comment)

from moebius.

nurugger07 avatar nurugger07 commented on August 12, 2024

I guess I should look at this issue :)

from moebius.

robconery avatar robconery commented on August 12, 2024

The filter issue is fixed; null values (from OP) are handled with string pass. If I'm wrong on understanding this please reopen.

from moebius.

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.