© 2026 Hedgehog Software, LLC
const userId = ctx.userId const status = await ctx.prisma.post.update({ where: { id: input.postId, }, data: { likedBy: { push: userId }, },