OBJECT
SpringArtifactRepositoryQueryProvider
link GraphQL Schema definition
- type SpringArtifactRepositoryQueryProvider implements RepositoryQueries, RepositoryQueryProvider {
- # 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
- RepositoryProviderInfo! :
- # Query Repositories
- #
- # 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
- # filter: [Not documented]
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- # name: Optionally filter by repository name, this shall support
- # wildcards
- # path: Optionally filter by repository path, this shall support
- # wildcards
- # repositoryId: Optionally filter by repository ids
- # sort: Sort by one or more attributes, default sort : Sort by
- # creationTime descending
- (
- String, :
- String, :
- QueryFilter, :
- Int, :
- String!], : [
- String!], : [
- String!], : [
- QuerySort!] : [
- ): SpringArtifactRepositoryConnection!
- # Query available repository endpoints
- #
- # **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
- # cspProjectEntityId: filter by project ids
- # filter: [Not documented]
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- # repositoryEndpointId: Optionally filter by repositoryEndpointId
- # repositoryEndpointName: Optionally filter by name, this shall
- # support wildcards
- # repositoryEndpointUrl: Optionally filter by
- # repositoryEndpointUrl
- # sort: Sort by one or more attributes, default sort : Sort by
- # creationTime descending
- (
- String, :
- String, :
- EntityId!], : [
- QueryFilter, :
- Int, :
- String!], : [
- String!], : [
- String!], : [
- QuerySort!] : [
- ): SpringArtifactRepositoryEndpointConnection!
- # Query repository recommendations
- #
- # **NOTE:** This API/functionality is in Alpha, This functionality can be unstable
- # and schema elements may change over future iterations.
- #
- # Arguments
- # first: Return first N records in a paged response, as per
- # GraphQL Relay spec
- Int): [ArtifactRepositoryRecommendation!]! ( :
- }