1 réponse
Well, I guess you can. You should be looking at the FeedItem object and then extracting everything from that via Data Loaders(say Apex Data Loader or Dataloader.IO etc).
Tip: While using Data Loader, you will have an option to modify the SOQL query that will be used to retrieve the data from the object. In that query you can add a WHERE clause to filter out just the FeedItem records associated with the Opportunity object alone.SELECT .... FROM FeedItem WHERE Parent.Type = 'Opportunity'