products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_01GXJ29DPBT0"
This data as json, CSV (advanced)
Suggested facets: 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_0K35Q9GA9GTG | CNT_0JYDC6QX34S0 | Restaurant to Another World CNT_01GXJ29DPBT0 | CNT_01GXJ29DPBT0 | 2 | 1 | 1 | Volume 1 | [] | Restaurant to Another World, Vol. 1 | By all appearances, Western Restaurant Nekoya is a normal restaurant serving normal people—but unbeknownst to the regulars, it also attracts an alternative clientele. Every Saturday, all manner of fantastical beings come to dine, and what is familiar fare to humans can be downright exotic for visitors from beyond. To these customers, Nekoya is known by a different name: Restaurant to Another World.READERS BEWARE: Opening this book may lead to uncontrollable drooling and a grumbling belly! | 01KG9BVE4D07P4NKGYWR27HVGB | 1.0 | 2020-06-04T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Restaurant to Another World, Vol. 1 | 2020-06-23T07:00:00.000Z | 0 | 0 | ||||||
| PRD_2T8JQFSV7AQG | CNT_0SAGKNDK6EW0 | Restaurant to Another World CNT_01GXJ29DPBT0 | CNT_01GXJ29DPBT0 | 2 | 1 | 1 | Volume 3 | [] | Restaurant to Another World, Vol. 3 | Life’s gotten a lot more interesting for Aletta, and her work at the Restaurant to Another World has only just begun. Thanks to her coworkers, there’s never a dull moment, and when the staff’s not arguing, the customers are! At times like these, the only thing that can calm everyone down is the delicious cuisine that’s brought them all together! | 01KG9DD97QQNEPQY6978W75JJ3 | 3.0 | 2020-11-06T08:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Restaurant to Another World, Vol. 3 | 2020-12-08T08:00:00.000Z | 0 | 0 | ||||||
| PRD_32GFQ0S9WZBG | CNT_39G8W8MGN480 | Restaurant to Another World CNT_01GXJ29DPBT0 | CNT_01GXJ29DPBT0 | 2 | 1 | 1 | Volume 2 | [] | Restaurant to Another World, Vol. 2 | Every Saturday, Western Restaurant Nekoya serves a smorgasbord of delectable delicacies to visitors you won’t find anywhere on modern-day Earth. A desperate knight on a vital mission, a sickly princess looking for comfort, a castaway clinging to hope—they all flock to Nekoya to savor delicious dishes beyond their wildest dreams. | 01KG9D298Y4P5105H2TRTMX81N | 2.0 | 2020-09-22T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Restaurant to Another World, Vol. 2 | 2020-10-27T07:00:00.000Z | 0 | 0 | ||||||
| PRD_34HNPNK7DBZG | CNT_35AFKA2S6Z9G | Restaurant to Another World CNT_01GXJ29DPBT0 | CNT_01GXJ29DPBT0 | 2 | 1 | 1 | Volume 4 | [] | Restaurant to Another World, Vol. 4 | Bright in the evening, cool in the summer, and warm in the winter: That’s the mysterious eatery known as Western Restaurant Nekoya, where every Saturday, strange visitors arrive to savor its delicacies. Whether they’re desert royalty dining on dreamy desserts or dark lovers feasting on tender steak and bloodred wine, everyone who pulls up a chair leaves full and satisfied! But how did the Restaurant to Another World begin? As old friends are reunited and new faces come to dine, the truth behind the origins of Nekoya will finally be revealed in this final volume! | 01KG9EKMXBW2G2DM2B47RX9QH8 | 4.0 | 2021-01-28T08:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Restaurant to Another World, Vol. 4 | 2021-03-09T08: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);