OBJECT

SiteDiary

Site diaries

link GraphQL Schema definition

  • type SiteDiary {
  • # The unique site diary ID.
  • id: Int!
  • # Client for the site diary.
  • client: Client
  • # Project for the site diary.
  • project: Project
  • # Order for the site diary.
  • order: Order
  • # The date the site diary was submitted for.
  • site_diary_date: DateTimeExpression!
  • # The weather for the site diary.
  • weather: String
  • # The client's name of the signature attached.
  • client_signature_name: String
  • # The client signature image url attached to the site diary.
  • client_signature: String
  • # The datetime the site diary was created.
  • created_time: DateTime!
  • # The user that create the site diary
  • created_by: User
  • # The datetime the site diary was modified.
  • modified_time: DateTime
  • # The user that last modified the site diary
  • modified_by: User
  • # The date the site diary was deleted.
  • deleted_time: DateTime
  • # The user that deleted the site diary
  • deleted_by: User
  • # The timesheets submitted against the site diary
  • timesheets: [Timesheet]
  • # The material transactions submitted against the site diary
  • material_transactions: [MaterialTransaction]
  • # The notes attached to the site diary
  • notes: [SiteDiaryNote]
  • # The total time of all timesheets associated with this site diary in HH:mm.
  • total_time: String!
  • # The data for the site diary additional questions.
  • additional_questions: UntypedValue
  • # The data for the site diary additional answers.
  • additional_answers: UntypedValue
  • # The S3 path of the supervisor signature
  • supervisor_signature_path: String
  • }