copyright | link | is |
---|---|---|
Copyright IBM Corp. 2017 |
get-a-list-of-mentions |
published |
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
}
}
}
}