function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
rohitmaratherohitmarathe 

Querying chatter related with in Adobe Flex toolkit

Can we perform database operations on chatter related objects using the existing Adobe Flex toolkit version for Flex. If no then is the new toolkit available by which I can access chatter objects in my Adobe Flex applications? 
Best Answer chosen by Admin (Salesforce Developers) 
Ron HessRon Hess
yes, but you will have to use the 18 API url when you connect from Flex

All Answers

Ron HessRon Hess
yes, but you will have to use the 18 API url when you connect from Flex
This was selected as the best answer
rohitmaratherohitmarathe
Thanks Ron for your valuable feedback.
rohitmaratherohitmarathe

Just want to sharefollowing thing for the new chatter developers like me :)

 

SELECT Id, Parent.Id, Parent.Name, Parent.Type, Subscriber.Id, Subscriber.Name, Subscriber.Phone, Subscriber.Email  FROM EntitySubscription WHERE Parent.Type IN('Contact','Lead','User','Opportunity','Account')

 

In above way we can get information of follower as well as record being follwed.

If you want to see data in this table, use Apex Data loader V 18.0. Because currently eclispe plugin for force.com does not support chatter objects. So export feature of Data loader can give you fields and data in EntitySubscription  object.