Search annotations of PDFs
Annotations can be searchable only if create an item note from the annotations. But this generates a copy of annotations, and it will be unpleasant to maintain the annotation since you need modify twice or more for one annotation. So, could you add search annotations feature? Thank you.
As a work around, you can try using better note plugin as some of its templates help to collect annotations by colors or tags .
https://github.com/windingwind/zotero-better-notes
Hope this helps
Adding a way to search through annotations of multiple documents at once would clearly transform Zotero as a perfect tool for QDA
```
select v.value as item, ia.text, ia.comment, ipa.path, i.dateAdded, i.dateModified from itemAnnotations ia
left join items i on ia.itemID = i.itemID
left join itemAttachments ipa on ia.parentItemID = ipa.itemID
left join items ipp on ipa.parentItemID = ipp.itemID
left join itemData d on d.itemID = ipp.itemID and d.fieldID = 1
left join itemDataValues v on d.valueID = v.valueID;
```
A preview of this query:
https://s3.amazonaws.com/zotero.org/images/forums/u13149516/94w8iwhqcnvuyxihs0ds.png