UserAddress
A address associated with a user.
type UserAddress implements Address, Node {
archivedAt: DateTime
city: String!
companyName: String
country: String!
id: UUID!
isArchived: Boolean!
name: Name
postalCode: String!
street1: String!
street2: String!
user: User!
}
Fields
UserAddress.archivedAt
● DateTime
scalar
If this address is archived, the datetime it was archived.
UserAddress.city
● String!
non-null scalar
The city part of the address
UserAddress.companyName
● String
scalar
The company name part of the address
UserAddress.country
● String!
non-null scalar
The country part of the address
UserAddress.id
● UUID!
non-null scalar
The ID of the node.
UserAddress.isArchived
● Boolean!
non-null scalar
If true, this address is archived and can no longer be used.
UserAddress.name
● Name
object
The name of the address
UserAddress.postalCode
● String!
non-null scalar
The postal code part of the address
UserAddress.street1
● String!
non-null scalar
The first part of the street part of the address
UserAddress.street2
● String!
non-null scalar
The second part of the street part of the address
UserAddress.user
● User!
non-null object
The user this address belongs to.
Interfaces
Address
interface
An address.
Node
interface
An object with an ID.
Returned By
archiveUserAddress
mutation ● createUserAddress
mutation
Member Of
UserAddressConnection
object
Implemented By
_Entity
union