products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_0B4BE9QQYA8G"
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_073SMF4WJ1MG | CNT_0JA7JN81Y5YG | The Ancient Magus' Bride Supplement CNT_0B4BE9QQYA8G | CNT_0B4BE9QQYA8G | 2 | 1 | 1 | Volume I | [] | The Ancient Magus' Bride Supplement I | Fans of?The Ancient Magus' Bride?are sure to love this in-depth guide to its story. Chapter-by-chapter notes provide insight into the author's intent and the world of the story, covering mythology, magic, and more. This handbook contains spoilers aplenty, and is meant to enhance the reading experience for the first three volumes of the series. If you're hoping for a deeper examination of the story of Elias and Chise, look no further! | The Annotated Magus | 01KGA3RMX4BK9TVJNXXQCQS7PT | 1.0 | 2018-09-24T17:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PQM5BDYSMG0 | The Ancient Magus' Bride Supplement I | Kore Yamazaki 2017 | 2018-10-30T07:00:00.000Z | 0 | 0 | ||||
| PRD_1P5VJ083X0P0 | CNT_2QTSTM659MW0 | The Ancient Magus' Bride Supplement CNT_0B4BE9QQYA8G | CNT_0B4BE9QQYA8G | 2 | 1 | 1 | The Ancient Magus' Bride Official Guide Book Merkmal | [] | The Ancient Magus' Bride Official Guide Book Merkmal | Supervised by Kore Yamazaki, this must-have tome is packed with essential information about the The Ancient Magus' Bride manga series, including early sketches and designs, character bios and encyclopedic entries, author interviews, and an amazing array of behind-the-scenes material. Don't miss your chance to read an early storyboard pitch of the first chapter, which went through seven separate drafts to get to the final version! Color and black and white illustration galleries are also included. | THE ULTIMATE GUIDE TO ALL THINGS MAGUS! | 01KGA3N99GRGA1FC7PE3JRW5K7 | 3.0 | 2018-05-20T15:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PQM5BDYSMG0 | The Ancient Magus' Bride Official Guide Book Merkmal | (C) Kore Yamazaki 2017 | 2018-06-01T07:00:00.000Z | 0 | 0 | ||||
| PRD_2CG2M9M7TS9G | CNT_1WVTEX7NA5M0 | The Ancient Magus' Bride Supplement CNT_0B4BE9QQYA8G | CNT_0B4BE9QQYA8G | 2 | 1 | 1 | Volume II | [] | The Ancient Magus' Bride Supplement II | Building on the wealth of information contained in the first supplement, the in-depth guide to the series continues in this new installment. Chapter-by-chapter notes reveal a treasure trove about volumes 4-6 of The Ancient Magus' Bride. This handbook offers new insight into the story, the author's intent, and the real-world mythology that inspired the series--all from a uniquely Japanese perspective. If you're hoping for a deeper examination of the story of Elias and Chise, look no further! | Magus Explained | 01KGA5R9XSA765D60PZT8MBQP0 | 2.0 | 2019-08-07T09:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PQM5BDYSMG0 | The Ancient Magus' Bride Supplement II | Kore Yamazaki 2018 | 2019-08-20T07: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);