API-referentie

Meldingen

Lees actieve meldingen. Vereist dat NotificationListenerService is ingeschakeld in instellingen.

Typedefinities

bash
type Notification {
  id: ID!
  onlyOnce: Boolean!       # "persistent" notification flag
  isClearable: Boolean!
  appId: String!           # package name
  appName: String!
  time: String!            # ISO 8601
  silent: Boolean!
  title: String!
  body: String!
  actions: [String!]!      # action button labels
  replyActions: [String!]! # labels of inline-reply actions
}

Bewerkingen

query

notifications

Toon alle momenteel actieve meldingen.

bash
query GetNotifications {
  notifications {
    id onlyOnce isClearable appId appName time silent title body
    actions replyActions
  }
}
mutation

cancelNotifications

Sluit een of meer meldingen op ID.

bash
mutation CancelNotifications($ids: [ID!]!) {
  cancelNotifications(ids: $ids)
}
mutation

replyNotification

Stuur een antwoord op een melding via een inline-reply actie. actionIndex is 0-gebaseerd onder antwoord-capabele acties.

bash
mutation ReplyNotification($id: ID!, $actionIndex: Int!, $text: String!) {
  replyNotification(id: $id, actionIndex: $actionIndex, text: $text)
}