SeedCompany / cord-api-v3

Bible translation project management API
MIT License
18 stars 4 forks source link

Implement location filters in cypher #3262

Closed CarsonF closed 3 months ago

github-actions[bot] commented 3 months ago

🗞 GraphQL Summary

View schema changes ```diff @@ -2584,11 +2584,16 @@ name: SecuredString! type: SecuredLocationType! } +input LocationFilters { + name: String +} + input LocationListInput { """The number of items to return in a single page""" count: Int! = 25 + filter: LocationFilters """The order in which to sort the list""" order: Order! = ASC @@ -4590,8 +4595,9 @@ """ Only projects that are (not) in the "Preset Inventory" """ presetInventory: Boolean + primaryLocation: LocationFilters primaryPartnership: PartnershipFilters """Only projects with these sensitivities""" sensitivity: [Sensitivity!] ```

⚠️ Dangerous Changes