Skip to content
Snippets Groups Projects

fix: Remove type filter from relations that breaks prod use case

Merged Martin Lowe requested to merge malowe/main/rm-relation-type into main
3 files
+ 4
5
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -39,13 +39,12 @@ public interface FoundationDbAPI {
* Fetches all system relations filtered by the given type.
*
* @param baseParams Base request paramters used for pagination.
* @param type The given relation type filter.
* @return A Response containing the filtered relations
*/
@GET
@Compressed
@Path("/sys/relations")
RestResponse<List<SysRelationData>> getRelations(@BeanParam BaseAPIParameters baseParams, @QueryParam("type") String type);
RestResponse<List<SysRelationData>> getRelations(@BeanParam BaseAPIParameters baseParams);
/**
* Fetches all Full org contacts containing Person, Org, and SysRelation entities. Filtered by document ids.
Loading