Hi,
In Providence part? Yes you can!
Look this screen capture, which is an example of my Find > Objects > Browse:
I've added "Entity relationship types", "Place relationship types", "Occurrence relationship types" and "Term relationship types".
Then, when I choose for example "contains the voice of", it returns objects that contains the voice of someone (video or audio objects).
To add this function, you must edit the app/conf/browse.conf (or app/conf/local/browse.conf). In the part
ca_objects = {
facets = {
...
}
}
you must add, for example, this:
rel_entity_facet = {
type = authority,
table = ca_relationship_types,
relative_to = ca_objects_x_entities,
relationship_table = ca_objects_x_entities,
group_mode = none,
label_singular = _("Entity relationship type"),
label_plural = _("Entity relationship types")
},
Here is another example for the relationship types with places:
rel_place_facet = {
type = authority,
table = ca_relationship_types,
relative_to = ca_objects_x_places,
relationship_table = ca_objects_x_places,
group_mode = none,
label_singular = _("Place relationship type"),
label_plural = _("Place relationship types")
},
You can use the same trick for browsing Places, Entities, Occurrences, Storage locations...
I hope this will help you.