aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/schema/repository.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'graphql/schema/repository.graphql')
-rw-r--r--graphql/schema/repository.graphql11
1 files changed, 10 insertions, 1 deletions
diff --git a/graphql/schema/repository.graphql b/graphql/schema/repository.graphql
index 0fb491e0..20a3cf0b 100644
--- a/graphql/schema/repository.graphql
+++ b/graphql/schema/repository.graphql
@@ -34,5 +34,14 @@ type Repository {
userIdentity: Identity
"""List of valid labels."""
- validLabels: [Label!]!
+ validLabels(
+ """Returns the elements in the list that come after the specified cursor."""
+ after: String
+ """Returns the elements in the list that come before the specified cursor."""
+ before: String
+ """Returns the first _n_ elements from the list."""
+ first: Int
+ """Returns the last _n_ elements from the list."""
+ last: Int
+ ): LabelConnection!
} \ No newline at end of file