INTERFACE
ArtifactMetadataQueryProvider
link GraphQL Schema definition
- interface ArtifactMetadataQueryProvider {
- # Provider name, expected to be the same as the field name used to access this
- # provider, possibly with case differences
- String! :
- # Information about this provider
- ArtifactMetadataProviderInfo! :
- # Query available artifact assessments
- #
- # Arguments
- # after: Return records after the given cursor, as per GraphQL
- # Relay spec
- # artifactMetadataId: Optionally filter by artifactMetadataId
- # artifactMetadataName: Optionally filter by artifactMetadata
- # name
- # artifactMetadataVersionId: Optionally filter by
- # artifactMetadata version ids
- # assessmentId: Optionally filter by ids
- # assessmentName: Optionally filter by ids
- # before: Return records before the given cursor, as per GraphQL
- # Relay spec
- # filter: [Not documented]
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- # sort: Sort by one or more attributes, default sort : Sort by
- # creationTime descending
- (
- String, :
- String!], : [
- String!], : [
- String!], : [
- String!], : [
- String!], : [
- String, :
- QueryFilter, :
- Int, :
- QuerySort!] : [
- ): ArtifactAssessmentConnection!
- # Query available artifact metadata
- #
- # Arguments
- # after: Return records after the given cursor, as per GraphQL
- # Relay spec
- # artifactMetadataId: Optionally filter by artifactMetadataId
- # before: Return records before the given cursor, as per GraphQL
- # Relay spec
- # filter: [Not documented]
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- # name: Optionally filter by artifactMetadata name
- # sort: Sort by one or more attributes, default sort : Sort by
- # name ascending
- (
- String, :
- String!], : [
- String, :
- QueryFilter, :
- Int, :
- String!], : [
- QuerySort!] : [
- ): ArtifactMetadataConnection!
- }