▶ 전체 일정 조회(READ - GET) 동작 과정(1) Controller@RequestParam(required = false) → 쿼리 파라미터가 없어도 동작클라이언트가 updatedAt과 name을 선택적으로 전달 가능GET /schedules → 모든 일정 조회GET /schedules?updatedAt=2025-01-31 → 특정 날짜의 일정 조회GET /schedules?name=홍길동 → 특정 name 일정 조회GET /schedules?updatedAt=2025-01-31&name=홍길동 → 두 조건 모두 충족하는 일정 조회(2) Service scheduleRepository.findAll(updatedAt, name) 호출DB에서 조회 조건에 맞는 Schedule 객체 리스트를 가져옴..