Add with=translations in the sql builder logic

This commit is contained in:
Zoe Roux
2025-03-09 01:16:50 +01:00
parent 3f77a1bda5
commit c161d680e3
7 changed files with 104 additions and 11 deletions
+34
View File
@@ -60,6 +60,40 @@ export const madeInAbyss = {
banner: null,
trailerUrl: "https://www.youtube.com/watch?v=ePOyy6Wlk4s",
},
ja: {
name: "メイドインアビス",
tagline: "さぁ 大穴(アビス)へ――",
aliases: ["烈日の黄金郷"],
description:
"隅々まで探索されつくした世界に、唯一残された秘境の大穴『アビス』。どこまで続くとも知れない深く巨大なその縦穴には、奇妙奇怪な生物たちが生息し、今の人類では作りえない貴重な遺物が眠っている。「アビス」の不可思議に満ちた姿は人々を魅了し、冒険へと駆り立てた。そうして幾度も大穴に挑戦する冒険者たちは、次第に『探窟家』と呼ばれるようになっていった。 アビスの縁に築かれた街『オース』に暮らす孤児のリコは、いつか母のような偉大な探窟家になり、アビスの謎を解き明かすことを夢見ていた。そんなある日、リコはアビスを探窟中に、少年の姿をしたロボットを拾い…?",
tags: [
"android",
"amnesia",
"post-apocalyptic future",
"exploration",
"friendship",
"mecha",
"survival",
"curse",
"tragedy",
"orphan",
"based on manga",
"robot",
"dark fantasy",
"seinen",
"anime",
"drastic change of life",
"fantasy",
"adventure",
],
poster:
"https://image.tmdb.org/t/p/original/4Bh9qzB1Kau4RDaVQXVFdoJ0HcE.jpg",
thumbnail:
"https://image.tmdb.org/t/p/original/Df9XrvZFIeQfLKfu8evRmzvRsd.jpg",
logo: "https://image.tmdb.org/t/p/original/7hY3Q4GhkiYPBfn4UoVg0AO4Zgk.png",
banner: null,
trailerUrl: "https://www.youtube.com/watch?v=ePOyy6Wlk4s",
},
},
genres: [
"animation",
+2 -2
View File
@@ -26,9 +26,9 @@ export const keysetPaginate = <
}: {
table: Table<"pk" | Sort<T, Remap>["sort"][number]["key"]>;
after: string | undefined;
sort: Sort<T, Remap>;
sort: Sort<T, Remap> | undefined;
}) => {
if (!after) return undefined;
if (!after || !sort) return undefined;
const cursor: After = JSON.parse(
Buffer.from(after, "base64").toString("utf-8"),
);