Skip to content

Commit

Permalink
Fix comment: findTag only allows ID or name
Browse files Browse the repository at this point in the history
Finding by alias is not supported.
  • Loading branch information
MinasukiHikimuna authored Jul 21, 2024
1 parent cafc439 commit 8570590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphql/schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 8570590

Please sign in to comment.