Constant telescope::api::rcos::semesters::current::info::current_semesters::QUERY[][src]

pub const QUERY: &str = "query CurrentSemesters($now: date!) {\n    # Get all semesters containing the current date, as supplied in the\n    # query parameters.\n    semesters(where: {\n        start_date: {_lte: $now},\n        end_date: {_gte: $now}}\n    ) {\n        semester_id\n        title\n    }\n}\n";