You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Right now, the only timestamp in the response is the liked post's createdAt value. It would be great to also include the timestamp of when the user liked the post.
Describe the solution you'd like
Add the createdAt value of the app.bsky.feed.like record to the API response.
Poking around quickly, I think this means:
Including the value in the return value of the query in like.ts
Updating the skeleton in getActorLikes.ts to include the value in the response
Describe alternatives you've considered
The endpoint returns the app.bsky.feed.like record uri and we can get its details with com.atproto.repo.getRecord. This includes the createdAt but if we want to build a timeline of likes with timestamps, this would necessitate a lot of extra queries.
Additional context
Not having timestamps of favs (or even reasonable sorting/pagination of the list) is a glaring problem in the equivalent twitter endpoint. The like event timestamp exists so it would be great if it were more accessible!
The text was updated successfully, but these errors were encountered:
Yes, I've noticed that too with app.bsky.graph.getFollows and app.bsky.graph.getFollowers. The actual timestamp of the follow event is available with com.atproto.repo.getRecord. Would be great if the event timestamps were included in the viewer object.
Is your feature request related to a problem? Please describe.
Right now, the only timestamp in the response is the liked post's
createdAt
value. It would be great to also include the timestamp of when the user liked the post.Describe the solution you'd like
Add the
createdAt
value of theapp.bsky.feed.like
record to the API response.Poking around quickly, I think this means:
Describe alternatives you've considered
The endpoint returns the
app.bsky.feed.like
record uri and we can get its details withcom.atproto.repo.getRecord
. This includes thecreatedAt
but if we want to build a timeline of likes with timestamps, this would necessitate a lot of extra queries.Additional context
Not having timestamps of favs (or even reasonable sorting/pagination of the list) is a glaring problem in the equivalent twitter endpoint. The like event timestamp exists so it would be great if it were more accessible!
The text was updated successfully, but these errors were encountered: