phx-node-test-1
Version:
PHX NODE
21 lines • 472 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CURRENT_SCHOOL_MONTH_QUERY = void 0;
exports.CURRENT_SCHOOL_MONTH_QUERY = `
query currentSchoolMonth {
school_month(
where: {
deleted_at: { _is_null: true }
start_date: { _lte: "now" }
end_date: { _gte: "now" }
}
) {
id
school_id
school_term_id
start_date
end_date
}
}
`;
//# sourceMappingURL=query.js.map