Skip to content

Commit 5429b50

Browse files
authored
Increase how many products are fetched
Inncreased initial limit to 200 products
1 parent 90e00e6 commit 5429b50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/gql/GQL_QUERIES.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ export const FETCH_FIRST_PRODUCTS_FROM_HOODIES_QUERY = `
103103
`;
104104

105105
/**
106-
* Fetch first 24 Woocommerce products from GraphQL
106+
* Fetch first 200 Woocommerce products from GraphQL
107107
*/
108108
export const FETCH_ALL_PRODUCTS_QUERY = gql`
109109
query MyQuery {
110-
products(first: 24) {
110+
products(first: 200) {
111111
nodes {
112112
id
113113
databaseId

0 commit comments

Comments
 (0)