17 lines
285 B
GraphQL
17 lines
285 B
GraphQL
#import "./OdbcListFragment.graphql"
|
|
|
|
query OdbcServerList(
|
|
$input: OdbcDsnConnectionListInput
|
|
) {
|
|
server {
|
|
odbcDsnConnections(
|
|
input: $input
|
|
) {
|
|
...OdbcList
|
|
nodes {
|
|
domainName
|
|
}
|
|
}
|
|
}
|
|
}
|