mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 10:49:00 +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
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 | 
