citation_edge
Data license: Space charter; records cite primary sources · Data source: TeamScience Space repository
1 row where to_lom_id = "arxiv:2405.15143"
This data as json, CSV (advanced)
| Link | from_lom_id | to_lom_id | kind | locator |
|---|---|---|---|---|
| arxiv:2408.06292,arxiv:2405.15143,cites | The AI Scientist: Towards Fully Automated Open-Ended Scientific Discovery arxiv:2408.06292 | Intelligent go-explore: Standing on the shoulders of giant foundation models, 2024b arxiv:2405.15143 | cites | arxiv:2408.06292 reference list (arXiv HTML bibliography) |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE citation_edge (
from_lom_id TEXT NOT NULL REFERENCES paper(lom_id),
to_lom_id TEXT NOT NULL REFERENCES paper(lom_id),
kind TEXT NOT NULL CHECK (kind IN ('cites','cited_by','stub')),
locator TEXT,
PRIMARY KEY (from_lom_id, to_lom_id, kind),
CHECK (from_lom_id <> to_lom_id)
);