export declare const WorkersByGeoNear = "\nquery WorkersByGeoNear($filter: WorkerGeoNearInput){\n workersByGeoNear(filter: $filter) {\n _id\n geolocation {\n distance\n coordinates\n }\n }\n}\n"; export declare const CreateWorkerBlockMany = "\nmutation CreateWorkerBlockMany($workerId: MongoID!, $blocks: [WorkerBlockInput]!) {\n createWorkerBlockMany(workerId: $workerId, blocks: $blocks) {\n type\n status\n key\n description\n }\n}\n"; export declare const CreateWorkerAndUser = "\nmutation CreateWorkerAndUser($record: CreateOneWorkerInput!, $password: String!) {\n createWorkerAndUser(record: $record, password: $password) {\n record{\n birthDate\n cpf\n email\n name\n nickname\n phoneId\n userId\n gender\n utmMedium\n utmSource\n utmCampaign\n comunication {\n agree\n agreeDate\n }\n }\n recordId\n }\n}\n";