mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 12:47:50 +00:00
19 lines
278 B
TypeScript
19 lines
278 B
TypeScript
const customerAddress = /* GraphQL */ `
|
|
fragment CustomerAddress on CustomerAddress {
|
|
id
|
|
formatted
|
|
firstName
|
|
lastName
|
|
company
|
|
address1
|
|
address2
|
|
territoryCode
|
|
zoneCode
|
|
city
|
|
zip
|
|
phoneNumber
|
|
}
|
|
`;
|
|
|
|
export default customerAddress;
|