12 rows sorted by is_colimit

View and edit SQL

Suggested facets: diagram, is_colimit, construction

Link diagram is_colimit ▼ construction
empty diagram 0 terminal object
pair of points 0 binary product
cospan 0 pullback
pair of parallel arrows 0 equalizer
tower 0 directed limit
endomorphism 0 idempotent splitting
empty diagram 1 initial object
pair of points 1 binary sum
span 1 pushout
pair of parallel arrows 1 coequalizer
tower 1 directed colimit
endomorphism 1 idempotent splitting

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")
);