Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

magento-graphqlmagento GraphQL 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

524

周安装

21

GitHub Stars

19

下载量

170
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:magento-graphql(magento GraphQL 搜索)
来源仓库:https://github.com/finsilabs/awesome-ecommerce-skills
仓库路径:skills/magento-graphql
安装命令:
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill magento-graphql
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill magento-graphql

简介

用于辅助 API 设计、接口文档和错误码整理。

  • 适合梳理 endpoint、生成 OpenAPI 草稿或检查字段命名。
  • 使用时需确认业务语义、鉴权和分页规则。
  • 涉及接口文档时应从现有代码或样例中提取事实。
  • 安装前建议确认权限范围和维护状态。magento-graphql 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Magento GraphQL API

Overview

Magento 2 (and Adobe Commerce) ships a comprehensive GraphQL API for storefront operations — product catalog, search, cart, checkout, customer authentication, and order history. The endpoint is /graphql and does not require an admin token for public catalog data. Cart and customer operations require a guest cart ID (UUID) or a Bearer token from customer login. PWA Studio (Venia) is built entirely on this API, making it the reference implementation for headless Magento.

When to Use This Skill

  • When building a React, Vue, or Next.js headless storefront on Magento 2
  • When creating a native mobile app that needs Magento product and checkout data
  • When implementing PWA Studio extensions that fetch custom data via GraphQL resolvers
  • When replacing REST API calls with more efficient GraphQL queries in existing headless projects
  • When building a custom GraphQL resolver to expose third-party or custom module data
  • When integrating a headless CMS with Magento's product catalog

Core Instructions

  1. Set up the GraphQL client Magento GraphQL uses standard HTTP POST to /graphql. Use Apollo Client or a lightweight fetch wrapper: ` // lib/magento.ts const MAGENTO_URL = process.env.NEXT_PUBLIC_MAGENTO_URL; // e.g. https://magento.example.com export async function magentoQuery<T>(query: string, variables: Record<string, unknown> = {}, token?: string): Promise<T> {const headers: Record<string, string> = {"Content-Type": "application/json", Store: process.env.NEXT_PUBLIC_MAGENTO_STORE_CODE?? "default",}; if (token) {headers["Authorization"] = Bearer ${token};} const response = await fetch(${MAGENTO_URL}/graphql, {method: "POST", headers, body: JSON.stringify({query, variables}), next: {revalidate: 300}, // Next.js ISR caching}); if (!response.ok) {throw new Error(Magento GraphQL HTTP error: ${response.status});} const {data, errors} = await response.json(); if (errors?.length) {throw new Error(errors[0].message);} return data as T;} `
  2. Query the product catalog ` // Fetch products by category UID or search export async function getProducts(params: {categoryUid?: string; search?: string; pageSize?: number; currentPage?: number;}) {return magentoQuery<{products: MagentoProductList}>( query GetProducts($search: String $filter: ProductAttributeFilterInput $pageSize: Int $currentPage: Int) {products(search: $search filter: $filter pageSize: $pageSize currentPage: $currentPage sort: {position: ASC}) {total_count page_info {current_page page_size total_pages} aggregations {attribute_code label count options {label value count}} items {uid sku name url_key... on SimpleProduct {price_range {minimum_price {regular_price {value currency} final_price {value currency} discount {percent_off amount_off}}}}... on ConfigurableProduct {configurable_options {attribute_code label values {uid label swatch_data {value}}} variants {attributes {uid label code value_index} product {sku stock_status price_range {minimum_price {final_price {value}}}}}} small_image {url label} thumbnail {url label} rating_summary review_count stock_status}}} , {search: params.search, filter: params.categoryUid? {category_uid: {eq: params.categoryUid}}: undefined, pageSize: params.pageSize?? 20, currentPage: params.currentPage?? 1,});} `
  3. Create guest cart and add items ` // Create a guest cart and get the cart ID export async function createGuestCart(): Promise<string> {const data = await magentoQuery<{createEmptyCart: string}>( mutation {createEmptyCart} ); return data.createEmptyCart; // Returns a UUID cart ID} // Add a simple product to cart export async function addSimpleProductToCart(cartId: string, sku: string, qty: number) {return magentoQuery( mutation AddSimpleProduct($cartId: String!, $sku: String!, $qty: Float!) {addSimpleProductsToCart(input: {cart_id: $cartId cart_items: [{data: {sku: $sku, quantity: $qty}}]}) {cart {items {uid quantity product {name sku} prices {price {value currency}}} prices {subtotal_excluding_tax {value currency} grand_total {value currency}}}}} , {cartId, sku, qty});} // Add a configurable product with selected variant export async function addConfigurableProductToCart(cartId: string, parentSku: string, variantSku: string, qty: number) {return magentoQuery( mutation AddConfigurable($cartId: String!, $parentSku: String!, $variantSku: String!, $qty: Float!) {addConfigurableProductsToCart(input: {cart_id: $cartId cart_items: [{parent_sku: $parentSku data: {sku: $variantSku, quantity: $qty}}]}) {cart {items {uid quantity product {name}}}}} , {cartId, parentSku, variantSku, qty});} `
  4. Authenticate customers and manage accounts ` // Customer login — returns a bearer token export async function loginCustomer(email: string, password: string): Promise<string> {const data = await magentoQuery<{generateCustomerToken: {token: string}}>( mutation Login($email: String!, $password: String!) {generateCustomerToken(email: $email, password: $password) {token}} , {email, password}); return data.generateCustomerToken.token;} // Get authenticated customer's cart export async function getCustomerCart(token: string) {return magentoQuery( query {customerCart {id items {uid quantity product {name sku small_image {url}} prices {price {value currency}}} prices {grand_total {value currency}}}} , {}, token);} // Get order history export async function getCustomerOrders(token: string, pageSize = 10) {return magentoQuery( query GetOrders($pageSize: Int) {customer {orders(pageSize: $pageSize, sort: {sort_field: CREATED_AT, sort_direction: DESC}) {total_count items {id number status order_date total {grand_total {value currency}} items {product_name product_sku quantity_ordered} shipping_address {firstname lastname city region {code} country_code}}}}} , {pageSize}, token);} `
  5. Create a custom GraphQL resolver in a Magento 2 module <?php // app/code/MyVendor/CustomGraphQL/etc/schema.graphqls type Query {myCustomProducts(brand: String @doc(description: "Filter by brand")): MyCustomProductOutput @resolver(class: "MyVendor\\CustomGraphQL\\Model\\Resolver\\CustomProducts") @doc(description: "Get custom product list")} type MyCustomProductOutput {items: [CustomProductItem] total_count: Int} type CustomProductItem {sku: String name: String brand: String custom_attribute: String} <?php // app/code/MyVendor/CustomGraphQL/Model/Resolver/CustomProducts.php namespace MyVendor\CustomGraphQL\Model\Resolver; use Magento\Framework\GraphQl\Config\Element\Field; use Magento\Framework\GraphQl\Query\ResolverInterface; use Magento\Framework\GraphQl\Schema\Type\ResolveInfo; use Magento\Catalog\Model\ResourceModel\Product\CollectionFactory; class CustomProducts implements ResolverInterface {public function __construct(private readonly CollectionFactory $collectionFactory) {} public function resolve(Field $field, $context, ResolveInfo $info, array $value = null, array $args = null) {$collection = $this->collectionFactory->create(); $collection->addAttributeToSelect(['sku', 'name', 'brand', 'custom_attribute']); $collection->addAttributeToFilter('status', 1); $collection->addAttributeToFilter('visibility', ['neq' => 1]); if (!empty($args['brand'])) {$collection->addAttributeToFilter('brand', ['like' => '%'. $args['brand']. '%']);} $items = []; foreach ($collection as $product) {$items[] = ['sku' => $product->getSku(), 'name' => $product->getName(), 'brand' => $product->getData('brand'), 'custom_attribute' => $product->getData('custom_attribute'),];} return ['items' => $items, 'total_count' => $collection->getSize()];}}

Examples

Product detail page — configurable product with swatches

export async function getProductByUrlKey(urlKey: string) {
  return magentoQuery<{ products: { items: MagentoProduct[] } }>(`
    query GetProduct($urlKey: String!) {
      products(filter: { url_key: { eq: $urlKey } }) {
        items {
          uid sku name url_key
          meta_title meta_description
          description { html }
          short_description { html }
          ... on ConfigurableProduct {
            configurable_options {
              id uid label attribute_code position
              values {
                uid label
                swatch_data {
                  ... on ColorSwatchData { value }
                  ... on ImageSwatchData { thumbnail value }
                  ... on TextSwatchData { value }
                }
              }
            }
            variants {
              attributes { uid label code value_index }
              product {
                uid sku stock_status
                media_gallery { url label disabled }
                price_range {
                  minimum_price {
                    regular_price { value currency }
                    final_price { value currency }
                  }
                }
              }
            }
          }
          media_gallery { url label disabled position }
          reviews(pageSize: 5) {
            items {
              summary text created_at
              ratings_breakdown { name value }
              nickname
            }
          }
        }
      }
    }
  `, { urlKey });
}

Checkout flow — set shipping address and place order

export async function setShippingAddress(cartId: string, address: AddressInput) {
  return magentoQuery(`
    mutation SetShipping($cartId: String!, $address: CartAddressInput!) {
      setShippingAddressesOnCart(input: {
        cart_id: $cartId
        shipping_addresses: [{ address: $address }]
      }) {
        cart {
          shipping_addresses {
            available_shipping_methods {
              carrier_code method_code carrier_title method_title
              amount { value currency }
            }
          }
        }
      }
    }
  `, { cartId, address });
}

export async function placeOrder(cartId: string) {
  return magentoQuery<{ placeOrder: { order: { order_number: string } } }>(`
    mutation PlaceOrder($cartId: String!) {
      placeOrder(input: { cart_id: $cartId }) {
        order { order_number }
        errors { message code }
      }
    }
  `, { cartId });
}

Best Practices

  • Use the Store HTTP header to target specific store views — without it, Magento defaults to the default store and returns incorrect pricing/currency for multi-store setups
  • Enable GraphQL query caching in Magento via Varnish or built-in cache for public catalog queries — product list queries can be cached for minutes to reduce PHP execution
  • Use inline fragments for polymorphic product types — always include ... on SimpleProduct, ... on ConfigurableProduct, ... on BundleProduct where applicable
  • Persist the cart ID in a cookie — guest cart IDs (UUID) expire after 24 hours of inactivity; merge with customer cart after login using mergeCarts mutation
  • Batch related queries — Apollo Client batching or manual query merging reduces RTTs for pages that need product + category + CMS block data simultaneously
  • Implement proper error handling for errors array — GraphQL responses return 200 even for errors; always check errors property in the response body
  • Cache customer tokens securely — store bearer tokens in httpOnly cookies, not localStorage, to prevent XSS token theft

Common Pitfalls

ProblemSolution
Products missing from GraphQL but visible in AdminCheck the product's visibility attribute — products set to "Not Visible Individually" won't appear in catalog queries
Configurable product variants return empty stock_statusQuery the product field inside variants.product — stock is tracked at the simple product (variant) level, not the parent
Custom resolver not recognizedRun bin/magento setup:upgrade after adding new GraphQL schema files; also check schema.graphqls syntax carefully
Cart merge fails after customer loginCall mergeCarts(source_cart_id: $guestCartId, destination_cart_id: $customerCartId) — then discard the guest cart ID cookie
Slow GraphQL responsesEnable Magento's built-in GraphQL caching: bin/magento config:set system/full_page_cache/caching_application 1; use Varnish for public queries
Bearer token expired mid-sessionImplement token refresh: catch The current customer isn't authorized error and redirect to login or use refresh token if available

Related Skills

  • @magento-module-development
  • @magento-indexing-caching
  • @magento-multi-store
  • @headless-commerce-architecture
  • @graphql-api-design

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.5%
按下载量换算57

Claude

28.36%
按下载量换算48

Cursor

20.54%
按下载量换算35

Gemini CLI

9.8%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills