aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/schema
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-04-10 23:35:23 +0200
committerGitHub <noreply@github.com>2019-04-10 23:35:23 +0200
commit5db2ddcbe879c14aa683cf7b41f69639a9e3fd2c (patch)
tree929c128d21c5339aaefa28cdae2d33b9d728c9c3 /graphql/schema
parent0e53d2555e9a6ddc707f6c59497f30e182116c80 (diff)
parent14461060b70746c5d4949583b32d1ca267a86597 (diff)
downloadgit-bug-5db2ddcbe879c14aa683cf7b41f69639a9e3fd2c.tar.gz
Merge pull request #124 from ludovicm67/feat-valid-labels
graphql: expose valid labels
Diffstat (limited to 'graphql/schema')
-rw-r--r--graphql/schema/repository.graphql7
1 files changed, 5 insertions, 2 deletions
diff --git a/graphql/schema/repository.graphql b/graphql/schema/repository.graphql
index a4f4b424..0fb491e0 100644
--- a/graphql/schema/repository.graphql
+++ b/graphql/schema/repository.graphql
@@ -28,8 +28,11 @@ type Repository {
last: Int
): IdentityConnection!
- identity(prefix: String!):Identity
+ identity(prefix: String!): Identity
"""The identity created or selected by the user as its own"""
- userIdentity:Identity
+ userIdentity: Identity
+
+ """List of valid labels."""
+ validLabels: [Label!]!
} \ No newline at end of file