GSQL
1 program
Added 2026-02-11T14:19:30Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: TigerGraph GSQL
Provenance: commit 75120afba5 · authored 2026-02-11T15:20:29+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/gsqlExtensions 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 |
|---|---|---|---|
.gsql | pygments | primary | 7.5K files |
Related languages
LLM-contributed programs
PageRank Algorithm
Provenance: commit 75120afba5 · authored 2026-02-11T15:20:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
CREATE QUERY pageRank(FLOAT maxChange, INT maxIter, FLOAT damping) FOR GRAPH socialNetwork {
TYPEDEF TUPLE<VERTEX Vertex_ID, FLOAT score> vertexScore;
HeapAccum<vertexScore>(100, score DESC) @@topScores;
MaxAccum<FLOAT> @@maxDiff = 9999;
SumAccum<FLOAT> @recvdScore = 0;
SumAccum<FLOAT> @score = 1;
INT iter = 0;
Start = {Person.*};
WHILE @@maxDiff > maxChange LIMIT maxIter DO
@@maxDiff = 0;
V = SELECT s
FROM Start:s -(Knows)- :t
ACCUM t.@recvdScore += s.@score/(s.outdegree("Knows"));
V = SELECT s
FROM Start:s
POST-ACCUM
s.@score = (1.0-damping) + damping * s.@recvdScore,
s.@recvdScore = 0,
@@maxDiff += abs(s.@score - s.@score');
iter = iter + 1;
END;
Start = SELECT s FROM Start:s
POST-ACCUM @@topScores += vertexScore(s, s.@score);
PRINT @@topScores;
}
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.)