Added another function to get all user favorites with pagination #3

Merged
fenpaws merged 2 commits from more-querys into main 2024-05-15 10:00:05 +00:00

View File

@ -333,6 +333,7 @@ func GetUserFavoriteNodeWithPagination(ctx context.Context, driver neo4j.DriverW
MATCH (a:AnthrovePost)<-[r:REFERENCE]-(s:Source)
WHERE a.post_id in faves
RETURN a AS anthrovePost, r AS postRelation, s AS Source
ORDER BY id(a) ASC
`
params := map[string]any{
"anthrove_user_id": anthroveUserID,