Collections page in Organization Details shows only 20 collections
B2B
•
ID: 891511
Fixed
Published on8/31/2023
•
Last updated on4/23/2024
1 min read
Summary
The Collections page in Organization Details shows only 20 collections even after changing the row quantity in the bottom of the page.
Simulation
- Make sure you have more than 20 active collections;
- In the admin, go to the B2B Organizations page, select an organization;
- Go to the Collections tab; you will see only 20 collections available.
Workaround
If the desired collection does not appear in the Collections tab, assign it using GraphQL IDE:
-
Access GraphQL IDE;
-
Select the app
vtex.b2b-organizations-graphql
; -
Use the mutation below and add the values for
id
,name
,collections.id
andcollections.name
mutation { updateOrganization ( id: "" name: "" status: "active" collections: [{ id: "" name: "" }] ){ status message }}