mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-04 23:38:01 +00:00
30 lines
524 B
GraphQL
30 lines
524 B
GraphQL
mutation upsertConnection($input: UpsertDataHubConnectionInput!) {
|
|
upsertConnection(input: $input) {
|
|
urn
|
|
details {
|
|
type
|
|
json {
|
|
blob
|
|
}
|
|
}
|
|
platform {
|
|
...platformFields
|
|
}
|
|
}
|
|
}
|
|
|
|
query connection($urn: String!) {
|
|
connection(urn: $urn) {
|
|
urn
|
|
details {
|
|
type
|
|
json {
|
|
blob
|
|
}
|
|
}
|
|
platform {
|
|
...platformFields
|
|
}
|
|
}
|
|
}
|