OBJECT
HubArtifactTraits
link GraphQL Schema definition
- type HubArtifactTraits {
- # List of SBOMs associated with this entity
- #
- # Arguments
- # after: Return records after the given cursor, as per GraphQL
- # Relay spec
- # before: Return records before the given cursor, as per GraphQL
- # Relay spec
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- # sbomFilter: [Not documented]
- (
- String, :
- String, :
- Int, :
- HubArtifactSBOMFilterInput :
- ): HubArtifactSBOMInfoConnection!
- # List of vulnerabilities associated with this entity
- #
- # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
- # and schema elements may change over future iterations.
- #
- # Arguments
- # after: Return records after the given cursor, as per GraphQL
- # Relay spec
- # before: Return records before the given cursor, as per GraphQL
- # Relay spec
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- # vulnerabilityFilter: Input filters to filter Vulnerabilities
- (
- String, :
- String, :
- Int, :
- HubArtifactVulnerabilityFilterInput :
- ): HubArtifactVulnerabilityConnection!
- }