Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 333 Bytes

V1_get_message.md

File metadata and controls

19 lines (17 loc) · 333 Bytes
copyright link is
Copyright IBM Corp. 2017
view-a-message-from-a-conversation
published

View a message from a conversation

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

query getMessage {
  message(id: "message-id") {
    id
    content
    contentType
    annotations
  }
}