pull down to refresh

Yeah, good point! It’s still the case:

const excludeMuted = Prisma.sql`NOT EXISTS (
  SELECT 1
  FROM "MuteSub"
  WHERE "MuteSub"."userId" = ${me.id}::INTEGER
    AND "MuteSub"."subName" = ANY(${subNames})
  )`