mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-01 05:47:17 +00:00
26 lines
590 B
GraphQL
26 lines
590 B
GraphQL
query getTimeline($input: GetTimelineInput!) {
|
|
getTimeline(input: $input) {
|
|
changeTransactions {
|
|
timestampMillis
|
|
lastSemanticVersion
|
|
versionStamp
|
|
changeType
|
|
changes {
|
|
urn
|
|
category
|
|
operation
|
|
modifier
|
|
parameters {
|
|
key
|
|
value
|
|
}
|
|
auditStamp {
|
|
actor
|
|
time
|
|
}
|
|
description
|
|
}
|
|
}
|
|
}
|
|
}
|