Files
clientsflow/Frontend/graphql/operations/dashboard.graphql
2026-02-19 16:58:49 +07:00

89 lines
1.1 KiB
GraphQL

query DashboardQuery {
dashboard {
contacts {
id
name
avatar
company
country
location
channels
lastContactAt
description
}
communications {
id
at
contactId
contact
channel
kind
direction
text
audioUrl
duration
transcript
}
calendar {
id
title
start
end
contact
note
isArchived
createdAt
archiveNote
archivedAt
}
deals {
id
contact
title
company
stage
amount
nextStep
summary
currentStepId
steps {
id
title
description
status
dueAt
order
completedAt
}
}
feed {
id
at
contact
text
proposal {
title
details
key
}
decision
decisionNote
}
pins {
id
contact
text
}
documents {
id
title
type
owner
scope
updatedAt
summary
body
}
}
}