Return tag classes with tag
All checks were successful
Tests / Tests (pull_request) Successful in 15s

This commit is contained in:
2025-02-04 19:14:55 -07:00
parent c7ff615fe4
commit 9bb4b7c513
2 changed files with 16 additions and 5 deletions

View File

@@ -714,9 +714,14 @@ type PageInfoGQL {
}
type TagGQL {
name: String!
id: Int!
group: String
name: String!
tagClasses: [TagClassGQL!]
}
type TagClassGQL {
id: Int!
name: String!
}
"""