UriReference
42 rows where target = 64
This data as json, CSV (advanced)
Suggested facets: content
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE UriReference( content INTEGER, target INTEGER, why INTEGER, PRIMARY KEY (content, target, why), FOREIGN KEY(content) REFERENCES Hash(id), FOREIGN KEY(target) REFERENCES Str(id), /* E.g. Uri or Path */ FOREIGN KEY(why) REFERENCES Str(id) /* E.g. "href" */ ); CREATE INDEX UriReferenceIdx ON UriReference(target, content);