phx-node
Version:
PHX NODE
23 lines • 579 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GET_CRONJOB_SETTING_BY_HOSTNAME_QUERY = void 0;
exports.GET_CRONJOB_SETTING_BY_HOSTNAME_QUERY = `
query GetCronjobSettingByHostname {
cronjob_config_mapping_host_name(
order_by: { id: asc }
where: {
deleted_at: { _is_null: true }
cronjob_config_type_run: { deleted_at: { _is_null: true } }
}
) {
cronjob_config_type_run {
code
}
school {
hostname
}
metadata
}
}
`;
//# sourceMappingURL=query.js.map