From 4a5b78e941eaafc580388a1d3e594e3a2623075c Mon Sep 17 00:00:00 2001 From: William Allen Date: Tue, 7 Jul 2026 14:59:16 -0400 Subject: [PATCH] Remove unused BasicBuildAlert GraphQL type This type is no longer referenced in the schema, and is thus unnecessary. --- graphql/schema.graphql | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/graphql/schema.graphql b/graphql/schema.graphql index b00d5db157..5bb65f1eca 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -1108,28 +1108,6 @@ type BuildCommandOutput { } -""" -"Basic" alerts are warnings or errors scraped from the build log, as opposed to "rich" alerts which -come from CTest launchers. A given build should either have all "basic" alerts or all "rich" alerts. -Users should take both types into account when querying the alerts for a given build. - -https://cmake.org/cmake/help/latest/manual/ctest.1.html#ctest-build-step -""" -type BasicBuildAlert { - logLine: Int! @rename(attribute: "logline") - - text: String! @rename(attribute: "stdoutput") - - sourceFile: String! @rename(attribute: "sourcefile") - - sourceLine: Int! @rename(attribute: "sourceline") - - preContext: String @rename(attribute: "precontext") - - postContext: String @rename(attribute: "postcontext") -} - - type BuildError { "Unique primary key." id: ID! @filterable