# ResourceKind The type of resource a URL path resolves to. This enum represents the various resource types that can be returned when resolving a URL path in the system. ## Enum Definition ```graphql enum ResourceKind { PRODUCT PRODUCT_GROUP PAGE ARTICLE MANUFACTURER HOME LOGIN LOGOUT REGISTER ACCOUNT ACCOUNT_EDIT ACCOUNT_ORDERS ACCOUNT_WISHLIST CHANGE_PASSWORD RECOVER_PASSWORD RESET_PASSWORD CART CHECKOUT SEARCH BLOG PRODUCTS PRIVACY_POLICY SHIPPING_POLICY REFUND_POLICY TERMS_AND_CONDITIONS NOT_FOUND } ``` ## Values | Value | Description | |-------|-------------| | PRODUCT | A single product resource | | PRODUCT_GROUP | A product group or collection | | PAGE | A static page resource | | ARTICLE | A blog article resource | | MANUFACTURER | A manufacturer or brand resource | | HOME | The home page | | LOGIN | The login page | | LOGOUT | The logout page | | REGISTER | The user registration page | | ACCOUNT | The user account page | | ACCOUNT_EDIT | The account edit page | | ACCOUNT_ORDERS | The account orders page | | ACCOUNT_WISHLIST | The account wishlist page | | CHANGE_PASSWORD | The change password page | | RECOVER_PASSWORD | The recover password page | | RESET_PASSWORD | The reset password page | | CART | The shopping cart page | | CHECKOUT | The checkout page | | SEARCH | The search results page | | BLOG | The blog listing page | | PRODUCTS | The products listing page | | PRIVACY_POLICY | The privacy policy page | | SHIPPING_POLICY | The shipping policy page | | REFUND_POLICY | The refund policy page | | TERMS_AND_CONDITIONS | The terms and conditions page | | NOT_FOUND | A resource that was not found | ## Example ```graphql { resolveUrl(path: "/products/12345") { resourceKind resourceId } } ``` ## Related Types No related types available for this enum.