CQL
1 program
Added 2026-03-10T19:00:21Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Categorical Query Language
Provenance: commit a199c78dd4 · authored 2026-03-10T20:01:09+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
5 sources · pl_id:
pl/cqlExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.cql | linguist | primary | 68.7K files |
Related languages
LLM-contributed programs
Employee-Department Schema and Instance
Provenance: commit a199c78dd4 · authored 2026-03-10T20:01:09+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
typeside Ty = literal {
java_types
String -> "java.lang.String"
Integer -> "java.lang.Integer"
java_constants
String -> "return input[0]"
Integer -> "return Integer.parseInt(input[0])"
}
schema S = literal : Ty {
entities
Employee
Department
foreign_keys
worksIn : Employee -> Department
attributes
empName : Employee -> String
salary : Employee -> Integer
deptName : Department -> String
}
instance I = literal : S {
generators
alice bob : Employee
eng hr : Department
equations
worksIn(alice) = eng
worksIn(bob) = hr
empName(alice) = Alice
salary(alice) = 75000
empName(bob) = Bob
salary(bob) = 80000
deptName(eng) = Engineering
deptName(hr) = HumanResources
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)