OBJECT

Project

A client project

link GraphQL Schema definition

  • type Project {
  • # Unique project ID.
  • id: Int!
  • # The associated client.
  • client: Client
  • # Project name.
  • name: String!
  • # Project start date
  • start_date: DateExpression
  • # Project end date
  • end_date: DateExpression
  • # Site address.
  • address: Address
  • # The geolocation (POINT) of the project
  • address_geolocation: Geolocation
  • # An ID used to link to an external application.
  • external_id: String
  • # True if active, false if archived
  • is_active: Boolean!
  • # The user that last modified the project.
  • modified_by: User
  • # The time this project was last modified.
  • modified_time: DateTime
  • # The time this project was deleted.
  • deleted_at: DateTime
  • # The competencies associated with this project
  • competencies: [Competency]
  • # The contacts associated with this project
  • contacts: [Contact]
  • # The contacts associated with this project regarding dockets
  • docket_contacts: [Contact]
  • # The inductions associated with this project
  • inductions: [Induction]
  • # The orders associated with this project
  • orders: [Order]
  • # The tags associated with this project
  • tags: [Tag]
  • # The task groups associated with this project
  • task_groups: [TaskGroup]
  • # The supervisors of the project
  • supervisors: [User]
  • # Ordered list of project ids from the root project (first item) to this project's
  • # parent (last item).
  • root_path: [Int]
  • # Ordered list of projects from the root project (first item) to this project's
  • # parent (last item).
  • project_structure: [Project]
  • # Projects that are direct children of this project
  • children: [Project]
  • # Number of children of this project
  • child_count: Int!
  • # The related documents.
  • documents: [ProjectDocument]
  • # Parent project
  • parent: Project
  • # The activities associated with this project
  • activities: [Activity]
  • # The work item codes associated with this project
  • work_items: [WorkItem]
  • # Whether this project is associated with any work item codes
  • has_work_item_codes: Boolean
  • # The geofences of the project
  • geofences: [Geofence]
  • # The geo-markers of the project
  • geo_markers: [GeoMarker]
  • }