product_contributors
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
2 rows where contributor_id = "CON_10TEJE3AMM8G"
This data as json, CSV (advanced)
| Link | product_id | contributor_id | role | name_override |
|---|---|---|---|---|
| PRD_1H0228K5ZH30,CON_10TEJE3AMM8G,25 | Lycoris Recoil: Ordinary Days PRD_1H0228K5ZH30 | ABC ABC Animation CON_10TEJE3AMM8G | 25 | |
| PRD_2K1DQHZX0MYG,CON_10TEJE3AMM8G,25 | Volume 1 PRD_2K1DQHZX0MYG | ABC ABC Animation CON_10TEJE3AMM8G | 25 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_contributors (
product_id TEXT NOT NULL,
contributor_id TEXT NOT NULL,
role INTEGER NOT NULL,
name_override TEXT,
PRIMARY KEY (product_id, contributor_id, role),
FOREIGN KEY (product_id) REFERENCES products(id),
FOREIGN KEY (contributor_id) REFERENCES contributors(id)
);
CREATE INDEX idx_product_contributors_contributor ON product_contributors(contributor_id);