From 8570590373eb2e3fb17bac3c7ca8c93b348ed70f Mon Sep 17 00:00:00 2001 From: MinasukiHikimuna <121475844+MinasukiHikimuna@users.noreply.github.com> Date: Sun, 21 Jul 2024 12:39:57 +0300 Subject: [PATCH] Fix comment: findTag only allows ID or name Finding by alias is not supported. --- graphql/schema/schema.graphql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphql/schema/schema.graphql b/graphql/schema/schema.graphql index 5c9db425..88df6f4f 100644 --- a/graphql/schema/schema.graphql +++ b/graphql/schema/schema.graphql @@ -17,7 +17,7 @@ type Query { #### Tags #### # tag names will be unique - """Find a tag by ID or name, or aliases""" + """Find a tag by ID or name""" findTag(id: ID, name: String): Tag @hasRole(role: READ) queryTags(input: TagQueryInput!): QueryTagsResultType! @hasRole(role: READ)