From 0734fd051668840e1c5b68a07197745a8938e769 Mon Sep 17 00:00:00 2001 From: YolanFery Date: Mon, 13 Jul 2026 09:00:45 +0200 Subject: [PATCH] fix: schema --- openhexa/graphql/schema.generated.graphql | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/openhexa/graphql/schema.generated.graphql b/openhexa/graphql/schema.generated.graphql index d48e3917..bf90897f 100644 --- a/openhexa/graphql/schema.generated.graphql +++ b/openhexa/graphql/schema.generated.graphql @@ -1447,7 +1447,7 @@ type Database { executeSQL(maxRows: Int, query: String!): ExecuteSQLResult! readOnlyCredentials: DatabaseCredentials table(name: String!): DatabaseTable - tables(page: Int, perPage: Int, withColumns: Boolean = false, withCounts: Boolean = true): DatabaseTablePage! + tables(page: Int, perPage: Int): DatabaseTablePage! } type DatabaseCredentials { @@ -2346,9 +2346,6 @@ type ExecuteSQLResult { """The names of the columns returned by the query.""" columns: [String!] - """The server-side execution time of the query, in milliseconds.""" - durationMs: Int - """The underlying database error message, when the query failed.""" errorMessage: String