Reactions

Adding Reactions

Reactions are a special kind of data that can be used to capture user interaction with specific activities. Common examples of reactions are likes, comments, and upvotes. Reactions are automatically returned to feeds’ activities at read time when the reactions parameters are used.

Reactions are always related to activities; in order to add a reaction to an activity you need to provide its ID.

Parameters

nametypedescriptiondefaultoptional
kindstringThe type of reaction (eg. like, comment, …)-
activity_idstringThe ID of the activity the reaction refers to-
dataobjectAdditional data to attach to the reaction-
target_feedsarrayThe feeds that should receive a notification activity-
target_feeds_extra_dataobjectAdditional data to attach to the notification activities-
user_idstringId of the user adding the reaction if not own user. Required for server side.-
// add a like reaction to the activity with id activityId
const like = await client.reactions.add("like", activityId, {});

// adds a comment reaction to the activity with id activityId
const comment = await client.reactions.add("comment", activityId, {"text": "awesome post!"});

// for server side auth, userId is required
const comment = await client.reactions.add("comment", activityId, {"text": "awesome post!"}, {userId});

Here’s a complete example:

// first let's read current user's timeline feed and pick one activity
const response = await client.feed('timeline', 'mike').get();
const activity = response.activities[0];

// then let's add a like reaction to that activity
await client.reactions.add("like", activity.id);

The size of a reaction can not exceed 10kB

Retrieving Reactions

You can read reactions and filter them based on their user_id or activity_id values. Further filtering can be done with the kind parameter (e.g. retrieve all likes by one user, retrieve all comments for one activity, etc.).

Reactions are returned in descending order (newest to oldest) by default and when using id_lt[e], and in ascending order (oldest to newest) when using id_gt[e].

Parameters

nametypedescriptiondefaultoptional
activity_idstringRetrieve reactions by activity_id-
user_idstringRetrieve reactions by user_id-
reaction_idstringRetrieve children reaction by reaction_id-
kindstringIf provided it will only retrieve reactions of a certain kind (e.g. “like”)-
limitintegerThe number of reactions to retrieve (Max. 25)10
id_gtestringRetrieve reactions created after the one with ID equal to the parameter (inclusive)-
id_gtstringRetrieve reactions created after the one with ID equal to the parameter.-
id_ltestringRetrieve reactions created before the one with ID equal to the parameter (inclusive)-
id_ltstringRetrieve reactions before the one with ID equal to the parameter-
with_activity_databooleanReturns activity data when paginating using activity_id-
with_own_childrenbooleanEnable returning the children reactions when filtering reactions by parent ID-
// retrieve all kind of reactions for an activity
const reactions = await client.reactions.filter({
 'activity_id': 'ed2837a6-0a3b-4679-adc1-778a1704852d'
});

// retrieve first 10 likes for an activity
const response = await client.reactions.filter({
 'activity_id': 'ed2837a6-0a3b-4679-adc1-778a1704852d',
 'kind': 'like',
 'limit': 10
});

// retrieve the next 10 likes using the id_lt param
const response = await client.reactions.filter({
 'activity_id': 'ed2837a6-0a3b-4679-adc1-778a1704852d',
 'kind': 'like',
 'id_lt': 'e561de8f-00f1-11e4-b400-0cc47a024be0',
});

Retrieving Reactions by ID

await client.reactions.get(reactionId)

Updating Reactions

Reactions can be updated by providing reaction ID parameter. Changes to reactions are propagated to all notified feeds; if the target_feeds list is updated, notifications will be added and removed accordingly.

Parameters

nametypedescriptiondefaultoptional
reaction_idstringThe ID of the reaction-
dataobjectReaction data-
target_feedsstringThe list of feeds that should receive a copy of the reaction.-
client.reactions.update(reactionId, {"text": "love it!"});

Removing Reactions

Reactions are easy to remove. Simply pass in their ID, like so:

client.reactions.delete(reactionId);

Soft delete and restore.

This feature is currently supported only selected SDKs. If you need support for other SDKs, please contact support.

Reactions can be soft deleted and restored by ID:

client.reactions.delete(reactionId, true);
client.reactions.restore(reactionId);
© Getstream.io, Inc. All Rights Reserved.