--- title: productTags - Storefront API description: | Tags added to products. Additional access scope required: unauthenticated_read_product_tags. api_version: 2025-10 api_name: storefront type: query api_type: graphql source_url: html: 'https://shopify.dev/docs/api/storefront/latest/queries/productTags' md: 'https://shopify.dev/docs/api/storefront/latest/queries/productTags.md' --- # product​Tags query Requires `unauthenticated_read_product_tags` access scope. Tags added to products. Additional access scope required: unauthenticated\_read\_product\_tags. ## StringConnection arguments [StringConnection!](https://shopify.dev/docs/api/storefront/latest/connections/StringConnection) * first [Int!](https://shopify.dev/docs/api/storefront/latest/scalars/Int) required Returns up to the first `n` elements from the list. *** ## Possible returns * edges [\[String​Edge!\]!](https://shopify.dev/docs/api/storefront/latest/objects/StringEdge) non-null A list of edges. * nodes [\[String!\]!](https://shopify.dev/docs/api/storefront/latest/scalars/String) non-null A list of the nodes contained in StringEdge. * page​Info [Page​Info!](https://shopify.dev/docs/api/storefront/latest/objects/PageInfo) non-null Information to aid in pagination. *** ## Examples * ### productTags reference ## Query Reference ```graphql { productTags(first) { # productTags fields } } ```