diff options
author | ludovicm67 <ludovicmuller1@gmail.com> | 2019-04-10 22:36:34 +0200 |
---|---|---|
committer | ludovicm67 <ludovicmuller1@gmail.com> | 2019-04-10 22:36:34 +0200 |
commit | 14461060b70746c5d4949583b32d1ca267a86597 (patch) | |
tree | 929c128d21c5339aaefa28cdae2d33b9d728c9c3 /graphql/schema/repository.graphql | |
parent | 0e53d2555e9a6ddc707f6c59497f30e182116c80 (diff) | |
download | git-bug-14461060b70746c5d4949583b32d1ca267a86597.tar.gz |
graphql: expose valid labels
Diffstat (limited to 'graphql/schema/repository.graphql')
-rw-r--r-- | graphql/schema/repository.graphql | 7 |
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 |