UriReference
11 rows where target = 37
This data as json, CSV (advanced)
Suggested facets: content
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "UriReference" (
"content" INTEGER NOT NULL,
"target" INTEGER,
"why" INTEGER,
"id" INTEGER,
CONSTRAINT "NoDupRefs" UNIQUE("content","target","why"),
PRIMARY KEY("id"),
FOREIGN KEY("content") REFERENCES "Hash"("id"),
FOREIGN KEY("target") REFERENCES "Str"("id"),
FOREIGN KEY("why") REFERENCES "Str"("id")
) STRICT;
CREATE INDEX UriReferenceIdx
ON UriReference(target, content);