mageworx/module-downloads-graph-ql
Composer 安装命令:
composer require mageworx/module-downloads-graph-ql
包简介
N/A
README 文档
README
GraphQL API module for Mageworx Magento 2 File Downloads & Product attachments extension.
Installation
1) Copy-to-paste method
- Download this module and upload it to the
app/code/MageWorx/DownloadsGraphQldirectory (create "DownloadsGraphQl" first if missing)
2) Installation using composer (from packagist)
- Execute the following command:
composer require mageworx/module-downloads-graph-ql
How to use
1. ProductInterface describes the possible contents of this object.
It is expanded by MageWorx and attribute "mw_attachments" is added. The following table defines the attributes and objects.
icon_type: String. Attachment icon type
icon_type: Int. Attachment ID
name: String. Attachment name
url: String. Attachment URL
size_str: String. Attachment size
downloads_number: Int. Number of downloads
description: String. Attachment description
section_name: String. Section name
section_id: Int. escription: "Section ID
Request:
{
products(filter: { sku: { eq: "24-MB01" } }) {
items {
name
mw_attachments {
tab_title
block_title
items {
icon_type
id
name
url
size_str
downloads_number
description
section_name
section_id
}
}
}
}
}
Response:
{
"data": {
"products": {
"items": [
{
"name": "Joust Duffle Bag",
"mw_attachments": {
"tab_title": "File Downloads Tab",
"block_title": "File Downloads Block",
"items": [
{
"icon_type": "pdf",
"id": 1,
"name": "test attachment",
"url": "",
"size_str": "2.4 MB",
"downloads_number": 1,
"description": "Test description 1",
"section_name": "Default",
"section_id": 1
},
{
"icon_type": "",
"id": 2,
"name": "URL attach",
"url": "http://exapmle.com",
"size_str": null,
"downloads_number": null,
"description": "Test description 2",
"section_name": "Test",
"section_id": 2
}
]
}
}
]
}
}
}
2. The mwFileDownloads query returns information about the Downloads (Product Attachments on CMS page, widgets, ect.)
Query attribute is defined below:
attachmentIds: Int. Attachment IDs
sectionIds: Int. Section IDs
By default, you can use the following attributes:
block_title: String @doc(description: "File Downloads Block Title"
is_group_by_section: Boolean. Indicates whether to group attachments by section
how_to_download_message: String. 'How to download' message
items: [MwAttachment] An array of Attachments
Request:
{
mwFileDownloads(attachmentIds:[1]){
block_title
is_group_by_section
how_to_download_message
items {
icon_type
id
name
url
size_str
downloads_number
description
section_name
section_id
}
}
}
Response:
{
"data": {
"mwFileDownloads": {
"block_title": "File Downloads Title",
"is_group_by_section": true,
"how_to_download_message": "You have to %login% or %register% to download this file",
"items": [
{
"icon_type": "jpg",
"id": 50,
"name": "Default Name",
"url": "",
"size_str": "11.7 KB",
"downloads_number": 0,
"description": "Default Description",
"section_name": "Default",
"section_id": 1
}
]
}
}
}
The same information can be obtained for the Customer group using the authorization token.
mageworx/module-downloads-graph-ql 适用场景与选型建议
mageworx/module-downloads-graph-ql 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 27.91k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2021 年 04 月 27 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 mageworx/module-downloads-graph-ql 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mageworx/module-downloads-graph-ql 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 27.91k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: OSL-3.0
- 更新时间: 2021-04-27