You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/code/Magento/UrlRewriteGraphQl/etc/schema.graphqls
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ type Query {
5
5
urlResolver(url: String!): EntityUrl@resolver(class: "Magento\\UrlRewriteGraphQl\\Model\\Resolver\\EntityUrl") @doc(description: "The urlResolver query returns the relative URL for a specified product, category or CMS page")
6
6
}
7
7
8
-
typeEntityUrl@doc(description: "EntityUrl is an output object containing the `id`, `canonical_url`, and `type` attributes") {
8
+
typeEntityUrl@doc(description: "EntityUrl is an output object containing the `id`, `relative_url`, and `type` attributes") {
9
9
id: Int@doc(description: "The ID assigned to the object associated with the specified url. This could be a product ID, category ID, or page ID.")
10
10
relative_url: String@doc(description: "The internal relative URL. If the specified url is a redirect, the query returns the redirected URL, not the original.")
11
11
type: UrlRewriteEntityTypeEnum@doc(description: "One of PRODUCT, CATEGORY, or CMS_PAGE.")
0 commit comments