diff --git a/apps/betterangels-backend/schema.graphql b/apps/betterangels-backend/schema.graphql index 92a5976a1..7d42295df 100644 --- a/apps/betterangels-backend/schema.graphql +++ b/apps/betterangels-backend/schema.graphql @@ -1256,8 +1256,8 @@ input ShelterPropertyInput { pets: [PetChoices!] = null demographics: [DemographicChoices!] = null specialSituationRestrictions: [SpecialSituationRestrictionChoices!] = null - shelterType: [ShelterChoices!] = null - roomStyle: [RoomStyleChoices!] = null + shelterTypes: [ShelterChoices!] = null + roomStyles: [RoomStyleChoices!] = null parking: [ParkingChoices!] = null } diff --git a/apps/betterangels-backend/shelters/types.py b/apps/betterangels-backend/shelters/types.py index 013aba617..d4ac2c28c 100644 --- a/apps/betterangels-backend/shelters/types.py +++ b/apps/betterangels-backend/shelters/types.py @@ -172,8 +172,8 @@ class ShelterPropertyInput: pets: Optional[List[PetChoices]] = None demographics: Optional[List[DemographicChoices]] = None special_situation_restrictions: Optional[List[SpecialSituationRestrictionChoices]] = None - shelter_type: Optional[List[ShelterTypeChoices]] = None - room_style: Optional[List[RoomStyleChoices]] = None + shelter_types: Optional[List[ShelterTypeChoices]] = None + room_styles: Optional[List[RoomStyleChoices]] = None parking: Optional[List[ParkingChoices]] = None