elgentos/m2-vatfallback-graph-ql

为 dutchento/m2-vatfallback 提供GraphQl端点

安装数: 6,192

依赖关系: 0

建议者: 0

安全: 0

星标: 0

关注者: 3

分支: 0

公开问题: 0

类型:magento2-module

dev-master 2021-06-29 09:53 UTC

This package is auto-updated.

Last update: 2024-08-29 05:46:49 UTC


README

VatfallbackGraphQL 为 Magento 2 的 Dutchento Vatfallback 模块添加一个 GraphQl 端点。

在 Dutchento Vatfallback 模块中,可以通过 API 端点使用增值税号获取公司数据,例如:http://domain.com/rest/V1/vat/companylookup/NL133001477B01

使用此模块,您可以通过 GraphQl 实现相同的操作。

query {
  companyLookup(
    vatNumber: "NL133001477B01"
  ) {
    status, 
    country,
    company_name,
    company_address,
    message
  }
}