phx-node
Version:
PHX NODE
23 lines • 731 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.GET_SETTING_FORMULA_PROMOTION_QUERY = void 0;
exports.GET_SETTING_FORMULA_PROMOTION_QUERY = `
query getSettingFormulaPromotion($code: String!, $setting_type: String!) {
tuition_setting_formula_promotion(
where: {
deleted_at: { _is_null: true }
code: { _eq: $code }
is_active: { _eq: true }
setting_type: { _eq: $setting_type }
}
) {
school_id
list_setting_detail: tuition_setting_formula_promotion_details(
where: { deleted_at: { _is_null: true }, is_active: { _eq: true } }
) {
code
}
}
}
`;
//# sourceMappingURL=setting-formula-promotion.js.map