CreateUserAddressInput
Input for the createUserAddress mutation.
input CreateUserAddressInput {
city: String!
companyName: String
country: String!
name: NameInput
postalCode: String!
street1: String!
street2: String!
userId: UUID!
}
Fields
CreateUserAddressInput.city ● String! non-null scalar
The city part of the address to create
CreateUserAddressInput.companyName ● String scalar
The company name part of the address to create
CreateUserAddressInput.country ● String! non-null scalar
The country part of the address to create
CreateUserAddressInput.name ● NameInput input
The name of the address to create
CreateUserAddressInput.postalCode ● String! non-null scalar
The postal code part of the address to create
CreateUserAddressInput.street1 ● String! non-null scalar
The first part of the street part of the address to create
CreateUserAddressInput.street2 ● String! non-null scalar
The second part of the street part of the address to create
CreateUserAddressInput.userId ● UUID! non-null scalar
The id of the user to create the address for.
Member Of
createUserAddress mutation