EntityUrl
Contains the uid, relative_url, and type attributes.
type EntityUrl = {
__typename?: 'EntityUrl'; /** @deprecated Use `relative_url` instead. */
canonical_url?: Maybe<Scalars['String']['output']>; /** The unique ID for a `ProductInterface`, `CategoryInterface`, `CmsPage`, or similar object associated with the specified URL. This could be a product, category, or CMS page UID. */
entity_uid?: Maybe<Scalars['ID']['output']>;
id?: Maybe<Scalars['Int']['output']>; /** Contains 0 when there is no redirect error. A value of 301 indicates the URL of the requested resource has been changed permanently, while a value of 302 indicates a temporary redirect. */
redirectCode?: Maybe<Scalars['Int']['output']>; /** The internal relative URL. If the specified URL is a redirect, the query returns the redirected URL, not the original. */
relative_url?: Maybe<Scalars['String']['output']>; /** One of PRODUCT, CATEGORY, or CMS_PAGE. */
type?: Maybe<UrlRewriteEntityTypeEnum>;
};