2024-06-19 20:14:02 +05:30
|
|
|
fragment contractAssertionParameters on AssertionStdParameters {
|
|
|
|
value {
|
|
|
|
value
|
|
|
|
type
|
|
|
|
}
|
|
|
|
minValue {
|
|
|
|
value
|
|
|
|
type
|
|
|
|
}
|
|
|
|
maxValue {
|
|
|
|
value
|
|
|
|
type
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fragment dataContractDetails on DataContract {
|
|
|
|
urn
|
|
|
|
type
|
|
|
|
properties {
|
|
|
|
freshness {
|
|
|
|
assertion {
|
|
|
|
...assertionDetailsWithRunEvents
|
|
|
|
}
|
|
|
|
}
|
|
|
|
schema {
|
|
|
|
assertion {
|
|
|
|
...assertionDetailsWithRunEvents
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dataQuality {
|
|
|
|
assertion {
|
|
|
|
...assertionDetailsWithRunEvents
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
status {
|
|
|
|
state
|
|
|
|
}
|
2025-04-11 08:30:20 -07:00
|
|
|
structuredProperties {
|
|
|
|
properties {
|
|
|
|
...structuredPropertiesFields
|
|
|
|
}
|
|
|
|
}
|
2024-06-19 20:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
query getDatasetContract($urn: String!) {
|
|
|
|
dataset(urn: $urn) {
|
|
|
|
contract {
|
|
|
|
...dataContractDetails
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mutation upsertDataContract($input: UpsertDataContractInput!) {
|
|
|
|
upsertDataContract(input: $input) {
|
|
|
|
...dataContractDetails
|
|
|
|
}
|
|
|
|
}
|