-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit adds the ability to use `and` and `or` in the query API. Typical usage would be: ```ts q.where( or( and( expression('owner', '=', 'arv'), expression('priority', '=', 'high'), ), expression('status', '=', 'open'), ), ) ``` I think we want to design the surface API further but this unblocks us. This commit also contains a few fixes: - MutableTreeView was incorrectly telling the AbstractView not to call the listeners when it got an update that didn't change the view. But, with branches in the graph we can have multiple calls to `_newData`. - With branches in the graph we the Source can get the same `PullMsg` more than once. Switch to a set to avoid this.
- Loading branch information
Showing
12 changed files
with
837 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.