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
  • name: String!
  • # Information about this provider
  • providerInfo: 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
  • queryRepositories(
  • after: String,
  • before: String,
  • filter: QueryFilter,
  • first: Int,
  • name: [String!],
  • path: [String!],
  • repositoryId: [String!],
  • sort: [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
  • queryRepositoryEndpoints(
  • after: String,
  • before: String,
  • cspProjectEntityId: [EntityId!],
  • filter: QueryFilter,
  • first: Int,
  • repositoryEndpointId: [String!],
  • repositoryEndpointName: [String!],
  • repositoryEndpointUrl: [String!],
  • sort: [QuerySort!]
  • ): SpringArtifactRepositoryEndpointConnection!
  • }