6 rows where is_colimit = 1 sorted by construction

View and edit SQL

is_colimit

Link diagram is_colimit construction ▼
pair of points 1 binary sum
pair of parallel arrows 1 coequalizer
tower 1 directed colimit
endomorphism 1 idempotent splitting
empty diagram 1 initial object
span 1 pushout

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "limits" (
	"diagram"	TEXT NOT NULL,
	"is_colimit"	INTEGER NOT NULL,
	"construction"	TEXT NOT NULL,
	FOREIGN KEY("construction") REFERENCES "universal_objects"("construction") on update cascade on delete restrict,
	FOREIGN KEY("diagram") REFERENCES "diagrams"("shape") on update cascade on delete restrict,
	PRIMARY KEY("diagram","is_colimit","construction")
);