Can I get findFilteredTopics to get Pms?

Well, it looks like I can sort-of do it like this:

    const topicList = await this.store.findFiltered('topicList', {
      filter: this.args.list.filter,
      // filter: "search",
      params: {
        // category: this.args.list.category,
        // tags: this.args.list.tag,
        // solved: solvedFilter,
        q: "upgraded in:messages"
      },
    });

that will give me my messages that have “upgraded” in them.

But I still can’t figure out how to get, say, unread messages, new messages, all messages, messages sent to a group.

Sigh. But it’s not a topic_list.

2 Likes