From 14461060b70746c5d4949583b32d1ca267a86597 Mon Sep 17 00:00:00 2001 From: ludovicm67 Date: Wed, 10 Apr 2019 22:36:34 +0200 Subject: graphql: expose valid labels --- graphql/schema/repository.graphql | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'graphql/schema') 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 -- cgit