listTasks()

in src/graphql/queries.ts [98:123]


  listTasks(filter: $filter, limit: $limit, nextToken: $nextToken) {
    items {
      id
      title
      description
      status
      reminder {
        id
        user
        customer
        start
        month
        week
        year
        additionalAttribute
        type
      }
      comments {
        nextToken
      }
      mandatorycomment {
        nextToken
      }
    }
    nextToken
  }