address.graphql 310 B

12345678910111213141516
  1. type Address {
  2. id: Int
  3. fullName: String
  4. company: String
  5. streetLine1: String
  6. streetLine2: String
  7. city: String
  8. province: String
  9. postalCode: String
  10. country: String
  11. phoneNumber: String
  12. defaultShippingAddress: Boolean
  13. defaultBillingAddress: Boolean
  14. createdAt: String
  15. updatedAt: String
  16. }