@mentions for given feeditem id through soql
Is it possible to get details about @mentioned in feeditem body through soql. REST API and Connect API are available, but not able to locate any standard object which has this information. Please...
View ArticleHow to count Chatter posts in SOQL?
Is there a way to count chatter posts for a specific record? I tried simple query: SELECT COUNT() FROM FeedItem WHERE Type = 'TextPost' But this doesn't work in Apex since it throws an error...
View ArticleSearch in All Fields plus topics for feeditems
I currently have an SOSL query [FIND :finalSearchText IN ALL FIELDS RETURNING FeedItem(Id, Title WHERE Type = 'QuestionPost') LIMIT 10]; This works great for searching the feed item title and body....
View ArticleGet FeedItem and TopicAssignment details from FeedComment
I'm trying to build a query which would get all comments and the Topics assigned to the FeedItem they belong to but looks like I have hit a snag.This is what I'm trying right now -->SELECT Id,...
View Article