fetchtex / module-faq
不适用
dev-master
2020-04-30 18:45 UTC
Requires
- php: ~5.5.0|~5.6.0|~7.0.0
- magento/framework: 100.0.*
This package is auto-updated.
Last update: 2024-09-29 05:55:39 UTC
README
本FAQ模块提供列出带有分类的FAQ。可以通过“内容 > FAQ”部分添加FAQ。
前端使用带有仅搜索功能的Graphql请求。请求通过apollo-boost使用GET方法发送,以便可以在后端进行缓存。
安装模块
composer require fetchtex/module-faq
bin/magento module:enable Fetchtex_FAQs
bin/magento setup:upgrade
示例请求
query myFaq { allfaqs(filter: { question:"%Wha%"}) { items { question answer category{ id name } } total_count } }
已测试与Magento CE 2.3.4兼容