Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions openhexa/graphql/schema.generated.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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

Expand Down
Loading