25 lines
468 B
GraphQL
25 lines
468 B
GraphQL
query OdbcConnectionsList(
|
|
$input: OdbcDsnConnectionListInput
|
|
) {
|
|
server {
|
|
odbcDsnConnections(
|
|
input: $input
|
|
) {
|
|
nodes {
|
|
id
|
|
name
|
|
driver
|
|
isSystem
|
|
}
|
|
pageInfo {
|
|
total
|
|
pageCount
|
|
}
|
|
sortInfo {
|
|
sortColumn
|
|
sortDirection
|
|
}
|
|
}
|
|
}
|
|
}
|