Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for $and condition in getFindQuery #112

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
cc59781
getFindQuery support for $and condition enabling more same name & ope…
May 17, 2020
99f0378
Fixing support for multiple select query params
May 17, 2020
d6d7f69
Merge branch 'bugfix/multiple-select-queries'
May 17, 2020
34d3431
Wrong separator for GET query select
May 18, 2020
8123f34
Merge branch 'bugfix/multiple-select-queries'
May 18, 2020
d776261
getFindQuery support for $and condition tests
May 18, 2020
7d8af4d
validationForm query path
xamien Aug 17, 2020
27126ef
filter specific attributes in GET method
xamien Aug 18, 2020
f1dad47
Update Resource.js
xamien Aug 25, 2020
12e7e45
Fixed sort function defined by query or pipelines.
siagimir Sep 8, 2020
98b4ea2
Merge pull request #1 from siagimir/master
xamien Sep 9, 2020
f6c2912
Added limit for performing an exact count query.
siagimir Oct 1, 2020
d3df138
Added MAX_COUNT_LIMIT property description to a new section.
siagimir Oct 1, 2020
3153417
Merge pull request #2 from siagimir/master
xamien Oct 1, 2020
29ac32a
minimal limit for aggregations with nested query or sort
xamien Oct 20, 2020
e47d33b
Merge pull request #3 from xamien/xamien-patch-1
siagimir Oct 21, 2020
208175e
Merge pull request #1 from xamien/master
siagimir Dec 14, 2020
db15c23
Fixed parsing FORMIO_AGGREGATE_MIN_LIMIT env property's value.
Dec 14, 2020
f0c072a
Merge pull request #4 from siagimir/master
siagimir Dec 14, 2020
f5dcb73
Fix skip parameter when populate exists.
Jan 6, 2021
8ba0e8c
Merge pull request #5 from xamien/fix-skip-when-populate
siagimir Jan 6, 2021
fc02657
fixing count optimization when populate
xamien Feb 15, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ Resource(app, route, name, model)
- ***name*** - The name of the resource, which will then be used for the URL path of that resource.
- ***model*** - The Mongoose Model for this interface.

Properties
----------------
There is environment variable ```MAX_COUNT_LIMIT``` used when executing a count query. It represents a threshold for deciding whether to return a real number of records or the given limit.

Only exposing certain methods
-------------------
You can also expose only a certain amount of methods, by instead of using
Expand Down
Loading