levelshoes/module-shopfinder
最新稳定版本:1.0.0
Composer 安装命令:
composer require levelshoes/module-shopfinder
包简介
Simple Shopfinder Module including Graphql API
关键字:
README 文档
README
Installation Steps
- Copy the whole code base under app/code/
Levelshoes/Shopfinder
OR - Using composer : composer require krunal/module-shopfinder
After performing above step please run below commands
php bin/magento module:enable Levelshoes_Shopfinder
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy -f
GraphQL API Request Example
URL : storeurl/graphql
- List all Shop
Choose the fields which you want to list in API Response
ListShopsGraphql {
shopname
identifier
addresslineone
addresslinetwo
city
country
state
zipcode
phone
latitude
longitude
email
shopimage
status
cancollect
shopdescription
shopopentimedetail
storeview
}
}
- Get Shop by shop_id
query {
ListShopsByStoreIDGraphql(shop_id:2) {
shopname
identifier
}
}
- Update Shop by shopid
mutation {
editShopData(shop_id: 1, shopname: "test shop", status: 1, state: 0) {
status
message
}
}
NOTE : Flag detail
Enabled : 1
Disabled : 0
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2023-06-26