products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_15G787BCVHMG"
This data as json, CSV (advanced)
Suggested facets: description, listed_at (date), on_sale_at (date)
| id ▼ | content_id | series_id | parent_content_id | level | content_type | product_type | title | alt_titles | subtitle | display_title | display_title_short | description | description_short | image_id | display_order | listed_at | label_id | geoblock_id | display_name | copyright | on_presale_at | on_sale_at | off_sale_at | add_on | add_on_campaign_only |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| PRD_10NBJJ0Y3GB0 | CNT_2HQ6VWW2T0CG | Shojo Null CNT_15G787BCVHMG | CNT_15G787BCVHMG | 2 | 1 | 1 | Volume 2 | [] | Shojo Null, Vol. 2 | Riaha didn't think much of it when he heard rumors about a missing Gijin, but that all changed when that very same Gijin showed up on his doorstep. Marie may have a sweet and bubbly personality, but she's out for blood. And when Riaha makes the bold decision to help her, the two find themselves on the run from the police and caught in the net of an ever-deepening conspiracy as they fight to free the Gijin by any means necessary. | 01KG9QB43016TEH9XHN08V2D8F | 2.0 | 2025-03-10T07:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | Shojo Null, Vol. 2 | SHOJO NULL © 2023 by Kanae Nakanishi, Akima/SHUEISHA Inc. | 2025-04-22T07:00:00.000Z | 0 | 0 | |||||
| PRD_12Z45EH0Z9DG | CNT_082JK8GCRHXG | Shojo Null CNT_15G787BCVHMG | CNT_15G787BCVHMG | 2 | 1 | 1 | Volume 1 | [] | Shojo Null, Vol. 1 | Riaha didn't think much of it when he heard rumors about a missing Gijin, but that all changed when that very same Gijin showed up on his doorstep. Marie may have a sweet and bubbly personality, but she's out for blood. And when Riaha makes the bold decision to help her, the two find themselves on the run from the police and caught in the net of an ever-deepening conspiracy as they fight to free the Gijin by any means necessary. | 01KG9S7XMSXNPR6TE8FWQS0445 | 1.0 | 2024-12-19T08:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | Shojo Null, Vol. 1 | SHOJO NULL © 2023 by Kanae Nakanishi, Akima/SHUEISHA Inc. | 2025-01-28T08:00:00.000Z | 0 | 0 | |||||
| PRD_2NXRJJ4R2PKG | CNT_0BSPC011VM40 | Shojo Null CNT_15G787BCVHMG | CNT_15G787BCVHMG | 2 | 1 | 1 | Volume 4 | [] | Shojo Null, Vol. 4 | Fuji 93106 takes on the multilegged cyborg Takashi again in a fight to the death. And just when things couldn't get worse, the insidious Makabe orders a genocide on the hidden gijin stronghold. In the chaos, Riaha gets a chance for revenge when he faces his father's murderer. The ultimate battle between humankind and Gijin ends here. Find out who will survive in this final volume! | 01KGBV5PNGZCAX73ZQ3AXJXJZ6 | 4.0 | 2025-09-11T07:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | Shojo Null, Vol. 4 | SHOJO NULL © 2023 by Kanae Nakanishi, Akima/SHUEISHA Inc. | 2025-10-28T07:00:00.000Z | 0 | 0 | |||||
| PRD_316R1TWD3V5G | CNT_25C76568RTBG | Shojo Null CNT_15G787BCVHMG | CNT_15G787BCVHMG | 2 | 1 | 1 | Volume 3 | [] | Shojo Null, Vol. 3 | Fresh off the destruction of an evil Gijin-harvesting religious facility and a brutal battle, Riaha and Marie are on the run from the police! With the world well aware of their trail of destruction, they head to the bottom of Tokyo Bay to hide in a secret city called Limbo. But it won't be an easy journey as they're being pursued by a heavily modded force of superpowered agents called the Hound Squad! | 01KGBQBJ5PCXZ4SCYRAH7MVVCB | 3.0 | 2025-06-09T07:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | Shojo Null, Vol. 3 | SHOJO NULL © 2023 by Kanae Nakanishi, Akima/SHUEISHA Inc. | 2025-07-22T07:00:00.000Z | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE products (
id TEXT PRIMARY KEY,
content_id TEXT NOT NULL,
series_id TEXT NOT NULL,
parent_content_id TEXT,
level INTEGER NOT NULL,
content_type INTEGER NOT NULL,
product_type INTEGER NOT NULL,
title TEXT NOT NULL,
alt_titles TEXT NOT NULL,
subtitle TEXT NOT NULL,
display_title TEXT NOT NULL,
display_title_short TEXT NOT NULL,
description TEXT NOT NULL,
description_short TEXT NOT NULL,
image_id TEXT NOT NULL,
display_order REAL NOT NULL,
listed_at TEXT NOT NULL,
label_id TEXT NOT NULL,
geoblock_id TEXT,
display_name TEXT NOT NULL,
copyright TEXT,
on_presale_at TEXT,
on_sale_at TEXT NOT NULL,
off_sale_at TEXT,
add_on INTEGER NOT NULL,
add_on_campaign_only INTEGER NOT NULL,
FOREIGN KEY (series_id) REFERENCES series(id),
FOREIGN KEY (label_id) REFERENCES labels(id),
FOREIGN KEY (geoblock_id) REFERENCES geoblocks(id)
);
CREATE INDEX idx_products_content ON products(content_id);
CREATE INDEX idx_products_series ON products(series_id);
CREATE INDEX idx_products_label ON products(label_id);
CREATE INDEX idx_products_geoblock ON products(geoblock_id);
CREATE INDEX idx_products_image ON products(image_id);