I found something, that can be usable for filtering content by content_group. For example, when creating something like Content objects (eg “Blog” post), there can be multiple types of post (eg, gallery, video, audio… )
In my case: I created a content item with groups like (article, job_offer, event, video) …
and, may be a nice feature, if collection has content groups, allow in component to filter by content group…
and another (in my case strange thing)…
in twig we have “entry_type” and database field is named “content_group”. both of these can be used, but im not able to find any documentation belongs to it
Tips & tricks:
For now, if you wish to “filter” from tailor collection, you can use:
{% for item in tailorCollection.whereContentGroup('your_group').latest().get() %}
{% endfor %}