Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
Last active August 26, 2020 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamigibbs/c43830c3b77fd42de58108c4ee1f53c4 to your computer and use it in GitHub Desktop.
Save jamigibbs/c43830c3b77fd42de58108c4ee1f53c4 to your computer and use it in GitHub Desktop.
SOQL query for profile image from FeedItem
feedItemsList = [
SELECT Id, Body, Title, Parent.Name, CreatedDate,
TYPEOF InsertedBy WHEN User THEN Name, MediumPhotoUrl END
FROM FeedItem
WHERE CreatedDate = LAST_N_DAYS:30
ORDER BY CreatedDate DESC
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment