This pull request includes changes to the apis_ontology/filtersets.py file to update the filter sets used in the project. The most important changes include importing the RelationFilterSet and modifying the TibScholRelationMixinFilterSet class to inherit from it instead of GenericFilterSet.
Updates to filter sets:
apis_ontology/filtersets.py: Added import statement for RelationFilterSet from apis_core.relations.filtersets.
apis_ontology/filtersets.py: Modified the TibScholRelationMixinFilterSet class to inherit from RelationFilterSet instead of GenericFilterSet, and updated its Meta class to exclude additional fields.
This pull request includes changes to the
apis_ontology/filtersets.py
file to update the filter sets used in the project. The most important changes include importing theRelationFilterSet
and modifying theTibScholRelationMixinFilterSet
class to inherit from it instead ofGenericFilterSet
.Updates to filter sets:
apis_ontology/filtersets.py
: Added import statement forRelationFilterSet
fromapis_core.relations.filtersets
.apis_ontology/filtersets.py
: Modified theTibScholRelationMixinFilterSet
class to inherit fromRelationFilterSet
instead ofGenericFilterSet
, and updated itsMeta
class to exclude additional fields.