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