File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/code/Magento/CatalogUrlRewriteGraphQl/etc Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3
3
4
4
interface ProductInterface {
5
5
url_key : String @doc (description : " The part of the URL that identifies the product" )
6
- url_path : String @doc ( description : " The part of the URL that precedes the url_key " )
6
+ url_path : String @deprecated ( reason : " Use product's `canonical_url` or url rewrites instead " )
7
7
url_rewrites : [UrlRewrite ] @doc (description : " URL rewrites list" ) @resolver (class : " Magento\\ UrlRewriteGraphQl\\ Model\\ Resolver\\ UrlRewrite" )
8
8
}
9
9
10
10
input ProductFilterInput {
11
11
url_key : FilterTypeInput @doc (description : " The part of the URL that identifies the product" )
12
- url_path : FilterTypeInput @doc ( description : " The part of the URL that precedes the url_key " )
12
+ url_path : FilterTypeInput @deprecated ( reason : " Use product's `canonical_url` or url rewrites instead " )
13
13
}
14
14
15
15
input ProductSortInput {
16
16
url_key : SortEnum @doc (description : " The part of the URL that identifies the product" )
17
- url_path : SortEnum @doc ( description : " The part of the URL that precedes the url_key " )
17
+ url_path : SortEnum @deprecated ( reason : " Use product's `canonical_url` or url rewrites instead " )
18
18
}
19
19
20
20
enum UrlRewriteEntityTypeEnum @doc (description : " This enumeration defines the entity type." ) {
You can’t perform that action at this time.
0 commit comments