承接 scandipwa/customer-graph-ql 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

scandipwa/customer-graph-ql

最新稳定版本:4.1.0

Composer 安装命令:

composer require scandipwa/customer-graph-ql

包简介

N/A

README 文档

README

CustomerGraphQl provides type and resolver information for the GraphQl module to generate customer information endpoints.

This module extends the M2 GraphQl customer queries and mutations. New endpoints will be documented in future releases.

Custom query documentation

Mutation forgotPassword

mutation ForgotPassword($email: String!) {
  	forgotPassword(email: $email) {
  		status
	}
}

The variables for input above might look like:

{
    "email": "alfreds+valid12@gmail.com"
}

Mutation resetPassword

mutation ResetPassword(
  $token: String!,
  $password: String!,
  $password_confirmation: String!
) {
  resetPassword(
    token: $token,
  	password: $password,
  	password_confirmation: $password_confirmation
  ) {
    status
  }
}
{
  "token": "7nk0Ch7D5SZsPHWKycAyGdonAM9MnHRw",
  "password": "MyNewPassword123_",
	"password_confirmation": "MyNewPassword123_"
}

Mutation confirmCustomerEmail

Here is an example use of it:

mutation ConfirmCustomerEmail(
    $password: String!
    $key: String!
    $email: String!
) {
    confirmCustomerEmail(
        password: $password
        key: $key
        email: $email
    ) {
        status
        token
        customer {
            id
            firstname
            lastname
            email
            is_subscribed
            addresses {
                city
                country_id
                street
                telephone
                firstname
                lastname
                postcode
                street
                default_shipping
                default_billing
            }
        }
    }
}

The variables for input above might look like:

{
    "key": "0129309912",
    "email": "alfreds+valid12@gmail.com",
    "password": "Testing123_"
}

Mutation resendConfirmationEmail

⚠️ This is not tested but implemented !!! ⚠️

Here is an example use of it:

mutation ResendConfirmationEmail(
    $email: String!
) {
    resendConfirmationEmail(
        email: $email
    ) {
        status
    }
}

The variables for input above might look like:

{
    "email": "alfreds+valid12@gmail.com"
}

统计信息

  • 总下载量: 213.7k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 1
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 4
  • Forks: 18
  • 开发语言: PHP

其他信息

  • 授权协议: OSL-3.0
  • 更新时间: 2019-03-21