createTask()

in src/graphql/mutations.ts [74:112]


  createTask(input: $input) {
    id
    title
    description
    status
    reminder {
      id
      user
      customer
      start
      month
      week
      year
      additionalAttribute
      type
      tasks {
        nextToken
      }
    }
    comments {
      items {
        id
        content
        addedby
        addedon
      }
      nextToken
    }
    mandatorycomment {
      items {
        id
        title
        content
        addedby
        addedon
      }
      nextToken
    }
  }