INTERFACE
RepositoryQueryProvider
link GraphQL Schema definition
- interface 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 available repository endpoints
- #
- # 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!] : [
- ): RepositoryEndpointConnection!
- }