From shopify-pack
Migrate e-commerce data to Shopify using bulk operations, product imports, and the strangler fig pattern for gradual platform migration. Use when replatforming to Shopify, importing product catalogs, or migrating customer and order data from another e-commerce system. Trigger with phrases like "migrate to shopify", "shopify data migration", "import products shopify", "shopify replatform", "move to shopify".
npx claudepluginhub flight505/skill-forge --plugin shopify-packThis skill is limited to using the following tools:
Migrate product catalogs, customers, and orders to Shopify using the GraphQL Admin API bulk mutations, CSV imports, and incremental migration patterns.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Migrate product catalogs, customers, and orders to Shopify using the GraphQL Admin API bulk mutations, CSV imports, and incremental migration patterns.
write_products, write_customers, write_orders, write_inventory| Data Type | Shopify Import Method | Complexity |
|---|---|---|
| Products + variants | productSet mutation (upsert) | Low |
| Product images | productCreateMedia mutation | Low |
| Customers | Customer CSV import or customerCreate | Medium |
| Historical orders | draftOrderCreate + draftOrderComplete | High |
| Inventory levels | inventorySetQuantities mutation | Medium |
| Collections | collectionCreate mutation | Low |
| Redirects (URLs) | urlRedirectCreate mutation | Low |
| Metafields | Included in product/customer mutations | Medium |
productSet is idempotent — it creates or updates based on handle, making it perfect for migrations. Handles variants, metafields, and all product attributes in a single mutation.
See Product Set Migration for the complete migration function.
For importing thousands of products, use Shopify's staged uploads combined with bulk mutation to avoid rate limit issues.
See Bulk Operations Import for the staged upload and bulk mutation workflow.
After products are created, set inventory quantities at each location and create URL redirects to preserve SEO from the old platform.
See Inventory and Redirects for both mutation implementations.
Automated validation that compares expected source counts against actual Shopify counts for products, customers, and other data types.
See Post-Migration Validation for the validation script.
| Issue | Cause | Solution |
|---|---|---|
TAKEN on product handle | Duplicate handle | Append suffix or use productSet for upsert |
| Rate limited during import | Too many sequential calls | Use bulk operations or add delays |
| Image upload fails | URL not publicly accessible | Use staged uploads for private images |
| Inventory not updating | Wrong inventoryItemId | Query variant's inventoryItem.id first |
# Count products in source vs Shopify
echo "Shopify product count:"
curl -sf -H "X-Shopify-Access-Token: $TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "{ productsCount { count } }"}' \
"https://$STORE/admin/api/${SHOPIFY_API_VERSION:-2025-04}/graphql.json" \
| jq '.data.productsCount.count'