- Add CalendarDateRange input to GraphQL schema; server resolver now accepts from/to params - Frontend query sends year-scoped date range variables reactively - Rewrite zoom-in/zoom-out animations using GSAP flying-rect overlay (650ms vs 2400ms) - Add flying-rect element to CrmCalendarPanel with proper CSS - Remove old calendarSceneTransformStyle CSS-transition approach - Add calendarKillTweens cleanup in onBeforeUnmount Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
222 B
GraphQL
15 lines
222 B
GraphQL
query CalendarQuery($from: String, $to: String) {
|
|
calendar(dateRange: { from: $from, to: $to }) {
|
|
id
|
|
title
|
|
start
|
|
end
|
|
contact
|
|
note
|
|
isArchived
|
|
createdAt
|
|
archiveNote
|
|
archivedAt
|
|
}
|
|
}
|