Shirshanka Das 43e3cd9602
feat(propagation): Add graphql API (#11030)
Co-authored-by: Chris Collins <chriscollins3456@gmail.com>
2024-07-30 09:45:57 -07:00

50 lines
988 B
GraphQL

"""
Object containing the documentation aspect for an entity
"""
type Documentation {
"""
Structured properties on this entity
"""
documentations: [DocumentationAssociation!]!
}
"""
Object containing the documentation aspect for an entity
"""
type DocumentationAssociation {
"""
Structured properties on this entity
"""
documentation: String!
"""
Information about who, why, and how this metadata was applied
"""
attribution: MetadataAttribution
}
"""
Information about who, why, and how this metadata was applied
"""
type MetadataAttribution {
"""
The time this metadata was applied
"""
time: Long!
"""
The actor responsible for this metadata application
"""
actor: Entity!
"""
The source of this metadata application. If propagated, this will be an action.
"""
source: Entity
"""
Extra details about how this metadata was applied
"""
sourceDetail: [StringMapEntry!]
}