File tree 2 files changed +718
-596
lines changed
2 files changed +718
-596
lines changed Original file line number Diff line number Diff line change @@ -22377,7 +22377,7 @@ enum ReportedContentClassifiers {
22377
22377
"""
22378
22378
A repository contains the content for a project.
22379
22379
"""
22380
- type Repository implements Node & ProjectOwner & RegistryPackageOwner & RepositoryInfo & Starrable & Subscribable & UniformResourceLocatable {
22380
+ type Repository implements Node & ProjectOwner & RegistryPackageOwner & RegistryPackageSearch & RepositoryInfo & Starrable & Subscribable & UniformResourceLocatable {
22381
22381
"""
22382
22382
A list of users that can be assigned to issues in this repository.
22383
22383
"""
@@ -23204,6 +23204,41 @@ type Repository implements Node & ProjectOwner & RegistryPackageOwner & Reposito
23204
23204
repositoryId: ID
23205
23205
): RegistryPackageConnection!
23206
23206
23207
+ """
23208
+ A list of registry packages for a particular search query.
23209
+ """
23210
+ registryPackagesForQuery(
23211
+ """
23212
+ Returns the elements in the list that come after the specified cursor.
23213
+ """
23214
+ after: String
23215
+
23216
+ """
23217
+ Returns the elements in the list that come before the specified cursor.
23218
+ """
23219
+ before: String
23220
+
23221
+ """
23222
+ Returns the first _n_ elements from the list.
23223
+ """
23224
+ first: Int
23225
+
23226
+ """
23227
+ Returns the last _n_ elements from the list.
23228
+ """
23229
+ last: Int
23230
+
23231
+ """
23232
+ Filter registry package by type.
23233
+ """
23234
+ packageType: RegistryPackageType
23235
+
23236
+ """
23237
+ Find registry package by search query.
23238
+ """
23239
+ query: String
23240
+ ): RegistryPackageConnection!
23241
+
23207
23242
"""
23208
23243
Lookup a single release given various criteria.
23209
23244
"""
You can’t perform that action at this time.
0 commit comments