update css vars

This commit is contained in:
Rami Bitar
2026-05-08 14:55:17 -04:00
parent 564c98c805
commit 6706a11f7b
21 changed files with 2513 additions and 97 deletions

View File

@@ -105,6 +105,30 @@ export const GET_PRODUCT_QUERY = `
}
`;
// Search products with cursor-based pagination and full filter support
export const GET_SEARCH_QUERY = `
${ProductFragment}
query SearchProducts(
$first: Int!
$query: String
$sortKey: ProductSortKeys
$reverse: Boolean
$after: String
) {
products(first: $first, query: $query, sortKey: $sortKey, reverse: $reverse, after: $after) {
edges {
node {
...ProductFragment
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
`;
// Get product recommendations
export const QUERY_PRODUCT_RECOMMENDATIONS = `
${ProductFragment}