phx-node
Version:
PHX NODE
42 lines • 1.52 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PHXQueryAdmissionTuitionBM = exports.PHXQueryListDetailFeeAdjustmentBM = exports.PHXQueryAdmissionTuition = exports.PHXQueryListDetailFeeAdjustment = void 0;
const tuition_1 = require("../../lib/types/tuition");
exports.PHXQueryListDetailFeeAdjustment = `
list_detail_fee_adjustment: tuition_fee_detail_adjustments(
where: { deleted_at: { _is_null: true } }
) {
tuition_fee_adjustment {
total_fee
fee_type_code
tuition_fee_project_code {
tuition_fee_type_of_service {
type_code
}
}
}
}`;
exports.PHXQueryAdmissionTuition = `
tuition_fee_detail_promotions(where: {deleted_at: {_is_null: true}, promotion_type: {_eq: ${tuition_1.DETAIL_PROMO_TYPE.ADMISSION_TUITION}}}) {
total_promo
code: promotion_type
}`;
exports.PHXQueryListDetailFeeAdjustmentBM = `list_detail_fee_adjustment: tuition_fee_detail_adjustment_by_months(
where: { deleted_at: { _is_null: true } }
) {
tuition_fee_adjustment {
total_fee
fee_type_code
tuition_fee_project_code {
tuition_fee_type_of_service {
type_code
}
}
}
}`;
exports.PHXQueryAdmissionTuitionBM = `
tuition_fee_detail_promotions: tuition_fee_detail_promotion_by_months(where: {deleted_at: {_is_null: true}, promotion_type: {_eq: ${tuition_1.DETAIL_PROMO_TYPE.ADMISSION_TUITION}}}) {
total_promo
code: promotion_type
}`;
//# sourceMappingURL=debt-record.js.map