-
Notifications
You must be signed in to change notification settings - Fork 4
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
[CSL-3114] Update docs to reflect new 10k limit #189
[CSL-3114] Update docs to reflect new 10k limit #189
Conversation
src/modules/catalog.js
Outdated
@@ -1119,6 +1119,7 @@ class Catalog { | |||
* }, | |||
* }); | |||
*/ | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
extra space here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
src/modules/catalog.js
Outdated
@@ -886,7 +886,7 @@ class Catalog { | |||
} | |||
|
|||
/** | |||
* Add item groups to index (limit of 1,000) | |||
* Add item groups to index (limit of 10,000) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Mudaafi Were you able to verify with backend that this 10k change was also applied to groups endpoint? I am asking because Items and Variations are on V2 and Groups are in V1.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's a good point, let me ask them
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverting this to 1k items following backend's lead: https://constructor.slack.com/archives/CA44G41HA/p1709562698499959?thread_ts=1709314392.618379&cid=CA44G41HA
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Updates the documentation to reflect the new 10k item limit when
I didn't regenerate the docs just yet. Will do so before I merge.