CustomerAddresses
type CustomerAddresses = {
__typename?: 'CustomerAddresses'; /** An array containing the customer's shipping and billing addresses. */
items?: Maybe<Array<Maybe<CustomerAddress>>>; /** Contains pagination metadata. */
page_info?: Maybe<SearchResultPageInfo>; /** The total count of customer addresses. */
total_count?: Maybe<Scalars['Int']['output']>;
};