Files
clientsflow/frontend/graphql/operations/get-client-timeline.graphql

63 lines
907 B
GraphQL

query GetClientTimelineQuery($contactId: ID!, $limit: Int) {
getClientTimeline(contactId: $contactId, limit: $limit) {
id
contactId
contentType
contentId
datetime
message {
id
at
contactId
contact
contactInboxId
sourceExternalId
sourceTitle
channel
kind
direction
text
audioUrl
duration
waveform
transcript
deliveryStatus
}
calendarEvent {
id
title
start
end
contact
note
isArchived
createdAt
archiveNote
archivedAt
}
recommendation {
id
at
contact
text
proposal {
title
details
key
}
decision
decisionNote
}
document {
id
title
type
owner
scope
updatedAt
summary
body
}
}
}