Skip to content
This repository was archived by the owner on Nov 29, 2023. It is now read-only.

nested filters can't be handled because of bug in reg-ex #64

@datze

Description

@datze

The Java OData Generator sometimes generates and filter strings which are nested like this:

(((a eq '1') and (b eq '2')) and (c eq '3')) 

In odata-helper.js this filter is split into

((a eq '1')
(b eq '2'))
(c eq '3'))

which do not match the regular expressions in applyFilter() because these can only handle one open or close parenthesis.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions