Giter Site home page Giter Site logo

Comments (8)

Hakaze avatar Hakaze commented on July 25, 2024

So far it seems this parser is not capable of having (a and b) or (c and d). Since this is not a farfetched use case, it would be great to have this feature!

from node-odata-parser.

armw4 avatar armw4 commented on July 25, 2024

@Hakaze agreed

from node-odata-parser.

armw4 avatar armw4 commented on July 25, 2024

It needs to handle operator precedence properly.

from node-odata-parser.

DannyDouglass avatar DannyDouglass commented on July 25, 2024

👍

from node-odata-parser.

DannyDouglass avatar DannyDouglass commented on July 25, 2024

@ishwor-mis can you provide any insight on this issue?

from node-odata-parser.

armw4 avatar armw4 commented on July 25, 2024

What I have found is that if you want to do something like:

$filter=Name eq 'John' and LastName eq 'Doe' or MiddleName eq 'mdle' and emailAddress eq '[email protected]'

You must help this parser out by using grouping operators (, and ). If you do this, the parser will do a much better job at constructing the Abstract Syntax Tree (AST).

So I would change the aforementioned filter to:

$filter=(Name eq 'John' and LastName eq 'Doe') or (MiddleName eq 'mdle' and emailAddress eq '[email protected]')

The resulting AST will be much different (Array based), but will be straightforward enough to decompose/map (via recursion).

from node-odata-parser.

mkasberg avatar mkasberg commented on July 25, 2024

The PEG grammar used still doesn't handle operator precedence correctly. But now that #23 is merged, there is a simple workaround - just use parenthesis in your $filter clause.

from node-odata-parser.

armw4 avatar armw4 commented on July 25, 2024

You mean like I did above? That's worked for some time now

from node-odata-parser.

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.