import { ShopifyCustomerAccessTokenCreateInput } from '@daffodil/driver/shopify'
The input fields for authenticating a customer with email and password. Used by the customerAccessTokenCreate mutation to generate a CustomerAccessToken, which is required to read or modify customer data.
interface ShopifyCustomerAccessTokenCreateInput {
email: string
password: string
}
email string |
|---|
The email associated to the customer. |
password string |
|---|
The login password to be used by the customer. |