Query when addons were installed

This question was originally asked by @sjt on discord.

How to find out when a specific version was installed.

Question answered by @Innders

Graph Ql can be used.

query MyQuery {
  events(topics: ["addon.install_from_url", "addon.install"]) {
    edges {
      node {
        description
        id
        createdAt
      }
    }
  }
}

1 Like

Quoting @martin.wacker :
just a note: you can do this as well, but “filter” argument will be renamed in the future (probably to fullText or something) as we’re starting to use “filter” for something else: