OBJECT

Client

A single client

link GraphQL Schema definition

  • type Client {
  • # The unique client ID.
  • id: Int!
  • # The client's short name.
  • name: String!
  • # ABN.
  • abn: String
  • # The competencies associated with this client
  • competencies: [Competency]
  • # Contact email address.
  • email: String
  • # Office contact number.
  • office_phone: String
  • # Mobile contact number.
  • mobile: String
  • # Mailing address
  • address: Address
  • # Free text comments
  • comments: String
  • # An ID used to link to an external application.
  • external_id: String
  • # The inductions associated with this client
  • inductions: [Induction]
  • # True if active, false if archived.
  • is_active: Boolean!
  • # The user that last modified this asset.
  • modified_by: User
  • # The time this client was last modified.
  • modified_time: DateTime
  • # The projects a client has.
  • projects: [Project]
  • # The related documents.
  • documents: [ClientDocument]
  • # The contacts associated with this client.
  • contacts: [Contact]
  • # The contacts associated with this client regarding dockets.
  • docket_contacts: [Contact]
  • # Digital Docket Templates assigned to this client.
  • digital_docket_templates: [DigitalDocketTemplate]
  • # The task groups associated with this client
  • task_groups: [TaskGroup]
  • # The time this client was deleted.
  • deleted_at: DateTime
  • }