export declare const GET_CRONJOB_SETTING_BY_HOSTNAME_QUERY = "\n  query GetCronjobSettingByHostname {\n    cronjob_config_mapping_host_name(\n      order_by: { id: asc }\n      where: {\n        deleted_at: { _is_null: true }\n        cronjob_config_type_run: { deleted_at: { _is_null: true } }\n      }\n    ) {\n      cronjob_config_type_run {\n        code\n      }\n      school {\n        hostname\n      }\n      metadata\n    }\n  }\n";
