File tree Expand file tree Collapse file tree 3 files changed +1
-22
lines changed
app/code/Magento/CatalogGraphQl/etc
dev/tests/api-functional/testsuite/Magento/GraphQl/Catalog Expand file tree Collapse file tree 3 files changed +1
-22
lines changed Original file line number Diff line number Diff line change 85
85
<argument name =" extendedConfigData" xsi : type =" array" >
86
86
<item name =" product_url_suffix" xsi : type =" string" >catalog/seo/product_url_suffix</item >
87
87
<item name =" category_url_suffix" xsi : type =" string" >catalog/seo/category_url_suffix</item >
88
- <item name =" product_use_categories" xsi : type =" string" >catalog/seo/product_use_categories</item >
89
- <item name =" save_rewrites_history" xsi : type =" string" >catalog/seo/save_rewrites_history</item >
90
88
<item name =" title_separator" xsi : type =" string" >catalog/seo/title_separator</item >
91
- <item name =" category_canonical_tag" xsi : type =" string" >catalog/seo/category_canonical_tag</item >
92
- <item name =" product_canonical_tag" xsi : type =" string" >catalog/seo/product_canonical_tag</item >
93
89
<item name =" list_mode" xsi : type =" string" >catalog/frontend/list_mode</item >
94
90
<item name =" grid_per_page_values" xsi : type =" string" >catalog/frontend/grid_per_page_values</item >
95
91
<item name =" list_per_page_values" xsi : type =" string" >catalog/frontend/list_per_page_values</item >
96
92
<item name =" grid_per_page" xsi : type =" string" >catalog/frontend/grid_per_page</item >
97
93
<item name =" list_per_page" xsi : type =" string" >catalog/frontend/list_per_page</item >
98
- <item name =" flat_catalog_category" xsi : type =" string" >catalog/frontend/flat_catalog_category</item >
99
94
<item name =" catalog_default_sort_by" xsi : type =" string" >catalog/frontend/default_sort_by</item >
100
- <item name =" parse_url_directives" xsi : type =" string" >catalog/frontend/parse_url_directives</item >
101
- <item name =" remember_pagination" xsi : type =" string" >catalog/frontend/remember_pagination</item >
102
95
</argument >
103
96
</arguments >
104
97
</type >
Original file line number Diff line number Diff line change @@ -405,18 +405,11 @@ type SortFields @doc(description: "SortFields contains a default value for sort
405
405
type StoreConfig @doc (description : " The type contains information about a store config" ) {
406
406
product_url_suffix : String @doc (description : "Product URL Suffix" )
407
407
category_url_suffix : String @doc (description : "Category URL Suffix" )
408
- product_use_categories : Int @doc (description : "Use Categories Path for Product URLs" )
409
- save_rewrites_history : Int @doc (description : "Create Permanent Redirect for URLs if URL Key Changed" )
410
408
title_separator : String @doc (description : "Page Title Separator" )
411
- category_canonical_tag : Int @doc (description : "Use Canonical Link Meta Tag For Categories" )
412
- product_canonical_tag : Int @doc (description : "Use Canonical Link Meta Tag For Products" )
413
409
list_mode : String @doc (description : "List Mode" )
414
410
grid_per_page_values : String @doc (description : "Products per Page on Grid Allowed Values" )
415
411
list_per_page_values : String @doc (description : "Products per Page on List Allowed Values" )
416
412
grid_per_page : Int @doc (description : "Products per Page on Grid Default Value" )
417
413
list_per_page : Int @doc (description : "Products per Page on List Default Value" )
418
- flat_catalog_category : Int @doc (description : "Use Flat Catalog Category" )
419
414
catalog_default_sort_by : String @doc (description : "Default Sort By" )
420
- parse_url_directives : Int @doc (description : "Parse URL directives" )
421
- remember_pagination : Int @doc (description : "Remember Pagination" )
422
415
}
Original file line number Diff line number Diff line change @@ -30,20 +30,13 @@ public function testGetStoreConfig()
30
30
storeConfig{
31
31
product_url_suffix,
32
32
category_url_suffix,
33
- product_use_categories,
34
- save_rewrites_history,
35
33
title_separator,
36
- category_canonical_tag,
37
- product_canonical_tag,
38
34
list_mode,
39
35
grid_per_page_values,
40
36
list_per_page_values,
41
37
grid_per_page,
42
38
list_per_page,
43
- flat_catalog_category,
44
- catalog_default_sort_by,
45
- parse_url_directives,
46
- remember_pagination
39
+ catalog_default_sort_by
47
40
}
48
41
}
49
42
QUERY ;
You can’t perform that action at this time.
0 commit comments