OBJECT
Address
All information necessary for a complete address.
link GraphQL Schema definition
- type Address implements Node {
- # Building number, unit number (optional), and street
- String! :
- String! :
- Country! :
- # Full address of the seller
- String! :
- ID! :
- # Latitude of an address.
- Float :
- # Longitude of an address.
- Float :
- # Latitude and longitude of the seller
- String :
- # Url showing the location of the seller on google maps
- String :
- # Also known as 'zip code'.
- String! :
- State :
- # Second line for address info. Sometimes used for apartment number or something
- # similar
- String :
- }
link Require by
- AddresssConnectionThe connection type for Address.
- AddresssEdgeAn edge in a connection.
- CartA cart object just waiting to transform into an order.
- InvoiceInvoice items associated with an order.
- OrderA cart that has turned into an immutable order.
- SellerRetailer or private seller.
- ShipmentShipment tracking information.
- ShipmentAddressCreateMutationPayloadAutogenerated return type of ShipmentAddressCreateMutation.
- ShipmentAddressSortMutationPayloadAutogenerated return type of ShipmentAddressSortMutation.