mtrzk/magento2-faqpage-graphql

N/A

安装: 1

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 1

分支: 0

类型:magento2-module

1.0.1 2022-08-31 14:50 UTC

This package is auto-updated.

Last update: 2024-09-29 05:57:12 UTC


README

1. 文档

2. 安装方法

通过 composer 安装(推荐)

在 Magento 2 根目录下运行以下命令

composer require mtrzk/magento2-faqpage mtrzk/magento2-faqpage-graphql
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy

3. 使用方法

Query {
    faqQuestions: [FaqQuestion!]
}

type FaqQuestion {
    id: ID!
    question: String
    answer: String
    position: String
    active: Boolean
    store_ids: [String]
    created_at: String
    updated_at: String
}

StoreConfig {
    faqpage_general_is_enabled: Boolean 
    faqpage_general_add_to_menu: String 
    faqpage_general_faq_menu_name: String 
}

4. 更新日志

版本 1.0.1

- Added README
- Fixed casting for FaqQuestion Type

版本 1.0.0

- First commit
- Added support for GraphQL