nanostudio-org / nano_photos_provider2

PHP photos provider for nanogallery2
https://nanophotosprovider2.nanostudio.org/
48 stars 12 forks source link

Filter Images where multiple tags all exist #56

Open pineyscripter opened 2 years ago

pineyscripter commented 2 years ago

Is there a way to only get images that meet multiple tags / folders requirements

e.g. image1 has tags: 2008, birds and is in folder: FolderA e.g. image2 has tags: 2009, birds and is in folder: FolderA e.g. image3 has tags: 2008, plants and is in folder: FolderA e.g. image4 has tags: 2008, birds and is in folder: FolderB e.g. image5 has tags: 2009, birds and is in folder: FolderB e.g. image6 has tags: 2008, plants and is in folder: FolderB

get images where hasTag: 2008 and hasTag: birds and isInFolder: FolderA which would only get image1

get images where hasTag : 2008 and hasTag: birds which would only get image1 and image4