Skip to content

Commit

Permalink
fix filter names
Browse files Browse the repository at this point in the history
  • Loading branch information
mikefeldberg committed Dec 20, 2024
1 parent 48777b0 commit 2ba26c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/betterangels-backend/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1256,8 +1256,8 @@ input ShelterPropertyInput {
pets: [PetChoices!] = null
demographics: [DemographicChoices!] = null
specialSituationRestrictions: [SpecialSituationRestrictionChoices!] = null
shelterType: [ShelterChoices!] = null
roomStyle: [RoomStyleChoices!] = null
shelterTypes: [ShelterChoices!] = null

Check warning on line 1259 in apps/betterangels-backend/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Input field 'shelterTypes' was added to input object type 'ShelterPropertyInput'

Input field 'shelterTypes' was added to input object type 'ShelterPropertyInput'
roomStyles: [RoomStyleChoices!] = null

Check warning on line 1260 in apps/betterangels-backend/schema.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector

Input field 'roomStyles' was added to input object type 'ShelterPropertyInput'

Input field 'roomStyles' was added to input object type 'ShelterPropertyInput'
parking: [ParkingChoices!] = null
}

Expand Down
4 changes: 2 additions & 2 deletions apps/betterangels-backend/shelters/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit 2ba26c7

Please sign in to comment.