Exposed comment and meta fields in GraphQL API.

This commit is contained in:
2025-04-04 05:36:47 +02:00
parent 538e6ede5b
commit 0dabbc7233
7 changed files with 53 additions and 2 deletions

View File

@@ -35,6 +35,8 @@ export const alertsSchema = `
notify: Boolean = true
email: Boolean = false
stashes: [Int!]
comment: String
meta: JSON
): Alert
removeAlert(id: Int!): Alert
@@ -114,6 +116,8 @@ export const alertsSchema = `
entities: [AlertEntity]
matches: [AlertMatch]
stashes: [AlertStash]
comment: String
meta: JSON
}
type Notifications {