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
10 changes: 8 additions & 2 deletions server/bundles/io.cloudbeaver.server/schema/service.sql.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,12 @@ extend type Query {
simpleMode: Boolean
): [ SQLCompletionProposal ]

sqlFormatQuery(
connectionId: ID!,
contextId: ID!,
query: String!
): String!

sqlSupportedOperations(
connectionId: ID!,
contextId: ID!,
Expand All @@ -203,7 +209,7 @@ extend type Query {

# List of all available entity query generators
sqlEntityQueryGenerators(nodePathList: [String!]!
): [SQLQueryGenerator!]!
): [SQLQueryGenerator!]!

# Options:
# fullyQualifiedNames: Boolean
Expand All @@ -217,7 +223,7 @@ extend type Query {
generatorId: String!,
options: Object!,
nodePathList: [String!]!
): String!
): String!
}

extend type Mutation {
Expand Down