Switch calendar events to isArchived model
This commit is contained in:
14
Frontend/graphql/operations/archive-calendar-event.graphql
Normal file
14
Frontend/graphql/operations/archive-calendar-event.graphql
Normal file
@@ -0,0 +1,14 @@
|
||||
mutation ArchiveCalendarEventMutation($input: ArchiveCalendarEventInput!) {
|
||||
archiveCalendarEvent(input: $input) {
|
||||
id
|
||||
title
|
||||
start
|
||||
end
|
||||
contact
|
||||
note
|
||||
isArchived
|
||||
createdAt
|
||||
archiveNote
|
||||
archivedAt
|
||||
}
|
||||
}
|
||||
@@ -6,5 +6,9 @@ mutation CreateCalendarEventMutation($input: CreateCalendarEventInput!) {
|
||||
end
|
||||
contact
|
||||
note
|
||||
isArchived
|
||||
createdAt
|
||||
archiveNote
|
||||
archivedAt
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,6 +31,10 @@ query DashboardQuery {
|
||||
end
|
||||
contact
|
||||
note
|
||||
isArchived
|
||||
createdAt
|
||||
archiveNote
|
||||
archivedAt
|
||||
}
|
||||
deals {
|
||||
id
|
||||
|
||||
Reference in New Issue
Block a user