Maxime Scibetta
05/12/2018, 11:42 AMquery filterCourses(
$hourStartMin: Int, $hourStartMax: Int, $hourEndMin: Int, $hourEndMax: Int, $date: String, $locationEnd: String, $locationStart: String){
allCourses(
filter: {
status: OPEN,
hourStart_gte: $hourStartMin,
hourStart_lte: $hourStartMax,
hourEnd_gte: $hourEndMin,
hourEnd_lte: $hourEndMax,
date: $date,
locationEnd: { name: $locationEnd },
locationStart: { city: $locationStart }
}
){
..node..
}
mehdyouras
05/12/2018, 8:00 PMjasonhealy
05/14/2018, 8:17 AMrphuber
05/22/2018, 12:23 PM