Skip to Content

product

Get a single product by ID

Authentication

Public Access: Accessible with the public API key

Query Structure

{ product(id: ID!) { handle seoDescription seoTitle seoKeywords id combinedListing firstAvailableVariant hasOnlyDefaultVariant variants options optionsWithValues optionsByHandle defaultOrSelectedVariant tags customFields inPreview isAvailable isDirectlyBuyable title manufacturer shortDescription description images videos featuredImage featuredVideo compatible similar related deliverer productGroups returnPolicyTimeLimit rating reviewCount maxRating reviews attachments reviewsAreEnabled reviewsRequireAccount reviewsRequirePurchase reviewsRequireApproval taxonomy createdAt updatedAt rate inCustomersWishlist customerHasReviewed customerCanReview customerHasPurchased metafields metafield } }

Arguments

ArgumentTypeRequiredDescription
idIDYesThe ID of the product to retrieve

Return Type

Product - A product in the store, including details, variants, images, pricing, and reviews.

Example

{ product(id: 12345) { id title handle description shortDescription isAvailable isDirectlyBuyable rating reviewCount price images { url alt } variants { id title price } tags createdAt updatedAt } }