You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/_includes/cloud/enable-ssh.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ To create an SSH key pair:
51
51
52
52
GitHub also uses the key length `-b 4096` in the command. Follow the prompts to complete the key.
53
53
54
-
1. When prompted to "Enter a file in which to save the key," press **Enter**to save the file to the default location. The prompt displays the location.
54
+
1. When prompted to "Enter a file in which to save the key," press **Enter**to save the file to the default location. The prompt displays the location.
55
55
56
56
1. When prompted to enter a secure passphrase, enter a phrase to use like a password. Make note of this passphrase. You may be requested to enter it depending on tasks you complete using a terminal during development.
|`--consumers-wait-for-messages`|Should consumers wait for a message from the queue? 1 - Yes, 0 - No|No|
3
+
{:style="table-layout:auto;"}
4
+
5
+
`0`—Consumers process available messages in the queue, close the TCP connection, and terminate. Consumers do not wait for additional messages to enter the queue, even if the number of processed messages is less than the `--max_messages` value specified during starting consumers.
6
+
7
+
`1`—Consumers continue to process messages from the message queue until reaching the maximum number of messages (the value specified for `--max_messages` on the `queue:consumers:start` command) before closing the TCP connection and terminating the consumer process. If the queue empties before reaching `--max_messages` the consumer waits for more messages to arrive. If you use workers to run consumers instead of using a cron job, set this variable to `1`.
Copy file name to clipboardExpand all lines: src/_includes/graphql/cart-object.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,14 @@
1
1
Attribute | Data Type | Description
2
2
--- | --- | ---
3
-
`applied_coupon` | [`AppliedCoupon`][AppliedCoupon] | The `AppliedCoupon` object contains the `code` text attribute, which specifies the coupon code
3
+
`applied_coupon` | [`AppliedCoupon`][AppliedCoupon] | Deprecated. Use `applied_coupons` instead
4
+
`applied_coupons` | [[`AppliedCoupon`]][AppliedCoupon] | An array of `AppliedCoupon` objects. Each object contains the `code` text attribute, which specifies the coupon code
4
5
`applied_gift_cards` | [[`AppliedGiftCard`]][AppliedGiftCard] | An array of `AppliedGiftCard` objects. An `AppliedGiftCard` object contains the `code` text attribute, which specifies the gift card code. `applied_gift_cards` is a Commerce-only attribute, defined in the GiftCardAccountGraphQl module
5
6
`applied_store_credit` | [`AppliedStoreCredit`][AppliedStoreCredit] | Contains store credit information applied to the cart. `applied_store_credit` is a Commerce-only attribute, defined in the CustomerBalanceGraphQl module
6
7
`available_payment_methods` | [[AvailablePaymentMethod]][AvailablePaymentMethod] | Available payment methods
7
-
`billing_address` | [BillingCartAddress][BillingCartAddress]! | Contains the billing address specified in the customer's cart
8
+
`billing_address` | [BillingCartAddress][BillingCartAddress] | Contains the billing address specified in the customer's cart
8
9
`email` | String | The customer's email address
10
+
`id` | ID! | The ID of the cart
11
+
`is_virtual` | Boolean | Indicates whether the cart contains only virtual products
9
12
`items` | [[CartItemInterface]][CartItemInterface] | Contains the items in the customer's cart
10
13
`prices` | [CartPrices][CartPrices] | Contains subtotals and totals
The `CustomerAddressAttribute` input can contain the following attributes:
32
+
The `CustomerAddressAttributeInput` data type has been deprecated because the contents are not applicable for GraphQL. It can contain the following attributes:
The `CustomerAddressAttribute` output returns the following attributes:
34
+
The `CustomerAddressAttribute` output data type has been deprecated because the contents are not applicable for GraphQL. It can contain the following attributes:
Copy file name to clipboardExpand all lines: src/_includes/graphql/customer-input.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,14 @@ Attribute | Data Type | Description
2
2
--- | --- | ---
3
3
`addresses` | [CustomerAddress](#customerAddressInput) | An array containing the customer's shipping and billing addresses
4
4
`created_at` | String | Timestamp indicating when the account was created
5
+
`date_of_birth` | String | The customer's date of birth
5
6
`default_billing` | String | The ID assigned to the billing address
6
7
`default_shipping` | String | The ID assigned to the shipping address
7
-
`dob` | String | The customer's date of birth
8
+
`dob` | String | Deprecated. Use `date_of_birth` instead. The customer's date of birth
8
9
`email` | String | The customer's email address
9
10
`firstname` | String | The customer's first name
10
11
`gender` | Int | The customer's gender (Male - 1, Female - 2)
11
-
`group_id` | Int | The group assigned to the user. Default values are 0 (Not logged in), 1 (General), 2 (Wholesale), and 3 (Retailer)
12
+
`group_id` | Int | Deprecated. This attribute is not applicable for GraphQL. The group assigned to the user. Default values are 0 (Not logged in), 1 (General), 2 (Wholesale), and 3 (Retailer)
12
13
`id` | Int | The ID assigned to the customer
13
14
`is_subscribed` | Boolean | Indicates whether the customer is subscribed to the company's newsletter
0 commit comments