The documentation you are viewing is for Dapr v1.11 which is an older version of Dapr. For up-to-date documentation, see the latest version.
commercetools GraphQL binding spec
Detailed documentation on the commercetools GraphQL binding component
Component format
To setup commercetools GraphQL binding create a component of type bindings.commercetools
. See this guide on how to create and apply a binding configuration.
apiVersion: dapr.io/v1alpha1
kind: Component
metadata:
name: <NAME>
spec:
type: bindings.commercetools
version: v1
metadata:
- name: region # required.
value: "region"
- name: provider # required.
value: "gcp"
- name: projectKey # required.
value: "<project-key>"
- name: clientID # required.
value: "*****************"
- name: clientSecret # required.
value: "*****************"
- name: scopes # required.
value: "<project-scopes>"
- name: direction
value: "output"
Warning
The above example uses secrets as plain strings. It is recommended to use a secret store for the secrets as described here.Spec metadata fields
Field | Required | Binding support | Details | Example |
---|---|---|---|---|
region |
Y | Output | The region of the commercetools project | "europe-west1" |
provider |
Y | Output | The cloud provider, either gcp or aws | "gcp" , "aws" |
projectKey |
Y | Output | The commercetools project key | |
clientID |
Y | Output | The commercetools client ID for the project | |
clientSecret |
Y | Output | The commercetools client secret for the project | |
scopes |
Y | Output | The commercetools scopes for the project | "manage_project:project-key" |
direction |
N | Output | The direction of the binding | "output" |
For more information see commercetools - Creating an API Client and commercetools - Regions.
Binding support
This component supports output binding with the following operations:
create
Related links
- Basic schema for a Dapr component
- Bindings building block
- How-To: Trigger application with input binding
- How-To: Use bindings to interface with external resources
- Bindings API reference
- Sample app that leverages the commercetools binding with sample GraphQL query
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified July 31, 2023: [Bindings] Update specs to include `direction` (#3646) (e33f5a95)