@@ -47,8 +47,7 @@ are displayed to customers.
4747"""
4848type BuyerIdentity {
4949 """
50- The customer that's interacting with the cart. A customer is a buyer who has an
51- [account](https://help.shopify.com/manual/customers/customer-accounts) with the store.
50+ The [customer](https://help.shopify.com/manual/customers/manage-customers) that's interacting with the cart.
5251 """
5352 customer : Customer
5453
@@ -60,8 +59,6 @@ type BuyerIdentity {
6059 """
6160 Whether the customer is authenticated through their
6261 [customer account](https://help.shopify.com/manual/customers/customer-accounts).
63- If the customer is authenticated, then the `customer` field returns the customer's information.
64- If the customer isn't authenticated, then the `customer` field returns `null`.
6562 """
6663 isAuthenticated : Boolean !
6764
@@ -2704,8 +2701,7 @@ type CustomProduct {
27042701}
27052702
27062703"""
2707- Represents a [customer](https://help.shopify.com/manual/customers/manage-customers)
2708- who has an [account](https://help.shopify.com/manual/customers/customer-accounts) with the store.
2704+ Represents a [customer](https://help.shopify.com/manual/customers/manage-customers).
27092705`Customer` returns data including the customer's contact information and order history.
27102706"""
27112707type Customer implements HasMetafields {
@@ -2745,8 +2741,7 @@ type Customer implements HasMetafields {
27452741 ): Boolean !
27462742
27472743 """
2748- Whether the customer is associated with the specified tags. The customer must have all of the tags in the list
2749- to return `true`.
2744+ Whether the customer is associated with the specified tags.
27502745 """
27512746 hasTags (
27522747 """
@@ -3106,9 +3101,9 @@ type HttpResponse {
31063101 headers : [HttpResponseHeader ! ]! @deprecated (reason : " Use `header` instead." )
31073102
31083103 """
3109- The HTTP response body parsed as JSON.
3110- If the body is valid JSON, it will be parsed and returned as a JSON object.
3111- If parsing fails, then raw body is returned as a string.
3104+ The HTTP response body parsed as JSON.
3105+ If the body is valid JSON, it will be parsed and returned as a JSON object.
3106+ If parsing fails, then raw body is returned as a string.
31123107 Use this field when you expect the response to be JSON, or when you're dealing
31133108 with mixed response types, meaning both JSON and non-JSON.
31143109 Using this field reduces function instruction consumption and ensures that the data is formatted in logs.
@@ -4679,8 +4674,7 @@ type Product implements HasMetafields {
46794674 ): Boolean !
46804675
46814676 """
4682- Whether the product is associated with the specified tags. The product must have all of the tags in the list
4683- to return `true`.
4677+ Whether the product is associated with the specified tags.
46844678 """
46854679 hasTags (
46864680 """
0 commit comments