Skip to content

Commit 79ebdfc

Browse files
authored
PWA-3445: Change Error Causing Query Names to Fix Error Waringin in System.log (#4457)
1 parent f055390 commit 79ebdfc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/peregrine/lib/talons/RootComponents/Category/categoryContent.gql.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import { gql } from '@apollo/client';
22

33
export const GET_PRODUCT_FILTERS_BY_CATEGORY = gql`
4-
query getProductFiltersByCategory($filters: ProductAttributeFilterInput!) {
4+
query getProductFiltersByCategories(
5+
$filters: ProductAttributeFilterInput!
6+
) {
57
products(filter: $filters) {
68
aggregations {
79
label
@@ -33,7 +35,7 @@ export const GET_CATEGORY_CONTENT = gql`
3335
`;
3436

3537
export const GET_CATEGORY_AVAILABLE_SORT_METHODS = gql`
36-
query getCategoryAvailableSortMethods(
38+
query getCategoriesAvailableSortMethods(
3739
$categoryIdFilter: FilterEqualTypeInput!
3840
) {
3941
products(filter: { category_uid: $categoryIdFilter }) {

0 commit comments

Comments
 (0)