Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 439 Bytes

V1_get_conversation.md

File metadata and controls

25 lines (23 loc) · 439 Bytes
copyright link is
Copyright IBM Corp. 2017
view-the-conversation-in-a-space
published

View the conversation in a space

This is a sample GraphQL query on how to get information about a conversation.

query getConversation {
  conversation(id: "conversation-id") {
    id
    created
    updated
    messages(first: 50) {
      items {
        content
        contentType
        annotations
      }
    }
  }
}