Salutation
A salutation known to the shop (e.g. mr, mrs). Used to reference a customer's salutation.
type Salutation implements Node {
id: ID!
salutationKey: String!
displayName: String
customers(
first: Int = 10
after: String
filter: CustomerFilterInput
): CustomerConnection
}
Fields
Salutation.id ● ID! non-null scalar
Global identifier for this entity.
Salutation.salutationKey ● String! non-null scalar
Stable technical identifier of the salutation (e.g. mr, mrs, not_specified).
Salutation.displayName ● String scalar
Localised display name of the salutation.
Salutation.customers ● CustomerConnection object
Salutation.customers.first ● Int scalar
Salutation.customers.after ● String scalar
Salutation.customers.filter ● CustomerFilterInput input
Interfaces
Node interface
Any entity that can be loaded by its global id through the node(id: ID!) query.
Returned By
salutation query
Member Of
Customer object ● SalutationEdge object