Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 355 Bytes

V1_get_message.md

File metadata and controls

20 lines (18 loc) · 355 Bytes
copyright link is
Copyright IBM Corp. 2017, 2018
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
    softDeleted
  }
}