API Filtering; make sure collection type relation includes all items in list of strings

Solved:

        filters:
          {
            $and: [
              ...selectedTags.map((tag) => {
                return {
                  product_tags: {
                    name: {
                      $eq: tag,
                    },
                  },
                };
              }),
            ],
          }