OBJECT
Conversation
An association between conversation holders
link GraphQL Schema definition
- type Conversation {
- # The user who closed the conversation
- User :
- # The date the conversation was closed
- String :
- # Display default name for community chat
- String :
- # All ConversationMemberships associated with this conversation.
- ConversationMembership!] : [
- # The number of users in the conversation
- Int :
- # The conversation membership for the current user
- ConversationMembership :
- # ID of dietitian
- ID :
- # first four invitees to the conversation
- User!] : [
- # The unique identifier of the conversation
- ID! :
- # Whether the conversation includes multiple clients
- Boolean :
- # The invitees to the conversation
- User!] : [
- # Whether the conversation is hidden for the client
- Boolean :
- # The content of the last note, with HTML stripped
- String :
- # ID of the last note of conversation that was sent by the convo owner and viewed
- # by the patient
- String :
- # The subject of conversation
- String :
- # All notes associated with this conversation.
- Note!]! : [
- # owner of conversation
- User :
- # ID of patient
- ID :
- # The last time the conversation was updated
- String :
- # invitees to the conversation
- UserGroup!] : [
- }
link Require by
- ConversationMembershipConversationMembership entry, returns basic info related to conversation participant
- createConversationPayloadAutogenerated return type of createConversation.
- QueryThe query root of this schema. See available queries.
- SubscriptionSubscriptions for events tracking
- updateConversationPayloadAutogenerated return type of updateConversation.