定制 levelshoes/module-shopfinder 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

levelshoes/module-shopfinder

最新稳定版本:1.0.0

Composer 安装命令:

composer require levelshoes/module-shopfinder

包简介

Simple Shopfinder Module including Graphql API

关键字:

README 文档

README

Installation Steps

  1. Copy the whole code base under app/code/Levelshoes/Shopfinder
    OR
  2. 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

  1. 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
  }
}
  1. Get Shop by shop_id
query {
  ListShopsByStoreIDGraphql(shop_id:2) {
    shopname
    identifier
  }
}
  1. 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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: proprietary
  • 更新时间: 2023-06-26