We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed6222f commit e8cc3d0Copy full SHA for e8cc3d0
src/services/postService.ts
@@ -101,7 +101,7 @@ const postService = {
101
and posts.is_temp = false and posts.is_private = false
102
and posts.released_at < ${cursorPost.released_at}
103
order by posts.released_at desc
104
- limit 10`;
+ limit 20`;
105
const ids = result.map(r => r.fk_post_id);
106
const posts = await db.post.findMany({
107
where: {
@@ -126,7 +126,7 @@ const postService = {
126
where pt.fk_tag_id = uuid(${originTag.id})
127
128
129
130
131
132
0 commit comments