Vote
Stores votes cast on Chatter posts and comments, allowing users to indicate approval or agreement.
Table Specific Information
Select
The Salesforce server requires filtering on ParentId, Type, or Id in order to perform the query.
For example:
SELECT * FROM Vote WHERE ParentId = 'your_value' SELECT * FROM Vote WHERE Type = 'your_value' SELECT * FROM Vote WHERE Id = 'your_value'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the vote record. | |
| IsDeleted | Boolean | True |
Indicates whether the vote has been deleted from the system. | |
| ParentId | String | False |
Solution.Id |
Identifier of the record that the vote is associated with, such as an Idea or FeedItem. |
| Type | String | False |
Specifies the type of vote, such as Up or Down. | |
| CreatedDate | Datetime | True |
Date and time when the vote was created. | |
| CreatedById | String | True |
User.Id |
Identifier of the user who cast the vote. |
| SystemModstamp | Datetime | True |
System-generated timestamp indicating the most recent change to the vote record. |