Skip to content

Latest commit

 

History

History
28 lines (26 loc) · 421 Bytes

V1_get_mentions.md

File metadata and controls

28 lines (26 loc) · 421 Bytes
copyright link is
Copyright IBM Corp. 2017
get-a-list-of-mentions
published

Get a list of mentions

This is a sample GraphqQL query on how to get information about a list of mentions.

query getMentions{
  mentioned(first:50) {
    items{
      space{
        id
      }
      message {
        id
        content
        updated
      }
      person {
        displayName
      }
    }
  }
}