Person
No description
type Person {
createdAt: ISO8601DateTime!
current: Boolean
details: PersonDetails!
humanizedRelationships: [String!]
id: ID!
name: String
partyType: String
relationships: [Relationship!]!
roles: [Role!]
updatedAt: ISO8601DateTime!
user: User
}
Fields
Person.createdAt ● ISO8601DateTime! non-null scalar
Person.current ● Boolean scalar
Indicates if the party is the current selected party. This field applies only for companies.
Person.details ● PersonDetails! non-null object
The details of the party. The details are different for every party type. For example, a company has a name, a person has a first name and a last name.
Person.humanizedRelationships ● [String!] list scalar
The relationships of the party in a human readable format.
Person.id ● ID! non-null scalar
Person.name ● String scalar
Person.partyType ● String scalar
The type of party. Party can have different types and every type has different attributes. For example, a company has a name, a person has a first name and a last name.
Person.relationships ● [Relationship!]! non-null object
The relationships of the party. A relationship is a connection between two parties. For example, a person can be an employee of a company.
Person.roles ● [Role!] list object
Person.updatedAt ● ISO8601DateTime! non-null scalar
Person.user ● User object
The user associated with the party. Only persons can have a user associated with them.