Address
Represents a physical or shipping address within the store system. This type contains contact information, location details, and geographical coordinates for customers and merchants.
Type Definition
type Address {
name: String
email: String
firstName: String
lastName: String
company: String
companyId: String
vatNumber: String
vatId: String
phone: String
address1: String
address2: String
zipcode: String
city: String
stateCode: String
countryCode: String
info: String
latitude: String
longitude: String
metafields: [Metafield]!
metafield: Metafield
}Fields
Relationships
The Address type is used across multiple areas of the store system:
- Cart: Shipping and billing addresses associated with shopping carts
- Customer: Primary address for customer profiles
- Merchant: Business address for merchant accounts
- Order: Shipping and billing addresses for order fulfillment
- CartShippingMethod: Pickup location addresses for shipping methods
Example
{
name
email
firstName
lastName
company
phone
address1
address2
zipcode
city
stateCode
countryCode
latitude
longitude
metafields {
namespace
key
value
}
}Implements
This type does not implement any interfaces.