Skip to content

Commit

Permalink
Merge branch 'devel' into CB-5123-license-status-insufficient-amount-…
Browse files Browse the repository at this point in the history
…users
  • Loading branch information
EvgeniaBzzz authored Aug 9, 2024
2 parents 03b06f1 + 8d14e42 commit 5a5b713
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 0 additions & 1 deletion webapp/packages/core-connections/src/DBDriverResource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ export class DBDriverResource extends CachedMapResource<string, DBDriver, DBDriv

getDefaultIncludes(): DBDriverResourceIncludes {
return {
includeDriverLibraries: false,
includeDriverParameters: false,
includeDriverProperties: false,
includeMainProperties: false,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
query getDriverLibraries($id: ID!) {
driverList(id: $id) {
driverLibraries {
id
name
icon
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ query driverList(
$includeMainProperties: Boolean!
$includeDriverProperties: Boolean!
$includeDriverParameters: Boolean!
$includeDriverLibraries: Boolean!
) {
drivers: driverList(id: $driverId) {
...DatabaseDriver
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,4 @@ fragment DatabaseDriver on DriverInfo {
validValues
}
driverParameters @include(if: $includeDriverParameters)

driverLibraries @include(if: $includeDriverLibraries) {
id
name
icon
}
}

0 comments on commit 5a5b713

Please sign in to comment.