INPUT_OBJECT

SiteDiaryUpdate

Site diaries

link GraphQL Schema definition

  • input SiteDiaryUpdate {
  • # The unique site diary ID.
  • id: Int
  • # Client for the site diary.
  • client: IdObject!
  • # Project for the site diary.
  • project: IdObject!
  • # Order for the site diary.
  • order: IdObject!
  • # The date the site diary was submitted for.
  • site_diary_date: DateTimeExpression!
  • # The weather for the site diary.
  • weather: String
  • # The supervisor's name of the signature attached.
  • signature: String!
  • # The supervisor signature image url attached to the site diary.
  • signature_name: 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 timesheets submitted against the site diary
  • timesheets: [SiteDiaryTimesheetUpdate]
  • # The material transactions submitted against the site diary
  • material_transactions: [SiteDiaryMaterialTransactionUpdate]
  • # The notes attached to the site diary
  • notes: [SiteDiarySiteDiaryNoteUpdate]
  • # List of emails to forward the Site Diary to.
  • contact_emails: [String]
  • # The data for the site diary additional answers.
  • additional_answers: FormResultData
  • # The S3 path of the merged print document
  • document_path: String
  • }