Skip to main content

Company

No description

type Company {
createdAt: ISO8601DateTime!
current: Boolean
details: CompanyDetails!
humanizedRelationships: [String!]
id: ID!
name: String
partyType: String
relationships: [Relationship!]!
responsibles: [Person!]
roles: [Role!]
updatedAt: ISO8601DateTime!
user: User
}

Fields

Company.createdAt ● ISO8601DateTime! non-null scalar

Company.current ● Boolean scalar

Indicates if the party is the current selected party. This field applies only for companies.

Company.details ● CompanyDetails! 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.

Company.humanizedRelationships ● [String!] list scalar

The relationships of the party in a human readable format.

Company.id ● ID! non-null scalar

Company.name ● String scalar

Company.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.

Company.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.

Company.responsibles ● [Person!] list object

The persons responsible for the company.

Company.roles ● [Role!] list object

Company.updatedAt ● ISO8601DateTime! non-null scalar

Company.user ● User object

The user associated with the party. Only persons can have a user associated with them.

Returned By

companies query

Member Of

ApiClient object ● CompanyConnection object ● CompanyEdge object