listReminders()

in src/app/API.service.ts [2305:2350]


        listReminders(filter: $filter, limit: $limit, nextToken: $nextToken) {
          __typename
          items {
            __typename
            id
            user
            customer
            start
            month
            week
            year
            additionalAttribute
            type
            tasks {
              __typename
              items {
                __typename
                id
                title
                description
                status
                comments {
                  __typename
                  items {
                    id
                    content
                    addedby
                    addedon
                  }
                  nextToken
                }
                mandatorycomment {
                  __typename
                  items {
                    id
                    title
                    content
                  }
                  nextToken
                }
              }
              nextToken
            }
          }
          nextToken
        }