{"info":{"_postman_id":"1dbf5cbe-6bee-4bb7-a36e-016c99033fae","name":"manifest-api","description":"<html><head></head><body><h2 id=\"manifest-api\">Manifest API</h2>\n<p>This collection provides a comprehensive set of requests for working with the <strong>Manifest API</strong>, which supports mixed-reality field operations, asset management, workflow execution, collaboration, and enterprise administration.</p>\n<p>It includes both GraphQL and REST requests covering authentication, user and organization management, licensing, assets, templates, work orders, jobs, devices, meters, locations, chat, diagnostics, integrations, and platform administration. Requests are organized into folders by functional area so teams can quickly find the workflows they need for development, testing, troubleshooting, and API exploration.</p>\n<p>The collection uses environment variables such as <code>{{PROTOCOL}}</code>, <code>{{SUBDOMAIN}}</code>, <code>{{BASE_URL}}</code>, <code>{{PORT}}</code>, and <code>{{VERSION}}</code>, making it reusable across local, staging, and production environments. Archived folders are retained as reference material for older platform workflows and integrations.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1553614","collectionId":"1dbf5cbe-6bee-4bb7-a36e-016c99033fae","publishedId":"2sBXwmQsjH","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-05-26T17:42:35.000Z"},"item":[{"name":"Orgs","item":[{"name":"Invitation Maker [INTERNAL]","item":[{"name":"1.1 Add team","id":"7eaad748-fb96-4fc4-b9b1-0a7d2cedb62c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation (\n  $parentId: Int\n  $name: String\n  $description: String\n  $orgType: String\n  $photoUrl: [Int]\n) {\n  addOrg(\n    parentId: $parentId\n    name: $name\n    description: $description\n    photoUrl: $photoUrl\n    orgType: $orgType\n  ) {\n    id\n    name\n    parentId\n    description\n  }\n}","variables":"{\n    \"parentId\": 6,\n    \"name\": \"Team Org\",\n    \"description\": \"Postman Org\",\n    \"orgType\": \"team\",\n    \"photoUrl\":[1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><p><code>parentId</code> (integer): The ID of the parent organization.</p>\n</li>\n<li><p><code>name</code> (string): The name of the organization.</p>\n</li>\n<li><p><code>description</code> (string): A brief description of the organization.</p>\n</li>\n<li><p><code>orgType</code> (string): type of Maker team</p>\n<ul>\n<li><p>team</p>\n</li>\n<li><p>personal</p>\n</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"db197746-e2db-40dc-bb9a-54afb2c8ab11","name":"Add team success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation (\n  $parentId: Int\n  $name: String\n  $description: String\n  $orgType: String\n  $photoUrl: String\n) {\n  addOrg(\n    parentId: $parentId\n    name: $name\n    description: $description\n    photoUrl: $photoUrl\n    orgType: $orgType\n  ) {\n    id\n    name\n    parentId\n    description\n  }\n}","variables":"{\n    \"parentId\": 1,\n    \"name\": \"Team Org\",\n    \"description\": \"Postman Org\",\n    \"orgType\": \"team\"\n}"},"options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Mon, 15 Sep 2025 18:29:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"89"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"59-uM/URVhqAQ/TDx6jbEMPGq9vkII\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"addOrg\": {\n            \"id\": 88,\n            \"name\": \"Team Org\",\n            \"parentId\": 1,\n            \"description\": \"Postman Org\"\n        }\n    }\n}"}],"_postman_id":"7eaad748-fb96-4fc4-b9b1-0a7d2cedb62c"},{"name":"1.2 Update team","id":"143d6871-fa69-486b-aad0-8440a5025f84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation (\n  $orgId: Int!,\n  $name: String!\n  $description: String!,\n  $photoUrl: [Int]\n) {\n  updateOrg(\n    name: $name\n    description: $description\n    orgId: $orgId\n    photoUrl: $photoUrl\n  ) {\n     id name parentId description\n  }\n}","variables":"{\n    \"orgId\": 88,\n    \"name\": \"Team Org\",\n    \"description\": \"Postman Org\",\n    \"photoUrl\": []\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><p>orgId (integer): The ID of the organization.</p>\n</li>\n<li><p><code>name</code> (string): The name of the organization.</p>\n</li>\n<li><p><code>description</code> (string): A brief description of the organization.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"f92def6f-f308-40c6-a1fe-fb144b65152f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation (\n  $orgId: Int!,\n  $name: String!\n  $description: String!,\n  $photoUrl: [Int]\n) {\n  updateOrg(\n    name: $name\n    description: $description\n    orgId: $orgId\n    photoUrl: $photoUrl\n  ) {\n     id name parentId description\n  }\n}","variables":"{\n    \"orgId\": 88,\n    \"name\": \"Team Org\",\n    \"description\": \"Postman Org\",\n    \"photoUrl\": []\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 09 Oct 2025 14:59:18 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"92"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"5c-hBouD0DHDBLkdrhG49EUO/J3YdQ\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"updateOrg\": {\n            \"id\": 88,\n            \"name\": \"Team Org\",\n            \"parentId\": 1,\n            \"description\": \"Postman Org\"\n        }\n    }\n}"}],"_postman_id":"143d6871-fa69-486b-aad0-8440a5025f84"},{"name":"1.3 Delete team","id":"6abc80c9-5836-458c-9d93-4fcd4398e8ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($orgId: Int!, $force: Boolean) {\n  deleteTeamOrg(orgId: $orgId, force: $force)\n}","variables":"{\n    \"orgId\": 4\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><p><code>orgId</code> (integer): The ID of the organization.</p>\n</li>\n<li><p><code>force</code> (Boolean): ?</p>\n</li>\n</ul>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"41f0ed85-7460-4a75-be59-073c6636376b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($orgId: Int!, $force: Boolean) {\n  deleteTeamOrg(orgId: $orgId, force: $force)\n}","variables":"{\n    \"orgId\": 89\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Mon, 15 Sep 2025 19:20:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"32"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"20-Ugv313APfszQVbMM3Psgca13XsA\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"deleteTeamOrg\": true\n    }\n}"}],"_postman_id":"6abc80c9-5836-458c-9d93-4fcd4398e8ea"},{"name":"1.4 Get invites for Org","id":"aeabfffb-3a09-4193-9e31-6eba7ea4ae3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ($orgId: Int!) {\n  activeInvitesForOrg(orgId: $orgId) {\n    id\n    email\n    role\n    status\n    token\n    org {\n      id\n    }\n    createdAt\n    invitedBy {\n      firstName\n      lastName\n    }\n  }\n}","variables":"{\n    \"orgId\": 88\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li>orgId (integer): The ID of the organization.</li>\n</ul>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aeabfffb-3a09-4193-9e31-6eba7ea4ae3a"},{"name":"2.1 Invite to Org","id":"a992440b-4c4d-4d61-bfb4-3c28c53fb5b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($orgId: Int!, $invites: [OrgInviteInput!]!) {\n  inviteUsersToOrg(orgId: $orgId, invites: $invites) {\n    message\n  }\n}\n","variables":"{\n    \"orgId\": 10,\n    \"invites\": [\n        {\n            \"email\": \"test@taqtile.com\",\n            \"role\": \"viewer\"\n        }\n    ]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li>orgId (Integer): The Org.</li>\n</ul>\n<p><code>role</code> can be: admin, viewer, author</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"de28477a-8252-4fef-bcc0-c253e99f52ae","name":"Invite success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($orgId: Int!, $invites: [OrgInviteInput!]!) {\n  inviteUsersToOrg(orgId: $orgId, invites: $invites) {\n    message\n  }\n}\n","variables":"{\n    \"orgId\": 88,\n    \"invites\": [\n        {\n            \"email\": \"test-email@taqtile.com\",\n            \"role\": \"viewer\"\n        }\n    ]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Mon, 15 Sep 2025 18:52:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"74"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"4a-wWpL4cYjg8W5XHC0VQkxdZ8firg\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"inviteUsersToOrg\": {\n            \"message\": \"Invites were created and sent\"\n        }\n    }\n}"},{"id":"4fdae302-401e-4f18-9e38-38fb3d27ad7e","name":"Invite failed","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($orgId: Int!, $invites: [OrgInviteInput!]!) {\n  inviteUsersToOrg(orgId: $orgId, invites: $invites) {\n    message\n  }\n}\n","variables":"{\n    \"orgId\": 88,\n    \"invites\": [\n        {\n            \"email\": \"test@taqtile.com\",\n            \"role\": \"viewer\"\n        }\n    ]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"Conflict","code":409,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Mon, 15 Sep 2025 18:54:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"244"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"f4-Obmj5vd4jir6pU42hrk1ZYQ2IgM\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"message\": \"User is already a member of another team organization: undefined\",\n            \"locations\": [\n                {\n                    \"line\": 2,\n                    \"column\": 3\n                }\n            ],\n            \"path\": [\n                \"inviteUsersToOrg\"\n            ],\n            \"extensions\": {\n                \"code\": \"CONFLICT\",\n                \"http\": {\n                    \"status\": 409\n                }\n            }\n        }\n    ],\n    \"data\": {\n        \"inviteUsersToOrg\": null\n    }\n}"}],"_postman_id":"a992440b-4c4d-4d61-bfb4-3c28c53fb5b0"},{"name":"2.2 Resend invite to Org","id":"de1e6392-67e4-4f88-926b-4735559cf220","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($inviteId: Int!) {\n    resendOrgInvite(inviteId: $inviteId) {\n        id\n        role\n        status\n        email\n    }\n}","variables":"{\n    \"inviteId\": 2\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"4acb8d23-2565-42b1-a1e7-ca1a888b5b54","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($inviteId: Int!) {\n    resendOrgInvite(inviteId: $inviteId) {\n        id\n        role\n        status\n        email\n    }\n}","variables":"{\n    \"inviteId\": 2\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Mon, 15 Sep 2025 19:07:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"105"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"69-szL+JEGyztaCaIkFjIhgAjKBdYk\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"resendOrgInvite\": {\n            \"id\": 2,\n            \"role\": \"viewer\",\n            \"status\": \"pending\",\n            \"email\": \"test-alex@taqtile.com\"\n        }\n    }\n}"}],"_postman_id":"de1e6392-67e4-4f88-926b-4735559cf220"},{"name":"2.3 Cancel invite to Org","id":"9a239185-3ef5-4379-978d-d441cab49506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($inviteId: Int!) {\n    cancelOrgInvite(inviteId: $inviteId)\n}","variables":"{\n    \"inviteId\": 1\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"7f4a9a8d-5fe9-4cb2-9172-f3f62087eff3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($inviteId: Int!) {\n    cancelOrgInvite(inviteId: $inviteId)\n}","variables":"{\n    \"inviteId\": 1\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Mon, 15 Sep 2025 19:01:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"34"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"22-iIBZHJMCPzpvaMgMZSD7ZElY0kM\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"cancelOrgInvite\": true\n    }\n}"}],"_postman_id":"9a239185-3ef5-4379-978d-d441cab49506"},{"name":"3.1 Get invites for User","id":"d2b2853a-f706-41a2-86e6-28abefb7f89e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ($email: String!) {\n  activeInvitesForUser(email: $email) {\n    id\n    email\n    role\n    status\n    token\n    createdAt\n    org {\n      id\n      name\n    }\n    invitedBy {\n      firstName\n      lastName\n    }\n  }\n}","variables":"{\n    \"email\": \"test-user@taqtile.com\"\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li>email (string): The user email.</li>\n</ul>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"03290971-3822-4f3f-810b-fa92d8279430","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ($email: String!) {\n  activeInvitesForUser(email: $email) {\n    id\n    email\n    role\n    status\n    token\n    org {\n      id\n      name\n    }\n    invitedBy {\n      firstName\n      lastName\n    }\n  }\n}","variables":"{\n    \"email\": \"testing@taqtile.com\"\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 09 Oct 2025 14:46:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"277"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"115-Bmqa2uMgRcRa4k3tXJQTW3WjZsc\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"activeInvitesForUser\": [\n            {\n                \"id\": 4,\n                \"email\": \"testing@taqtile.com\",\n                \"role\": \"viewer\",\n                \"status\": \"pending\",\n                \"token\": \"077778f08080b19e85c5220708dfc85847c74a638cc56200b6603b8bee22f175\",\n                \"org\": {\n                    \"id\": 88,\n                    \"name\": \"Team Org\"\n                },\n                \"invitedBy\": {\n                    \"firstName\": \"Manifest\",\n                    \"lastName\": \"Support\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"d2b2853a-f706-41a2-86e6-28abefb7f89e"},{"name":"3.2 Get invite for email token","id":"8efaa7ea-ab34-43ee-ab87-e438e89d6a61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ($token: String!) {\n  getInviteByToken(token: $token) {\n    id\n    status\n    role\n    email\n  }\n}","variables":"{\n    \"token\": \"dc2fb4038ae6033bd5de58f06ecf536063bb79cd4eae0235bf827bdc41e2db4b\"\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"8c90ae17-8bce-4af5-93e0-6d2a1d57abe7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ($token: String!) {\n  getInviteByToken(token: $token) {\n    id\n    status\n    role\n    email\n  }\n}","variables":"{\n    \"token\": \"dc2fb4038ae6033bd5de58f06ecf536063bb79cd4eae0235bf827bdc41e2db4b\"\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Mon, 15 Sep 2025 19:09:43 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"106"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"6a-ETRdu8TCHvBtqr6I/4fmFr3uWPI\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"getInviteByToken\": {\n            \"id\": 2,\n            \"status\": \"pending\",\n            \"role\": \"viewer\",\n            \"email\": \"test-alex@taqtile.com\"\n        }\n    }\n}"}],"_postman_id":"8efaa7ea-ab34-43ee-ab87-e438e89d6a61"},{"name":"4. Accept invite to Org","id":"d029c82f-8247-49ee-ba94-1aa222bf771e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($token: String!, $userId: Int) {\n  acceptOrgInvite(token: $token, userId: $userId) {\n    message\n    org {\n      id\n      name\n    }\n  }\n}\n","variables":"{\n    \"token\": \"dc2fb4038ae6033bd5de58f06ecf536063bb79cd4eae0235bf827bdc41e2db4b\",\n    \"userId\": 1\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"420c6b2d-ac2c-4f6b-8c09-daf3a70b9a6d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"ClientVersion","value":"ipad/v4.2.1/591","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($token: String!, $userId: Int) {\n  acceptOrgInvite(token: $token, userId: $userId) {\n    message\n    org {\n      id\n      name\n    }\n  }\n}\n","variables":"{\n    \"token\": \"077778f08080b19e85c5220708dfc85847c74a638cc56200b6603b8bee22f175\",\n    \"userId\": 950\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 09 Oct 2025 14:48:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"110"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"6e-AtpyGrqChgXf3jpmrnZ9L0GlljY\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"acceptOrgInvite\": {\n            \"message\": \"Successfully joined organization\",\n            \"org\": {\n                \"id\": 88,\n                \"name\": \"Team Org\"\n            }\n        }\n    }\n}"}],"_postman_id":"d029c82f-8247-49ee-ba94-1aa222bf771e"},{"name":"5. Leave a team","id":"3aab842e-15fa-497d-a8d8-36991218f982","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($orgId: Int!) {\n  leaveTeam(orgId: $orgId)\n}","variables":"{\n    \"orgId\": 19\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3aab842e-15fa-497d-a8d8-36991218f982"},{"name":"6. Remove user from org","id":"d8883ceb-3856-44ca-a49a-31d851544ab5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($orgId: Int!, $userId:Int!) {\n  removeUserFromTeam(orgId: $orgId, userId: $userId)\n}","variables":"{\n    \"orgId\": 19,\n    \"userId\": 19\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8883ceb-3856-44ca-a49a-31d851544ab5"},{"name":"7. Update user role in org","id":"518b39fc-7561-4667-afd8-ae82655e2049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($orgId: Int!, $userId:Int!, $role:String!) {\n  updateUserRoleInOrg(orgId: $orgId, userId: $userId, role:$role)\n}","variables":"{\n    \"orgId\": 19,\n    \"userId\": 19,\n    \"role\": \"author\"\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"518b39fc-7561-4667-afd8-ae82655e2049"}],"id":"8b5cf9db-26e3-4a26-9f5b-be66f91d32a8","_postman_id":"8b5cf9db-26e3-4a26-9f5b-be66f91d32a8","description":""},{"name":"allOrgsHierarchyByUser","id":"b1850f68-2432-4c9d-b10e-44e8151b6605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{allOrgsHierarchyByUser}","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1850f68-2432-4c9d-b10e-44e8151b6605"},{"name":"allOrgsHierarchy","id":"15b40566-cfa4-4dce-a6ae-c647635f1e23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{allOrgsHierarchy}","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"15b40566-cfa4-4dce-a6ae-c647635f1e23"},{"name":"allOrgs","id":"245c7038-939c-46f9-a700-8e5f83eafaff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{allOrgs{id, name, description, level}}","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"245c7038-939c-46f9-a700-8e5f83eafaff"},{"name":"configuration","id":"b739ada4-9d07-41dd-92eb-fea072322d53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query{orgConfiguration{status, licenseAllocationEnabled, restrictAccessToConnectContactsByOrg}}","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b739ada4-9d07-41dd-92eb-fea072322d53"},{"name":"updateOrgConfiguration","id":"261bafdc-ddd9-45cc-8010-effcf26064a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($licenseAllocationEnabled: Boolean!, $restrictAccessToConnectContactsByOrg: Boolean!) {\n  updateOrgConfiguration(licenseAllocationEnabled: $licenseAllocationEnabled, restrictAccessToConnectContactsByOrg: $restrictAccessToConnectContactsByOrg)\n}\n","variables":"{\n    \"licenseAllocationEnabled\": true,\n    \"restrictAccessToConnectContactsByOrg\": true\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"261bafdc-ddd9-45cc-8010-effcf26064a6"},{"name":"org","id":"9aa74ad2-72ed-488e-952d-975cafeb9ee1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ($orgId: Int!) {\n  org(orgId: $orgId) {\n    id\n    name\n    description\n    parentId\n    level\n    createdAt\n    updatedAt\n    allocatedFullLicenses\n    allocatedConnectLicenses\n    allocatedOperateLicenses\n    usedFullLicenses\n    usedConnectLicenses\n    usedOperateLicenses\n    isLicensesAllocated\n    totalLicensesInChildOrgs{allocatedFullLicenses,\n    allocatedConnectLicenses,\n    allocatedOperateLicenses,\n    usedFullLicenses,\n    usedConnectLicenses,\n    usedOperateLicenses}\n    pullLicensesFrom{id,\n    name,\n    description,\n    parentId,\n    level,\n    createdAt,\n    updatedAt,\n    allocatedFullLicenses,\n    allocatedConnectLicenses,\n    allocatedOperateLicenses,\n    usedFullLicenses,\n    usedConnectLicenses,\n    usedOperateLicenses,\n    totalLicensesInChildOrgs{allocatedFullLicenses,\n    allocatedConnectLicenses,\n    allocatedOperateLicenses,\n    usedFullLicenses,\n    usedConnectLicenses,\n    usedOperateLicenses},\n    isLicensesAllocated}\n  }\n}\n","variables":"{\n  \"orgId\": 1\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9aa74ad2-72ed-488e-952d-975cafeb9ee1"},{"name":"addOrg","id":"137ba64d-4945-4a6a-837f-f80a9c3a2d76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($parentId: Int, $name: String, $description: String) {\n  addOrg(parentId: $parentId, name: $name, description: $description) {\n    id\n    name\n    parentId\n    description\n  }\n}\n","variables":"{\n  \"name\": \"cccc\",\n  \"parentId\": 1,\n  \"description\": \"ccccc\"\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"137ba64d-4945-4a6a-837f-f80a9c3a2d76"},{"name":"updateOrg","id":"4d59d1ff-e58b-4abb-a587-f1ba38973d71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($name: String!, $description: String!, $orgId: Int!, $photoUrl: String!) {\n  updateOrg(name: $name, description: $description, orgId: $orgId, photoUrl: $photoUrl) {\n    id\n    name\n    parentId\n    description,\n    photoUrl\n  }\n}\n","variables":"{\n  \"name\": \"Team\",\n  \"orgId\": 5,\n  \"description\": \"ccccc\",\n  \"photoUrl\": \"updated url\"\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d59d1ff-e58b-4abb-a587-f1ba38973d71"},{"name":"removeOrg","id":"8ecf0e28-9ddd-478c-ac31-1c1ed830a3e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($orgId: Int!, $force: Boolean) {\n  removeOrg(orgId: $orgId, force: $force)\n}\n","variables":"{\n  \"orgId\": 74,\n  \"force\": false\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ecf0e28-9ddd-478c-ac31-1c1ed830a3e1"},{"name":"assignUsersToOrg","id":"443ca89c-67d7-4403-9efb-02f82d502fa1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($orgId: Int!, $usersId: [Int]) {\n  assignUsersToOrg(orgId: $orgId, usersId: $usersId)\n}\n","variables":"{\n  \"usersId\": [167],\n  \"orgId\": 3\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"443ca89c-67d7-4403-9efb-02f82d502fa1"},{"name":"allocateOrgLicenses","id":"236bfd84-a4a8-4071-954c-ad835ba952b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($data: OrgLicenseAllocationInput!) {\n  allocateOrgLicenses(data: $data)\n}","variables":"{\n    \"data\": {\n        \"allocation\": [\n                    {\n                        \"id\": 2,\n                        \"allocatedFullLicenses\": 4,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": true,\n                        \"childOrgs\": [\n                            {\n                                \"id\": 46,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": [\n                                    {\n                                        \"id\": 70,\n                                        \"allocatedFullLicenses\": 0,\n                                        \"allocatedConnectLicenses\": 0,\n                                        \"allocatedOperateLicenses\": 0,\n                                        \"isLicensesAllocated\": false,\n                                        \"childOrgs\": [\n                                            {\n                                                \"id\": 82,\n                                                \"allocatedFullLicenses\": 0,\n                                                \"allocatedConnectLicenses\": 0,\n                                                \"allocatedOperateLicenses\": 0,\n                                                \"isLicensesAllocated\": false,\n                                                \"childOrgs\": [\n                                                    {\n                                                        \"id\": 83,\n                                                        \"allocatedFullLicenses\": 0,\n                                                        \"allocatedConnectLicenses\": 0,\n                                                        \"allocatedOperateLicenses\": 0,\n                                                        \"isLicensesAllocated\": false,\n                                                        \"childOrgs\": []\n                                                    }\n                                                ]\n                                            }\n                                        ]\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 9,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": [\n                            {\n                                \"id\": 43,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 11,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": [\n                            {\n                                \"id\": 50,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            },\n                            {\n                                \"id\": 51,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": [\n                                    {\n                                        \"id\": 59,\n                                        \"allocatedFullLicenses\": 0,\n                                        \"allocatedConnectLicenses\": 0,\n                                        \"allocatedOperateLicenses\": 0,\n                                        \"isLicensesAllocated\": false,\n                                        \"childOrgs\": []\n                                    },\n                                    {\n                                        \"id\": 60,\n                                        \"allocatedFullLicenses\": 0,\n                                        \"allocatedConnectLicenses\": 0,\n                                        \"allocatedOperateLicenses\": 0,\n                                        \"isLicensesAllocated\": false,\n                                        \"childOrgs\": []\n                                    },\n                                    {\n                                        \"id\": 65,\n                                        \"allocatedFullLicenses\": 0,\n                                        \"allocatedConnectLicenses\": 0,\n                                        \"allocatedOperateLicenses\": 0,\n                                        \"isLicensesAllocated\": false,\n                                        \"childOrgs\": []\n                                    },\n                                    {\n                                        \"id\": 66,\n                                        \"allocatedFullLicenses\": 0,\n                                        \"allocatedConnectLicenses\": 0,\n                                        \"allocatedOperateLicenses\": 0,\n                                        \"isLicensesAllocated\": false,\n                                        \"childOrgs\": []\n                                    }\n                                ]\n                            },\n                            {\n                                \"id\": 61,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            },\n                            {\n                                \"id\": 62,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            },\n                            {\n                                \"id\": 63,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            },\n                            {\n                                \"id\": 64,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 12,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": [\n                            {\n                                \"id\": 14,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": [\n                                    {\n                                        \"id\": 44,\n                                        \"allocatedFullLicenses\": 0,\n                                        \"allocatedConnectLicenses\": 0,\n                                        \"allocatedOperateLicenses\": 0,\n                                        \"isLicensesAllocated\": false,\n                                        \"childOrgs\": []\n                                    }\n                                ]\n                            },\n                            {\n                                \"id\": 15,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            },\n                            {\n                                \"id\": 16,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": [\n                                    {\n                                        \"id\": 17,\n                                        \"allocatedFullLicenses\": 0,\n                                        \"allocatedConnectLicenses\": 0,\n                                        \"allocatedOperateLicenses\": 0,\n                                        \"isLicensesAllocated\": false,\n                                        \"childOrgs\": []\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 13,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 18,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 20,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 23,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": [\n                            {\n                                \"id\": 26,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            },\n                            {\n                                \"id\": 45,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 25,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 28,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 30,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 31,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 32,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 33,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 34,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 35,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": [\n                            {\n                                \"id\": 47,\n                                \"allocatedFullLicenses\": 0,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": false,\n                                \"childOrgs\": []\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 40,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 49,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 67,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 68,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 71,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 75,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 76,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 77,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 78,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    },\n                    {\n                        \"id\": 84,\n                        \"allocatedFullLicenses\": 30,\n                        \"allocatedConnectLicenses\": 30,\n                        \"allocatedOperateLicenses\": 30,\n                        \"isLicensesAllocated\": true,\n                        \"childOrgs\": [\n                            {\n                                \"id\": 85,\n                                \"allocatedFullLicenses\": 20,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": true,\n                                \"childOrgs\": [\n                                    {\n                                        \"id\": 87,\n                                        \"allocatedFullLicenses\": 0,\n                                        \"allocatedConnectLicenses\": 0,\n                                        \"allocatedOperateLicenses\": 0,\n                                        \"isLicensesAllocated\": false,\n                                        \"childOrgs\": [\n                                            {\n                                                \"id\": 88,\n                                                \"allocatedFullLicenses\": 0,\n                                                \"allocatedConnectLicenses\": 0,\n                                                \"allocatedOperateLicenses\": 0,\n                                                \"isLicensesAllocated\": false,\n                                                \"childOrgs\": []\n                                            },\n                                            {\n                                                \"id\": 89,\n                                                \"allocatedFullLicenses\": 0,\n                                                \"allocatedConnectLicenses\": 0,\n                                                \"allocatedOperateLicenses\": 0,\n                                                \"isLicensesAllocated\": false,\n                                                \"childOrgs\": []\n                                            }\n                                        ]\n                                    }\n                                ]\n                            },\n                            {\n                                \"id\": 86,\n                                \"allocatedFullLicenses\": 30,\n                                \"allocatedConnectLicenses\": 0,\n                                \"allocatedOperateLicenses\": 0,\n                                \"isLicensesAllocated\": true,\n                                \"childOrgs\": []\n                            }\n                        ]\n                    },\n                    {\n                        \"id\": 90,\n                        \"allocatedFullLicenses\": 0,\n                        \"allocatedConnectLicenses\": 0,\n                        \"allocatedOperateLicenses\": 0,\n                        \"isLicensesAllocated\": false,\n                        \"childOrgs\": []\n                    }\n                ]\n    }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"236bfd84-a4a8-4071-954c-ad835ba952b9"},{"name":"assignAssetClassesToOrg","id":"4565fc9a-380b-47cd-b9f1-97746ed587b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($orgId: Int!, $assetClassIds: [Int], $force: Boolean) {\n  assignAssetClassesToOrg(\n    orgId: $orgId\n    assetClassIds: $assetClassIds\n    force: $force\n  )\n}\n","variables":"{\n  \"assetClassIds\": [3],\n  \"orgId\": 75,\n  \"force\": false\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4565fc9a-380b-47cd-b9f1-97746ed587b0"}],"id":"a0e714ad-c6e9-4fd7-953d-8b1e4379614c","_postman_id":"a0e714ad-c6e9-4fd7-953d-8b1e4379614c","description":""},{"name":"AssetClasses","item":[{"name":"Add 3D Model","item":[{"name":"1. Upload file","id":"ae121144-8829-48c7-b7c0-d076b9743982","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"formdata","formdata":[{"key":"multiple","value":"false","type":"text","uuid":"126360dc-82b7-424d-ae83-f5f7e7a3436b"},{"key":"file","type":"file","uuid":"c1548b6f-818e-400b-8864-f8dea433c057","src":"/Users/akosmachyov/Downloads/Animation.zip"},{"key":"contentType","value":"model","type":"text","uuid":"ab47e09c-170b-462e-ac29-7c9dd0eea611"},{"key":"name","value":"car_glb","type":"text","uuid":"72f26e4f-b37b-4df6-8ee2-5a3ef5e088e7"}]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}?convert3d=&skipConversion=true","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"key":"convert3d","value":""},{"key":"skipConversion","value":"true"}],"variable":[]}},"response":[],"_postman_id":"ae121144-8829-48c7-b7c0-d076b9743982"},{"name":"2. Link file with Asset Class","id":"24a3c9f4-606d-49d6-bb10-dda7478cbf64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation (\n  $assetClassId: Int!,\n  $model: AssetClassModelInput!,\n  $isDefault: Boolean,\n  $orgId: [Int]\n) {\n  addModelToAssetClass(\n    assetClassId: $assetClassId,\n    model: $model,\n    isDefault: $isDefault,\n    orgId: $orgId\n  )\n}","variables":"{\n    \"assetClassId\": 425,\n    \"model\": {\n        \"name\": \"Car.glb\",\n        \"modelFiles\": [\n            { \"id\": 17128 }\n        ],\n        \"useRemoteRendering\": false,\n        \"modelOffset\": [ 0, 0, 0 ],\n        \"modelRotation\": [ 0, 0, 0 ],\n        \"modelScale\": 1,\n        \"modelViews\": [{\n            \"name\": \"View 1\",\n            \"modelRotation\": [ 0, 0, 0 ],\n            \"modelOffset\": [ 0, 0, 0 ],\n            \"modelScale\": 1,\n            \"disableLighting\": false,\n            \"isDefault\": true\n        }]\n    }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"24a3c9f4-606d-49d6-bb10-dda7478cbf64"},{"name":"3. Upload texture","id":"64ac5f5a-5ba1-43f3-b9a1-51b4c8628704","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"formdata","formdata":[{"key":"multiple","value":"false","type":"text","uuid":"126360dc-82b7-424d-ae83-f5f7e7a3436b"},{"key":"file","type":"file","uuid":"c1548b6f-818e-400b-8864-f8dea433c057","src":"/Users/akosmachyov/Downloads/ModelViewerTest_fbx/GaugeTexture.png"},{"key":"contentType","value":"image","type":"text","uuid":"ab47e09c-170b-462e-ac29-7c9dd0eea611"},{"key":"name","value":"GaugeTexture.png","type":"text","uuid":"72f26e4f-b37b-4df6-8ee2-5a3ef5e088e7"}]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}?convert3d=&skipConversion=true","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"key":"convert3d","value":""},{"key":"skipConversion","value":"true"}],"variable":[]}},"response":[],"_postman_id":"64ac5f5a-5ba1-43f3-b9a1-51b4c8628704"},{"name":"4. Link texture","id":"3081d140-a4c9-46ae-839d-5329a8a3b69f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation(\n    $modelId: Int!,\n    $files: [ModelFilesInput]!\n){\n    addFilesToModel(modelId: $modelId, files: $files)\n}","variables":"{\n    \"assetClassId\": 425,\n    \"model\": {\n        \"name\": \"Car.glb\",\n        \"modelFiles\": [\n            { \"id\": 17128 }\n        ],\n        \"useRemoteRendering\": false,\n        \"modelOffset\": [ 0, 0, 0 ],\n        \"modelRotation\": [ 0, 0, 0 ],\n        \"modelScale\": 1,\n        \"modelViews\": [{\n            \"name\": \"View 1\",\n            \"modelRotation\": [ 0, 0, 0 ],\n            \"modelOffset\": [ 0, 0, 0 ],\n            \"modelScale\": 1,\n            \"disableLighting\": false,\n            \"isDefault\": true\n        }]\n    }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3081d140-a4c9-46ae-839d-5329a8a3b69f"}],"id":"5f1c28c7-da1e-442e-8a9b-88ebca02a2a7","_postman_id":"5f1c28c7-da1e-442e-8a9b-88ebca02a2a7","description":""},{"name":"Add asset class","id":"e74a4a66-cd44-4373-ab06-93bd629665fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: AssetClassInput!, $orgId: [Int]) {\n  addAssetClass(data: $data, orgId: $orgId)\n}","variables":"{\n    \"data\": {\n      \"name\": \"Asset class name\",\n      \"status\": \"Active\",\n      \"description\": \"Description\",\n      \"make\": \"Asset class make\",\n      \"model\": \"Asset class model\",\n      \"type\": \"Asset class type\",\n      \"tagPosition\": [0.0,0.20,0.01],\n      \"tagRotation\": [0.0,0.25,0.01],\n      \"modelRotation\": [0.0,0.2,0.01],\n      \"modelScale\": 0.3\n    },\n    \"orgId\": [2]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e74a4a66-cd44-4373-ab06-93bd629665fb"},{"name":"Update asset class","id":"568d438d-778a-4e41-b51e-567e75949247","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: AssetClassInput!) {\n    updateAssetClass(id:$id, data: $data) \n    }","variables":" {\n    \"id\": 2681,\n    \"data\": {\n      \"name\": \"updated name\",\n      \"description\": \"updated description\",\n      \"make\": \"updated make\",\n      \"type\": \"updated type\",\n      \"status\": \"Active\",\n      \"model\": \"updated asset class model\",\n      \"tagPosition\": [0.0,0.205,0.01],\n      \"tagRotation\": [0.0,0.225,0.01],\n      \"modelRotation\": [0.0,0.200,0.01],\n      \"modelScale\": 0.9,\n      \"website\": \"website\"\n    }\n }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"568d438d-778a-4e41-b51e-567e75949247"},{"name":"Update tags","id":"b7ca6822-5a26-4d2a-a96a-035a3f049bca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $tagPosition: [Float], $tagRotation: [Float]) {\n    updateTags(id:$id, tagPosition:$tagPosition, tagRotation:$tagRotation)\n    }","variables":"{\n    \"id\": 2681,\n    \"tagPosition\": [0.05,0.05,0.05],\n    \"tagRotation\": [0.2343234,0.6765,0.999]\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7ca6822-5a26-4d2a-a96a-035a3f049bca"},{"name":"Update common info","id":"1eaca592-f150-4cec-8b8d-0054bf8b782b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: AssetClassCommonInfoInput!, $orgId: [Int]) { \n    updateAssetClassCommonInfo(id:$id, data: $data, orgId: $orgId)\n    }","variables":" {\n    \"id\": 2681,\n    \"data\": {\n    \t\"name\": \"updated name info\",\n    \t\"description\": \"updated description info\",\n    \t\"make\": \"updated make info\",\n    \t\"type\": \"updated type info\",\n    \t\"status\": \"Active\"\n    },\n    \"orgId\": [1]\n }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1eaca592-f150-4cec-8b8d-0054bf8b782b"},{"name":"Add file to asset class","id":"68491eba-a178-4d81-9bff-5e6b444edf8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($assetClassId: Int!, $fileId: [Int!]) {\n    addFileToAssetClass(assetClassId: $assetClassId, fileId: $fileId) \n    }","variables":" {\n    \"assetClassId\": 2681,\n    \"fileId\": [51140]\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"68491eba-a178-4d81-9bff-5e6b444edf8e"},{"name":"Delete file from asset class","id":"147708ab-99e7-4925-99ca-ab08bebd3e76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($assetClassId: Int!, $fileId: [Int!]) {\n    deleteFileFromAssetClass(assetClassId: $assetClassId, fileId: $fileId) \n    }","variables":"{\n    \"assetClassId\": 2681,\n    \"fileId\": [51140]\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"147708ab-99e7-4925-99ca-ab08bebd3e76"},{"name":"Add model to Asset Class","id":"2fe10f17-6a05-42ba-a61d-270e43be5654","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"raw","raw":"\"query\": \"($id: Int!) { assetClassModel (id: $id) { id, name, modelRotation, animationNames, useRemoteRendering, remoteRenderingPerformance, isDefault, modelSetup, disableLighting, modelScale, pedestalScale, modelOffset, modelUnitScale{name, coefficient}, modelFiles{name, originalName, id, url, fileType, contentType, type}, modelViews{id, modelId, name, modelRotation, modelOffset, modelScale, disableLighting, isDefault}, convertedFiles{model_id, glb, gltf, usdz} } }\""},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2fe10f17-6a05-42ba-a61d-270e43be5654"},{"name":"Update Asset Class model","id":"c27b94a9-77af-4a41-8550-240d447ffb87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($id: Int!, $name: String!, $modelScale: Float, $modelUnitScale: modelUnitScaleInputObject, $modelRotation: [Float], $modelOffset: [Float],$modelFiles:ModelFilesInput, $remoteRenderingPerformance: RemoteRenderingPerformance, $isDefault: Boolean!, $lightIntensityPoint:Float , $lightIntensityHemisphere:Float, $assetClassId: Int!, $modelViews:[ModelViewUpdateInput], $useRemoteRendering: Boolean, $pedestalScale: Float) { \n        updateAssetClassModelNew (id:$id, name:$name, modelScale:$modelScale, modelUnitScale:$modelUnitScale, modelFiles:$modelFiles, modelOffset:$modelOffset, modelRotation:$modelRotation, pedestalScale: $pedestalScale, modelViews:$modelViews, isDefault: $isDefault, assetClassId: $assetClassId, lightIntensityPoint:$lightIntensityPoint, lightIntensityHemisphere:$lightIntensityHemisphere, useRemoteRendering: $useRemoteRendering, remoteRenderingPerformance: $remoteRenderingPerformance) \n    }","variables":"{\n  \"id\": 3909,\n  \"name\": \"new model name\",\n  \"modelScale\": 1,\n  \"modelRotation\": [\n    2,\n    5,\n    7\n  ],\n  \"modelOffset\": [\n    8,\n    3,\n    1\n  ],\n  \"modelViews\": [\n    {\n      \"id\": 6171,\n      \"modelId\": 3909,\n      \"name\": \"View 1\",\n      \"isDefault\": true,\n      \"disableLighting\": true,\n      \"modelOffset\": [\n        0,\n        0,\n        0\n      ],\n      \"modelRotation\": [\n        0,\n        0,\n        0\n      ],\n      \"modelScale\": 1\n    }\n  ],\n  \"isDefault\": true,\n  \"lightIntensityPoint\": 3,\n  \"lightIntensityHemisphere\": 1,\n  \"assetClassId\": 2681,\n  \"modelUnitScale\": {\n    \"name\": \"ok\",\n    \"coefficient\": 9\n  }\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c27b94a9-77af-4a41-8550-240d447ffb87"},{"name":"Delete model","id":"19aed230-d06c-4506-b2b8-80bf1cdffc1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($assetClassId: Int!, $modelId: Int!, $forceDelete: Boolean!) { \n    deleteModelFromAssetClass(assetClassId: $assetClassId, modelId: $modelId, forceDelete: $forceDelete){id, title}\n    }","variables":"    {\n        \"assetClassId\": 2681,\n        \"modelId\": 3909,\n        \"forceDelete\": true\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"19aed230-d06c-4506-b2b8-80bf1cdffc1f"},{"name":"Get asset class","id":"51819408-d9da-4155-acf8-b74b3042df71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($assetClassId: Int) {\n  assetClass(id: $assetClassId) {\n    name\n    canBeDeleted\n    canBeArchived    \n    id\n    isFavorite\n    description\n    make\n    model\n    type\n    status\n    dateCreated\n    dateModified\n    website\n    files {\n      url\n      id\n      fileType\n      name\n    }\n    touchAlignmentData {\n      id\n      offset\n      rotationOffset\n      distances\n      fileIdA {\n        url\n        id\n        fileType\n        name\n      }\n      fileIdB {\n        url\n        id\n        fileType\n        name\n      }\n      fileIdC {\n        url\n        id\n        fileType\n        name\n      }\n      fileIdMain {\n        url\n        id\n        fileType\n        name\n      }\n    }\n    models {\n      id\n      name\n      useRemoteRendering\n      remoteRenderingPerformance\n      isDefault\n      modelSetup\n      disableLighting\n      modelRotation\n      modelOffset\n      modelScale\n      pedestalScale\n      animationNames\n      convertedFiles {\n        glb\n        gltf\n        usdz\n      }\n      modelFiles {\n        url\n        id\n        fileType\n        name\n        originalName\n      }\n      modelViews {\n        id\n        modelId\n        name\n        isDefault\n        disableLighting\n        modelRotation\n        modelOffset\n        modelScale\n      }\n    }\n    modelScale\n    modelRotation\n    pedestalScale\n    thumbnails {\n      id\n      url\n      fileType\n    }\n    modelsFiles {\n      id\n      url\n      fileType\n    }\n    documents {\n      url\n      id\n      fileType\n      name\n    }\n    orgs {\n      id\n      name\n      description\n    }\n  }\n}\n","variables":"{\n        \"assetClassId\": 33\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"51819408-d9da-4155-acf8-b74b3042df71"},{"name":"Get Asset Classes with pagination","id":"7f5e6f73-2986-4d25-a70c-62889adf7c32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query(\n  $deleted: Boolean,\n  $itemsPerPage: Int,\n  $pageNumber: Int,\n  $search: AssetClassSearchInput,\n  $filters: AssetClassFiltersInput,\n  $sort: SortInput,\n  $orgId: [Int]\n) {\n  assetClassesWithPagination(\n    deleted: $deleted,\n    itemsPerPage: $itemsPerPage,\n    pageNumber: $pageNumber,\n    search: $search,\n    filters: $filters,\n    sort: $sort,\n    orgId: $orgId\n  ) {\n    id\n    name\n    model\n    createdAt\n    models {\n      id\n      name\n      convertedFiles {\n        model_id\n        glb\n        gltf\n        usdz\n      }\n      modelRotation\n      isDefault\n      disableLighting\n      lightIntensityPoint\n      lightIntensityHemisphere\n      modelScale\n      pedestalScale\n      modelOffset\n      modelViews {\n        id\n        modelId\n        name\n        modelRotation\n        modelOffset\n        modelScale\n        disableLighting\n        isDefault\n      }\n      modelFiles {\n        name\n        originalName\n        id\n        url\n        fileType\n        contentType\n        type\n      }\n    }\n    description\n    make\n    type\n    status\n    deleted\n    website\n    dateCreated\n    dateModified\n    files {\n      id\n      name\n      url\n      isDefault\n      fileType\n      contentType\n    }\n    thumbnails {\n      id\n      name\n      url\n      isDefault\n      fileType\n      contentType\n    }\n    tagPosition\n    tagRotation\n    modelRotation\n    modelScale\n    pedestalScale\n    createdBy {\n      id\n      firstName\n      lastName\n      avatarDetails {\n        id\n        url\n      }\n      isOnline\n    }\n    updatedBy {\n      id\n      firstName\n      lastName\n      dateModified\n      avatarDetails {\n        id\n        url\n      }\n      isOnline\n    }\n    orgs {\n      id\n      name\n      description\n    }\n  }\n}\n","variables":"{\n        \"pageNumber\": 1,\n        \"itemsPerPage\": 3,\n        \"deleted\": false,\n        \"search\": {\n            \"all\": \"\"\n        },\n        \"orgId\": [2],\n        \"filters\": {\n            \"status\": [\n                \"Active\"\n            ]\n        },\n        \"sort\": {\n            \"propertyName\": \"name\",\n            \"reverse\": false\n        }\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7f5e6f73-2986-4d25-a70c-62889adf7c32"},{"name":"Get list of asset classes","id":"f0d21cf1-5e4c-4244-a067-bc7e5c92fa88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($deleted: Boolean, $orgId: [Int]) {\n  assetClasses(deleted: $deleted, orgId: $orgId) {\n    id\n    name\n    models {\n      id\n      name\n      lightIntensityPoint\n      lightIntensityHemisphere\n      modelOffset\n      modelViews {\n        id\n        modelId\n        name\n        modelRotation\n        modelOffset\n        modelScale\n        disableLighting\n        isDefault\n      }\n      modelRotation\n      isDefault\n      modelScale\n      pedestalScale\n      modelFiles {\n        name\n        id\n        url\n        fileType\n        convertedFiles\n        contentType\n        type\n      }\n    }\n    description\n    make\n    type\n    status\n    deleted\n    website\n    dateCreated\n    dateModified\n    files {\n      id\n      name\n      url\n      isDefault\n      fileType\n      contentType\n    }\n    modelRotation\n    modelScale\n    pedestalScale\n    orgs {\n      id\n      name\n      description\n    }\n  }\n}\n","variables":"{\n    \"deleted\": false,\n    \"orgId\": [1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0d21cf1-5e4c-4244-a067-bc7e5c92fa88"},{"name":"Get available asset classes","id":"8fb57baa-6bed-4324-aa5b-85a2aaf46038","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($deleted: Boolean, $filters: AssetClassFiltersInput, $exceptOrgId: Int) {\n  getAvailableAssetClasses(\n    deleted: $deleted\n    filters: $filters\n    exceptOrgId: $exceptOrgId\n  ) {\n    id\n    name\n    status\n    orgs {\n      id\n      name\n      description\n    }\n    files {\n      id\n      name\n      url\n      isDefault\n      fileType\n      contentType\n    }\n  }\n}\n","variables":"{\n  \"deleted\": false,\n  \"exceptOrgId\": 333,\n  \"filters\": {\"status\": \"Active\"}\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8fb57baa-6bed-4324-aa5b-85a2aaf46038"},{"name":"Get models by asset class id","id":"2b8ac2a5-31bd-42d6-9521-f9868a420e69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($id: Int!) {\n  assetClassModel(id: $id) {\n    id\n    name\n    modelRotation\n    modelScale\n    isDefault\n    modelSetup\n    disableLighting\n    convertedFiles {\n      usdz\n    }\n    modelOffset\n    pedestalScale\n    modelFiles {\n      name\n      id\n      url\n      fileType\n      contentType\n    }\n  }\n}\n","variables":"{\n    \"id\": 2245\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b8ac2a5-31bd-42d6-9521-f9868a420e69"},{"name":"Get asset class model by id","id":"f778e0ad-8ad2-488a-91f5-298dcc3355e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($id: Int!) {\r\n  assetClassModel(id: $id) {\r\n    id\r\n    name\r\n    modelRotation\r\n    modelScale\r\n    isDefault\r\n    disableLighting\r\n    convertedFiles {\r\n      usdz\r\n    }\r\n    modelOffset\r\n    pedestalScale\r\n    modelFiles {\r\n      name\r\n      id\r\n      url\r\n      fileType\r\n      contentType\r\n    }\r\n  }\r\n}\r\n","variables":"{\r\n    \"id\": 3912\r\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f778e0ad-8ad2-488a-91f5-298dcc3355e1"},{"name":"Delete assetClass","id":"70d358c5-07e3-45e3-8bd2-2b9c0ba15cb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($data: Int!, $orgId: [Int], $unassign: Boolean) {\n  deleteAssetClass(id: $data, orgId: $orgId, unassign: $unassign)\n}\n","variables":"    {\n        \"data\": 2681,\n        \"orgId\":[1],\n        \"unassign\": true \n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"70d358c5-07e3-45e3-8bd2-2b9c0ba15cb9"},{"name":"Restore assetClass","id":"b0c7d8df-143f-4418-a2c8-b4a9c6ce529c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"graphql","graphql":{"query":"mutation($assetClassId: Int!, $orgId: [Int]){restoreAssetClass(id: $assetClassId, orgId: $orgId)}","variables":"    {\n        \"assetClassId\": 2681,\n        \"orgId\": [1]\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>{\"query\":\"mutation($assetClassId: ID!){restoreAssetClass(id: $assetClassId)}\",\"variables\":{\"assetClassId\":7}}</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b0c7d8df-143f-4418-a2c8-b4a9c6ce529c"},{"name":"New Request","id":"679cd797-ceba-48f1-9301-36ea00bae905","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($orgId: [Int]) {\n  assetClassFilters(orgId: $orgId) {\n    status\n  }\n}\n","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"679cd797-ceba-48f1-9301-36ea00bae905"}],"id":"fbd93546-9dbf-4495-9103-b29bd448c3df","_postman_id":"fbd93546-9dbf-4495-9103-b29bd448c3df","description":""},{"name":"Assets","item":[{"name":"Add asset","id":"38418f50-aa0c-4a78-af69-4a09709b0423","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($asset: AssetInput!, $orgId: [Int]) { \n    addAsset (data: $asset, orgId: $orgId) { assetId, hasVumark } \n    }","variables":"{\n  \"orgId\": [2],\n  \"asset\": {\n    \"serialNumber\": \"serNumber\",\n    \"internalId\": \"InternId\",\n    \"department\": \"depart\",\n    \"locationId\": 2540,\n    \"assetClassId\": 2681,\n    \"assetTagId\": \"AsTagID\"\n  }\n}\n"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"38418f50-aa0c-4a78-af69-4a09709b0423"},{"name":"Update asset","id":"103b5004-3db3-4b98-91db-12afb196b96f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($id: Int!, $data: AssetInput!) {\n  updateAsset(id: $id, data: $data)\n}\n","variables":"{\n  \"id\": 1891,\n  \"data\": {\n    \"serialNumber\": \"serNumber2\",\n    \"internalId\": \"InternId2\",\n    \"department\": \"depart2\",\n    \"locationId\": 2540,\n    \"assetClassId\": 2681,\n    \"assetTagId\": \"AsTagID2\"\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"103b5004-3db3-4b98-91db-12afb196b96f"},{"name":"Get asset by id, assetTagId","id":"e0515d60-4bc1-44e2-a089-db9e70bb6667","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($assetId: Int, $assetTagId: ID) {\n  asset(id: $assetId, assetTagId: $assetTagId) {\n    id\n    isFavorite\n    org {\n      id\n      name\n      hierarchy\n    }\n    assetClassId\n    locationId\n    location {\n      locationId\n      name\n      owner\n      secure\n      restrictedEvidences\n      forceOffline\n    }\n    serialNumber\n    internalId\n    department\n    dateModified\n    criticality\n    status\n    assetTagId\n  }\n}\n","variables":"{\n    \"assetId\": 1891\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0515d60-4bc1-44e2-a089-db9e70bb6667"},{"name":"Get assets by assetClassId, locationId","id":"6010e3ef-9cb4-4af9-9934-4c00a71274fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query(\n  $assetClassId: Int,\n  $locationId: Int,\n  $maintRequired: Boolean,\n  $outOfToleranceRange: Boolean\n) {\n  assets(\n    assetClassId: $assetClassId,\n    locationId: $locationId,\n    maintRequired: $maintRequired,\n    outOfToleranceRange: $outOfToleranceRange\n  ) {\n    assetClassId\n    assets {\n      id\n      internalId\n      serialNumber\n      locationId\n      status\n      department\n      criticality\n      history {\n        id\n        contributors {\n          id\n        }\n      }\n      vumarkGuid\n      locationId\n    }\n  }\n}\n","variables":"    {\n        \"assetClassId\":2681\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6010e3ef-9cb4-4af9-9934-4c00a71274fa"},{"name":"Search assets","id":"02567ba3-8802-4a35-b465-3e6d3b255d6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($query: String, $orgId: [Int]) {\n  searchAssets(query: $query, orgId: $orgId) {\n    id\n    vumarkGuid\n    department\n    externalId\n    internalId\n    criticality\n    status\n    serialNumber\n    locationId\n    assetClass {\n      id\n      name\n    }\n    vumarkImage {\n      id\n      url\n      originalName\n    }\n  }\n}\n","variables":"{\n  \"orgId\": [1] \n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02567ba3-8802-4a35-b465-3e6d3b255d6f"},{"name":"Get all assets","id":"038b8578-413b-4b20-8540-5eeaef0a5339","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query(\n  $assetClassId: Int, \n  $locationId: Int, \n  $maintRequired: Boolean, \n  $outOfToleranceRange: Boolean, \n  $orgId: [Int]\n) {\n  assets(\n    assetClassId: $assetClassId, \n    locationId: $locationId, \n    maintRequired: $maintRequired, \n    outOfToleranceRange: $outOfToleranceRange,\n    orgId: $orgId\n  ) {\n    assetClassId\n    assets {\n      id\n      assetClassId\n      locationId\n      serialNumber\n      internalId\n      department\n      criticality\n      status\n      assetTagId\n      latitude\n      longitude\n      altitude\n      assetClass {\n        model\n        make\n        models {\n          id\n          name\n          modelRotation\n          isDefault\n          modelOffset\n          modelScale\n          modelFiles {\n            id\n            name\n            originalName\n            url\n            fileType\n            contentType\n            type\n          }\n        }\n      }\n      createdBy {\n        id\n        firstName\n        lastName\n        avatarDetails {\n          id\n          url\n        }\n        isOnline\n      }\n      updatedBy {\n        id\n        firstName\n        lastName\n        avatarDetails {\n          id\n          url\n        }\n        isOnline\n      }\n      location {\n        name\n      }\n      org {\n        id\n      }\n    }\n  }\n}\n","variables":"{\n  \"orgId\": [2] \n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"038b8578-413b-4b20-8540-5eeaef0a5339"},{"name":"Get all QR codes","id":"84327215-a62d-41da-a683-e9ffed5664e4","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($orgId: [Int]){qrCodes(orgId: $orgId)}","variables":"{\n  \"orgId\": [1] \n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"84327215-a62d-41da-a683-e9ffed5664e4"},{"name":"Get filters and pagination assets","id":"1e2ac3dc-1625-4294-9de0-94234c4b42fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query(\n  $itemsPerPage: Int,\n  $deleted: Boolean,\n  $pageNumber: Int,\n  $filters: AssetsFiltersInput,\n  $orderBy: String,\n  $reverseOrder: Boolean,\n  $search: AssetSearchInputType,\n  $sort: SortInput\n) {\n  webAssets(\n    itemsPerPage: $itemsPerPage,\n    deleted: $deleted,\n    pageNumber: $pageNumber,\n    filters: $filters,\n    orderBy: $orderBy,\n    reverseOrder: $reverseOrder,\n    search: $search,\n    sort: $sort\n  ) {\n    id\n    internalId\n    status\n    latitude\n    longitude\n    altitude\n    assetClass {\n      id\n      name\n      model\n      make\n    }\n    assetTagId\n    assetClassId\n    qrSize\n    serialNumber\n    department\n    deleted\n    criticality\n    vumarkGuid\n    alignmentTag\n    location {\n      name\n      longitude\n      latitude\n      altitude\n    }\n    createdBy {\n      id\n      firstName\n      lastName\n      avatarDetails {\n        id\n        url\n      }\n      isOnline\n    }\n    updatedBy {\n      id\n      firstName\n      lastName\n      dateModified\n      avatarDetails {\n        id\n        url\n      }\n      isOnline\n    }\n  }\n}\n","variables":"{\n    \"itemsPerPage\": 1000000,\n    \"pageNumber\": 1,\n    \"deleted\": false,\n    \"filters\": {\n        \"status\": [\"active\"],\n        \"locationName\": [],\n        \"assetClassId\": []\n    },\n    \"sort\": {\n        \"propertyName\": \"serialNumber\",\n        \"reverse\": false\n    },\n    \"search\": {}\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1e2ac3dc-1625-4294-9de0-94234c4b42fd"},{"name":"Get all filters","id":"b4afe5b8-3459-426a-b32f-d9090147edad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($filters: AssetsFiltersInput, , $orgId: [Int]) {\n    assetFilters(filters: $filters, orgId: $orgId) {\n        locationName, assetClassId{id}, status, criticality\n    }\n}","variables":"{\n      \"orgId\": [2],\n      \"filters\": {\n          \"status\": \"active\"\n        }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b4afe5b8-3459-426a-b32f-d9090147edad"},{"name":"ArchivedAsset","id":"3bfa7ca8-3e96-490f-8c21-fc50fc3018a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($id: Int!, $force: Boolean) {\n  archiveAsset(id: $id, force: $force) {\n    archived\n    jobsNeedToBeCancelled {\n      id\n      status\n      hasOpenFaults\n      workItemType\n      updatedAt\n      asset {\n        assetTagId\n        assetClassId\n      }\n      location {\n        locationId\n        name\n      }\n      assignedUserDetails {\n        firstName\n        lastName\n        avatarDetails {\n          url\n        }\n      }\n    }\n  }\n}\n","variables":"    {\n        \"id\": 1988,\n        \"force\": true\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3bfa7ca8-3e96-490f-8c21-fc50fc3018a5"},{"name":"UnarchivedAsset","id":"05e6555d-5ff7-46c5-ba61-ef4275aad128","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!) {\n    unarchiveAsset(id: $id){success}\n    }","variables":"    {\n        \"id\": 1837\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"05e6555d-5ff7-46c5-ba61-ef4275aad128"},{"name":"Delete asset","id":"108f9f7a-6c3c-46c9-8895-2bdf09205f74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteAsset(id: $data)\n    }","variables":"    {\n        \"data\": 1837\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"108f9f7a-6c3c-46c9-8895-2bdf09205f74"},{"name":"Move asset","id":"63a17713-c737-4c85-9889-c3e1d859b734","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation (\n  $id: Int!\n  $orgId: Int!\n  $force: Boolean!\n  $usersWillBeAssignedToTheOrg: [Int]\n) {\n  moveAsset(\n    id: $id\n    orgId: $orgId\n    force: $force\n    usersWillBeAssignedToTheOrg: $usersWillBeAssignedToTheOrg\n  )\n}\n","variables":"{\n    \"id\": 1925,\n    \"orgId\": 2,\n    \"force\": false,\n    \"usersWillBeAssignedToTheOrg\": [] \n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"63a17713-c737-4c85-9889-c3e1d859b734"},{"name":"All assets with pagination","id":"8982b7a6-a298-495a-a94f-c6741adf45e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query(\n  $itemsPerPage: Int,\n  $pageNumber: Int,\n  $filters: AssetsFiltersInput,\n  $orderBy: String,\n  $reverseOrder: Boolean,\n  $search: AssetSearchInputType,\n  $sort: SortInput,\n  $orgId: [Int],\n) {\n  allAssetsWithPagination(\n    itemsPerPage: $itemsPerPage,\n    pageNumber: $pageNumber,\n    filters: $filters,\n    orderBy: $orderBy,\n    reverseOrder: $reverseOrder,\n    search: $search,\n    sort: $sort,\n    orgId: $orgId,\n  ) {\n    id\n    internalId\n    status\n    latitude\n    longitude\n    altitude\n    assetClass {\n      id\n      name\n      model\n      make\n    }\n    assetTagId\n    assetClassId\n    qrSize\n    serialNumber\n    department\n    deleted\n    criticality\n    vumarkGuid\n    alignmentTag\n    location {\n      name\n      longitude\n      latitude\n      altitude\n    }\n    createdBy {\n      id\n      firstName\n      lastName\n      avatarDetails {\n        id\n        url\n      }\n      isOnline\n    }\n    updatedBy {\n      id\n      firstName\n      lastName\n      dateModified\n      avatarDetails {\n        id\n        url\n      }\n      isOnline\n    }\n     org{id, name, hierarchy}\n     faults{ \n        id, resolvedAt, createdAt, description, createdByUserId, resolvedByUserId, job{id, title}, jobStep{id, title} \n        }\n  }\n}","variables":"{\n  \"pageNumber\": null,\n  \"itemsPerPage\": null,\n  \"filters\": {\n    \"status\": [\n      \"Active\"\n    ],\n    \"assetClassId\": [],\n    \"locationName\": [],\n    \"valueListEvidenceId\": [\n      \n    ]\n  },\n  \"search\": {},\n  \"sort\": {\n    \"propertyName\": \"id\",\n    \"reverse\": true\n  },\n  \"orgId\": [\n    1\n  ]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8982b7a6-a298-495a-a94f-c6741adf45e4"},{"name":"Web assets","id":"a136a491-cb4d-4e64-b84b-4c2054465726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query (\n  $itemsPerPage: Int\n  $deleted: Boolean\n  $pageNumber: Int\n  $filters: AssetsFiltersInput\n  $orgId: [Int]\n  $orderBy: String\n  $reverseOrder: Boolean\n  $search: AssetSearchInputType\n  $sort: SortInput\n) {\n  webAssets(\n    itemsPerPage: $itemsPerPage\n    deleted: $deleted\n    pageNumber: $pageNumber\n    filters: $filters\n    orderBy: $orderBy\n    reverseOrder: $reverseOrder\n    search: $search\n    sort: $sort\n    orgId: $orgId\n  ) {\n    isFavorite\n    internalId\n    assetTagId\n    assetClassId\n    qrSize\n    serialNumber\n    department\n    deleted\n    criticality\n    dateModified\n    createdAt\n    isFromOnboarding\n    alignmentTag\n    assetClass {\n      id\n      name\n    }\n    createdBy {\n      id\n      firstName\n      lastName\n      avatarDetails {\n        id\n        url\n        name\n      }\n      isOnline\n    }\n    updatedBy {\n      id\n      firstName\n      lastName\n      avatarDetails {\n        id\n        url\n        name\n      }\n      isOnline\n      dateModified\n    }\n    location {\n      locationId\n      name\n    }\n    faults {\n      id\n      resolvedAt\n      createdAt\n      description\n      createdByUserId\n      resolvedByUserId\n      job {\n        id\n        title\n      }\n      jobStep {\n        id\n        title\n      }\n    }\n    org {\n      id\n      name\n      hierarchy\n    }\n  }\n}\n","variables":"{\n  \"pageNumber\": 1,\n  \"orgId\": [1],\n  \"itemsPerPage\": 10,\n  \"filters\": {\n    \"status\": [\n      \"Active\"\n    ],\n    \"assetClassId\": [],\n    \"criticality\": [],\n    \"locationName\": []\n  },\n  \"search\": {},\n  \"sort\": {\n    \"propertyName\": \"id\",\n    \"reverse\": true\n  },\n  \"deleted\": true \n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a136a491-cb4d-4e64-b84b-4c2054465726"}],"id":"3ff03f06-1167-43c6-a7ad-e73b955f987a","_postman_id":"3ff03f06-1167-43c6-a7ad-e73b955f987a","description":""},{"name":"Templates with version","item":[{"name":"Create template with version","id":"529cbe6c-d094-4dec-8df4-8bfac80eb24a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: TemplateWithVersionInput!) {\n    createTemplateWithVersion(data: $data) {\n        templateId\n        rootTemplateId\n        name\n    }\n}\n","variables":"{\n   \"data\":{\n      \"assetClassId\": 5,\n      \"title\": \"Editorial Postman\",\n      \"versionName\": \"ver1\",\n      \"steps\":[\n         {\n            \"step\":1,\n            \"title\":\"step 1\",\n            \"evidenceRequirements\":[\n               \"text\",\n               \"audio\",\n               \"video\",\n               \"photo\",\n               \"meter\",\n               \"pen\"\n            ],\n            \"highlights\":[\n               {\n                  \"type\":\"Marker\",\n                  \"position\":[\n                     1,\n                     0,\n                     -2\n                  ],\n                  \"rotation\":[\n                     \n                  ]\n               }\n            ],\n            \"meterRequirements\":[\n               \n            ],\n            \"requiredEvidence\":true,\n            \"noteTypesOrder\":[\n               \"text\",\n               \"video\",\n               \"photo\",\n               \"doc\",\n               \"audio\",\n               \"pen\",\n               \"choice_note\",\n               \"action_note\",\n               \"template_note\",\n               \"meter\"\n            ],\n            \"notes\":[\n              \n            ]\n            }\n        ]\n   }\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"529cbe6c-d094-4dec-8df4-8bfac80eb24a"},{"name":"Create Maker template","id":"9faf3699-cb86-43fc-8d3f-588c2d7ff1b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: TemplateWithVersionInput!) {\n    createTemplateWithVersion(data: $data) {\n        templateId\n        rootTemplateId\n        name\n    }\n}\n","variables":"{\n   \"data\":{\n      \"assetClassId\": 2681,\n      \"customEvidence\":[\n         95\n      ],\n      \"files\": [6],\n      \"folderId\": null,\n      \"title\": \"Editorial Postman\",\n      \"versionName\": \"ver1\",\n      \"steps\":[\n         {\n            \"step\":1,\n            \"title\":\"step 1\",\n            \"evidenceRequirements\":[\n               \"text\",\n               \"audio\",\n               \"video\",\n               \"photo\",\n               \"meter\",\n               \"pen\"\n            ],\n            \"highlights\":[\n               {\n                  \"type\":\"Marker\",\n                  \"position\":[\n                     1,\n                     0,\n                     -2\n                  ],\n                  \"rotation\":[\n                     \n                  ]\n               }\n            ],\n            \"meterRequirements\":[\n               \n            ],\n            \"requiredEvidence\":true,\n            \"noteTypesOrder\":[\n               \"text\",\n               \"video\",\n               \"photo\",\n               \"doc\",\n               \"audio\",\n               \"pen\",\n               \"choice_note\",\n               \"action_note\",\n               \"template_note\",\n               \"meter\"\n            ],\n            \"notes\":[\n               {\n                  \"actionType\":null,\n                  \"files\":[\n                     \n                  ],\n                  \"meterRequirements\":[\n                     \n                  ],\n                  \"order\":1,\n                  \"text\":\"some text 1\",\n                  \"title\":\"text note 1\",\n                  \"type\":\"text\"\n               },\n               {\n                  \"actionType\":null,\n                  \"files\":[\n                     48704\n                  ],\n                  \"meterRequirements\":[\n                     \n                  ],\n                  \"order\":1,\n                  \"text\":\"\",\n                  \"title\":\"photo postman\",\n                  \"type\":\"photo\"\n               },\n               {\n                  \"actionType\":null,\n                  \"files\":[\n                     51164\n                  ],\n                  \"meterRequirements\":[\n                     \n                  ],\n                  \"order\":1,\n                  \"text\":\"\",\n                  \"title\":\"audio postman\",\n                  \"type\":\"audio\"\n               },\n               {\n                  \"actionType\":null,\n                  \"files\":[\n                     48628\n                  ],\n                  \"meterRequirements\":[\n                     \n                  ],\n                  \"order\":1,\n                  \"text\":\"\",\n                  \"title\":\"video postman\",\n                  \"type\":\"video\"\n               },\n               {\n                  \"actionType\":null,\n                  \"assetClassId\": 2681,\n                  \"autoplay\":false,\n                  \"files\":[\n                     \n                  ],\n                  \"meterRequirements\":[\n                     \n                  ],\n                  \"order\":1,\n                  \"templateId\":3554,\n                  \"text\":\"\",\n                  \"title\":\"testApi\",\n                  \"type\":\"template_note\"\n               }\n            ]\n         },\n         {\n            \"step\":2,\n            \"title\":\"step 2\",\n            \"evidenceRequirements\":[\n               \n            ],\n            \"highlights\":[\n               {\n                  \"type\":\"Marker\",\n                  \"position\":[\n                     -1,\n                     1,\n                     2\n                  ],\n                  \"rotation\":[\n                     \n                  ]\n               }\n            ],\n            \"meterRequirements\":[\n               \n            ],\n            \"requiredEvidence\":false,\n            \"noteTypesOrder\":[\n               \"text\",\n               \"video\",\n               \"photo\",\n               \"doc\",\n               \"audio\",\n               \"pen\",\n               \"choice_note\",\n               \"action_note\",\n               \"template_note\",\n               \"meter\"\n            ],\n            \"notes\":[\n               {\n                  \"meterRequirements\":[\n                     {\n                        \"value\":\"3\",\n                        \"evaluationType\":\"lessThan\",\n                        \"meterId\":2342\n                     }\n                  ]\n               },\n               {\n                  \"title\":\"Choose from the below\",\n                  \"type\":\"choice_note\",\n                  \"order\":1,\n                  \"text\":\"\",\n                  \"autoplay\":false,\n                  \"actionType\":null,\n                  \"meterRequirements\":[\n                     \n                  ],\n                  \"files\":[\n                     \n                  ],\n                  \"choiceNotes\":[\n                     {\n                        \"title\":\"none\",\n                        \"assetClassId\":null,\n                        \"templateId\":null\n                     },\n                     {\n                        \"title\":\"subJob\",\n                        \"assetClassId\": 2146,\n                        \"templateId\": 2764\n                     }\n                  ]\n               },\n               {\n                  \"actionType\":null,\n                  \"files\":[\n                     51140\n                  ],\n                  \"meterRequirements\":[\n                     \n                  ],\n                  \"order\":1,\n                  \"text\":\"2\",\n                  \"title\":\"css\",\n                  \"type\":\"doc\"\n               },\n               {\n                  \"title\":\"OBJ_autotest.obj\",\n                  \"type\":\"action_note\",\n                  \"order\":1,\n                  \"text\":\"\",\n                  \"autoplay\":false,\n                  \"actionType\":\"show_scale_model\",\n                  \"meterRequirements\":[\n                     \n                  ],\n                  \"files\":[\n                     \n                  ],\n                  \"model\":{\n                     \"id\": 3912\n                  }\n               },\n               {\n                  \"title\":\"AR Note\",\n                  \"type\":\"pen\",\n                  \"order\":1,\n                  \"text\":\"\",\n                  \"autoplay\":false,\n                  \"actionType\":null,\n                  \"meterRequirements\":[\n                     \n                  ],\n                  \"files\":[\n                     \n                  ],\n                  \"shapeNote\":[\n                     {\n                        \"mode\":\"Square\",\n                        \"color\":{\n                           \"r\":245,\n                           \"g\":241,\n                           \"b\":104,\n                           \"a\":255\n                        },\n                        \"mainPosition\":[\n                           0.5,\n                           0,\n                           0\n                        ],\n                        \"mainRotation\":[\n                           90,\n                           0,\n                           0\n                        ],\n                        \"shapeScale\":[\n                           0.05,\n                           0.05,\n                           0.05\n                        ],\n                        \"shapePosition\":[\n                           0,\n                           0,\n                           0\n                        ],\n                        \"arrowHeadPosition\":[\n                           null,\n                           null,\n                           null\n                        ],\n                        \"arrowTailScale\":[\n                           null,\n                           null,\n                           null\n                        ]\n                     }\n                  ]\n               },\n               {\n                  \"type\":\"hand\",\n                  \"order\":1,\n                  \"text\":\"{\\\"RightHand\\\":[{\\\"Handedness\\\":2,\\\"coordinates\\\":[],\\\"FrameTime\\\":0.0}],\\\"LeftHand\\\":[{\\\"Handedness\\\":1,\\\"coordinates\\\":[{\\\"HandJoint\\\":1,\\\"Position\\\":[0.09768776595592499,-0.35073408484458926,-0.5418627858161926],\\\"Rotation\\\":[40.48343276977539,335.3223571777344,324.04449462890627],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":2,\\\"Position\\\":[0.0,0.0,0.0],\\\"Rotation\\\":[25.82791519165039,317.2530212402344,68.69654083251953],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":3,\\\"Position\\\":[-1.164153192248496e-12,9.313225537987968e-12,0.00037181645166128874],\\\"Rotation\\\":[3.917410135269165,3.9034454822540285,0.23103037476539613],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":4,\\\"Position\\\":[3.026798256478003e-11,0.0,0.0004089724097866565],\\\"Rotation\\\":[15.151601791381836,1.290262222290039,0.2505107820034027],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":5,\\\"Position\\\":[1.6298145125159814e-11,1.3969838306981952e-11,0.00039010096224956214],\\\"Rotation\\\":[351.40032958984377,355.2997131347656,0.3178156316280365],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":6,\\\"Position\\\":[0.0,0.0,0.0],\\\"Rotation\\\":[18.019550323486329,340.091064453125,351.1145935058594],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":7,\\\"Position\\\":[0.000009000000318337698,-0.0000019999999949504856,0.0003209999995306134],\\\"Rotation\\\":[335.1781921386719,3.732671022415161,358.6014099121094],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":8,\\\"Position\\\":[-2.9685906510756868e-11,6.693880692798526e-12,0.0007289571221917868],\\\"Rotation\\\":[8.255744934082032,17.217824935913087,23.091583251953126],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":9,\\\"Position\\\":[4.565663385552865e-12,-2.29374557542128e-11,0.00041979661909863353],\\\"Rotation\\\":[13.249407768249512,359.78057861328127,11.183441162109375],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":10,\\\"Position\\\":[1.2982326151600443e-11,9.363248024141236e-12,0.00024728194694034755],\\\"Rotation\\\":[4.832666873931885,2.9974093437194826,348.6368408203125],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":11,\\\"Position\\\":[0.0,0.0,0.0],\\\"Rotation\\\":[12.31635856628418,2.069084644317627,9.072985649108887],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":12,\\\"Position\\\":[-2.03966617901008e-12,-4.206413049909902e-14,0.00026820990024134517],\\\"Rotation\\\":[338.88482666015627,359.6690368652344,0.10949958860874176],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":13,\\\"Position\\\":[-1.0143707705398408e-12,2.046362990897662e-14,0.0007225763401947916],\\\"Rotation\\\":[69.7063980102539,20.87864875793457,9.720080375671387],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":14,\\\"Position\\\":[-1.8189894035458565e-12,-1.488842729657769e-11,0.0004545615811366588],\\\"Rotation\\\":[47.85572814941406,357.6462707519531,1.7186064720153809],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":15,\\\"Position\\\":[-6.175468990343713e-12,2.664819320069567e-12,0.0002760795468930155],\\\"Rotation\\\":[25.446428298950197,357.08624267578127,348.2730712890625],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":16,\\\"Position\\\":[0.0,0.0,0.0],\\\"Rotation\\\":[2.4316489696502687,32.07847213745117,16.803464889526368],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":17,\\\"Position\\\":[-2.692104351942337e-12,-1.091393617732965e-13,0.0002641573373693973],\\\"Rotation\\\":[348.4852600097656,336.6457824707031,4.655153274536133],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":18,\\\"Position\\\":[-1.275111526782835e-11,4.438334248735298e-12,0.000682468235027045],\\\"Rotation\\\":[71.7204360961914,333.61981201171877,322.0260009765625],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":19,\\\"Position\\\":[-2.000888387268529e-12,-7.639755147947902e-12,0.00042860981193371117],\\\"Rotation\\\":[71.4178466796875,338.8056335449219,340.7779235839844],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":20,\\\"Position\\\":[-7.858469083799058e-12,-4.574758107056542e-12,0.0002651471004355699],\\\"Rotation\\\":[22.64284324645996,358.7222900390625,351.1891174316406],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":21,\\\"Position\\\":[0.0,0.0,0.0],\\\"Rotation\\\":[2.3748152256011965,51.808616638183597,28.456544876098634],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":22,\\\"Position\\\":[1.1177689850094819e-11,0.0,0.000289271236397326],\\\"Rotation\\\":[344.7572326660156,330.9346008300781,8.217889785766602],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":23,\\\"Position\\\":[1.415173707386419e-11,-1.1641531488804091e-11,0.0006916036945767701],\\\"Rotation\\\":[54.295074462890628,297.0355529785156,289.60406494140627],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":24,\\\"Position\\\":[-5.784385991025598e-12,-1.164153192248496e-12,0.0002797679335344583],\\\"Rotation\\\":[56.20903396606445,354.6645812988281,350.1100158691406],\\\"Scale\\\":0.8802403211593628},{\\\"HandJoint\\\":25,\\\"Position\\\":[2.5297399591783788e-11,3.346940346399263e-12,0.00018895004177466035],\\\"Rotation\\\":[23.528776168823243,345.21661376953127,341.31646728515627],\\\"Scale\\\":0.8802403211593628}],\\\"FrameTime\\\":0.0}],\\\"sessionTime\\\":5.0,\\\"color\\\":{\\\"r\\\":0.9137255549430847,\\\"g\\\":0.20392155647277833,\\\"b\\\":0.13333329558372498,\\\"a\\\":1.0}}\",\n                  \"files\":[\n                     \n                  ]\n               }\n            ]\n         },\n         {\n            \"step\":3,\n            \"title\":\"step 3\",\n            \"requiredEvidence\":false,\n            \"notes\":[\n               \n            ],\n            \"evidenceRequirements\":[\n               \n            ],\n            \"noteTypesOrder\":[\n               \"doc\",\n               \"video\",\n               \"text\",\n               \"audio\",\n               \"photo\",\n               \"action_note\",\n               \"template_note\",\n               \"pen\",\n               \"choice_note\"\n            ]\n         }\n      ]\n   }\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9faf3699-cb86-43fc-8d3f-588c2d7ff1b7"},{"name":"Update template with version","id":"dc1622ab-2d0b-429e-9465-5d6f13a33f06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($data: TemplateVersionUpdateInput!, $orgId: [Int], $force: Boolean) {\n  updateTemplateWithVersion(data: $data, orgId: $orgId, force: $force)\n}\n","variables":"{\n  \"orgId\": [\n    1\n  ],\n  \"force\": false,\n    \"data\": {\n  \"title\" : \"Alex test 3\",\n  \"customEvidence\" : [\n  ],\n  \"steps\" : [\n    {\n      \"requiredEvidence\" : false,\n      \"title\" : \"Learn how to adjust your bike seat on the Echelon EX-3 (manual attached for reference)\",\n      \"evidenceRequirements\" : [\n      ],\n      \"step\" : 1,\n      \"bearing\" : null,\n      \"altitude\" : null,\n      \"highlights\" : [\n      ],\n      \"distance\" : null,\n      \"notes\" : [\n        {\n          \"autoplay\" : false,\n          \"userId\" : null,\n          \"type\" : \"photo\",\n          \"title\" : \"Photo\",\n          \"files\" : [\n            54127,\n            54128\n          ],\n          \"shapeNote\" : null,\n          \"alignmentTagOffsets\" : null,\n          \"assetClassId\" : null,\n          \"actionType\" : \"\",\n          \"markupModel\" : {\n            \"imageStickers\" : [\n            ],\n            \"drawPaths\" : [\n              {\n                \"points\" : [\n                  [\n                    274.5,\n                    229.15625\n                  ],\n                  [\n                    300,\n                    229.15625\n                  ],\n                  [\n                    300,\n                    229.15625\n                  ],\n                  [\n                    334,\n                    229.15625\n                  ],\n                  [\n                    349.5,\n                    230.65625\n                  ],\n                  [\n                    361.5,\n                    245.15625\n                  ],\n                  [\n                    362,\n                    278.65625\n                  ],\n                  [\n                    354,\n                    328.15625\n                  ],\n                  [\n                    334,\n                    377.65625\n                  ],\n                  [\n                    320,\n                    409.15625\n                  ],\n                  [\n                    311,\n                    430.15625\n                  ],\n                  [\n                    306,\n                    442.15625\n                  ],\n                  [\n                    305,\n                    447.65625\n                  ],\n                  [\n                    312.5,\n                    448.15625\n                  ],\n                  [\n                    343.5,\n                    447.15625\n                  ],\n                  [\n                    369.5,\n                    445.65625\n                  ],\n                  [\n                    386.5,\n                    445.65625\n                  ],\n                  [\n                    405.5,\n                    449.65625\n                  ]\n                ],\n                \"pathColor\" : {\n                  \"r\" : 255,\n                  \"b\" : 0,\n                  \"g\" : 0,\n                  \"a\" : 255\n                },\n                \"pathWidth\" : 5,\n                \"ratio\" : 1.0621875000000001\n              },\n              {\n                \"points\" : [\n                  [\n                    722,\n                    149.65625\n                  ],\n                  [\n                    753,\n                    149.65625\n                  ],\n                  [\n                    753,\n                    149.65625\n                  ],\n                  [\n                    812,\n                    150.15625\n                  ],\n                  [\n                    834,\n                    161.15625\n                  ],\n                  [\n                    840,\n                    265.15625\n                  ],\n                  [\n                    826.5,\n                    329.65625\n                  ],\n                  [\n                    818.5,\n                    366.15625\n                  ],\n                  [\n                    813.5,\n                    390.65625\n                  ],\n                  [\n                    811.5,\n                    409.65625\n                  ],\n                  [\n                    811,\n                    419.65625\n                  ],\n                  [\n                    811.5,\n                    423.15625\n                  ],\n                  [\n                    818.5,\n                    424.15625\n                  ]\n                ],\n                \"pathColor\" : {\n                  \"r\" : 0,\n                  \"b\" : 255,\n                  \"g\" : 0,\n                  \"a\" : 255\n                },\n                \"pathWidth\" : 5,\n                \"ratio\" : 1.0621875000000001\n              }\n            ],\n            \"editRect\" : [\n              [\n                0,\n                0\n              ],\n              [\n                640,\n                360\n              ]\n            ],\n            \"angle\" : 0,\n            \"textStickers\" : [\n            ]\n          },\n          \"choiceNotes\" : null,\n          \"order\" : 1,\n          \"color\" : null,\n          \"modelViewId\" : null,\n          \"animationName\" : \"\",\n          \"text\" : \"\",\n          \"meter\" : null,\n          \"points\" : null,\n          \"model\" : null,\n          \"templateId\" : null\n        }\n      ]\n    },\n    \n  ],\n  \"useGPS\" : false,\n  \"scratchpad\" : [\n    {\n      \"text\" : \"Learn how to adjust your bike seat on the Echelon EX-3 (manual attached for reference)\",\n      \"id\" : \"AE968EAD-605E-4271-8199-D86D1A5C2E31\"\n    },\n    {\n      \"id\" : \"2823D9FA-62A4-4BE2-86B7-D34D0E4AC1DD\",\n      \"text\" : \"Turn seat slide adjustment lever counterclockwise to loosen.\"\n    },\n    {\n      \"text\" : \"Move seat along track to desired location. Turn seat slide adjustment lever clockwise to tighten and secure in place.\",\n      \"id\" : \"286B97CB-EE54-4903-83E2-FA53DB145D67\"\n    },\n    {\n      \"text\" : \"Turn seat height adjustment lever counterclockwise until you are able to pull the lever halfway out.\",\n      \"id\" : \"B631986C-706A-49C1-8EFE-77A1A1803314\"\n    },\n    {\n      \"id\" : \"88CD3E06-FF08-4CD8-9BF4-940ACF1B55D7\",\n      \"text\" : \"Pull and hold the seat height adjustment lever and raise the seat to desired position. Turn seat height adjustment lever clockwise until secure.\"\n    },\n    {\n      \"text\" : \"Turn handlebar adjustment lever counterclockwise until you are able to pull the lever halfway out.\",\n      \"id\" : \"3740F565-A17E-4BEC-8B70-A5E3EE771C52\"\n    },\n    {\n      \"id\" : \"403020DE-5A33-44AC-B3F2-1BF4745AE714\",\n      \"text\" : \"Pull and hold the handlebar adjustment lever and raise or lower the handlebars to desired position. Turn handlebar adjustment lever clockwise until secure.\"\n    }\n  ],\n  \"thumbnailUrl\" : \"uploads\\/test\\/ff8870a6-99c6-42c9-9b6c-89c29f796850\\/zLzUQocRYxqnKA0eAC4QxQ6HG.jpeg\",\n  \"description\" : \"Echelon EX-3 Bike seat adjustment procedure\",\n  \"scenes\" : [\n    {\n      \"title\" : \"Scene 1\",\n      \"id\" : \"df813f43-c1e4-44cd-9dc4-98331fbd697d\",\n      \"videos\" : [\n        {\n          \"files\" : [\n            54117\n          ],\n          \"id\" : \"258c32a2-590b-4e45-a255-0db4017a6f37\",\n          \"subtitles\" : [\n            {\n              \"id\" : \"CA76F7F8-8D51-409B-8FD5-5E61B7C8FE42\",\n              \"sentence\" : \" Now I'm going to go over the three different adjustment points on the echelon EX3 exercise\",\n              \"end\" : 8.1999999999999993,\n              \"start\" : 0\n            },\n            {\n              \"id\" : \"C148682C-49DB-431C-8280-2853A0E63F11\",\n              \"end\" : 11.279999999999999,\n              \"sentence\" : \" bike with you guys today.\",\n              \"start\" : 8.1999999999999993\n            },\n            {\n              \"end\" : 15.800000000000001,\n              \"id\" : \"EEE5736A-2527-4481-B32C-B057A1EDA12E\",\n              \"sentence\" : \" First one is on the front stem here.\",\n              \"start\" : 11.279999999999999\n            },\n            {\n              \"start\" : 15.800000000000001,\n              \"end\" : 25.120000000000001,\n              \"sentence\" : \" This lever I turn counterclockwise to loosen, pull out, and once I pull out I can align\",\n              \"id\" : \"685487A5-AA85-4768-A500-0934D814CE9D\"\n            },\n            {\n              \"sentence\" : \" it with these pegs and then clockwise until it's tight.\",\n              \"start\" : 25.120000000000001,\n              \"end\" : 34.32,\n              \"id\" : \"0A84867A-2678-4EAD-AF3F-02E264D61BB6\"\n            },\n            {\n              \"sentence\" : \" Second thing is very similar on the back, on the seat stem, counterclockwise to loosen,\",\n              \"id\" : \"5E95D028-5B1F-4B81-BB1C-9D1C4D8C4D3C\",\n              \"start\" : 34.32,\n              \"end\" : 42.479999999999997\n            },\n            {\n              \"id\" : \"7C0DE216-EB2C-480A-B5FD-6797348D7CF9\",\n              \"start\" : 42.479999999999997,\n              \"end\" : 43.479999999999997,\n              \"sentence\" : \" pull out.\"\n            },\n            {\n              \"sentence\" : \" I can adjust that.\",\n              \"id\" : \"D402E39D-595C-4F67-BD7F-E9CA3FE26850\",\n              \"start\" : 43.479999999999997,\n              \"end\" : 44.640000000000001\n            },\n            {\n              \"start\" : 44.640000000000001,\n              \"id\" : \"6696D070-7306-4EDC-AF2B-17AB73BE5241\",\n              \"end\" : 54.719999999999999,\n              \"sentence\" : \" There are numbers here as a guide and then I go clockwise to tighten and I have one more\"\n            },\n            {\n              \"sentence\" : \" adjustment which is the seat. I can adjust this board and backward so here I'm\",\n              \"id\" : \"76778DA2-45A9-42DF-BCE7-C54AAD12863A\",\n              \"start\" : 54.719999999999999,\n              \"end\" : 61.960000000000001\n            },\n            {\n              \"sentence\" : \" going camera clockwise to loosen. I also have numbers here that can give me a\",\n              \"end\" : 68.739999999999995,\n              \"start\" : 61.960000000000001,\n              \"id\" : \"FF408FCB-22DF-4F28-A58E-F1B76015E872\"\n            },\n            {\n              \"id\" : \"03FA9933-C09C-48F9-81AF-67B0E3C0AFD9\",\n              \"end\" : 75.280000000000001,\n              \"sentence\" : \" guide and then tighten.\",\n              \"start\" : 68.739999999999995\n            }\n          ]\n        }\n      ]\n    }\n  ],\n  \"assetClassId\" : 2242,\n  \"id\" : 6571\n}\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc1622ab-2d0b-429e-9465-5d6f13a33f06"},{"name":"Get template with version by id","id":"83ed6993-a875-47d3-81a3-9b09b95d45b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($id: Int!) {\n  templateVersionById(id: $id) { \n    id\n    title\n    author {\n      id\n    }\n    updatedBy {\n      id\n      dateModified\n      avatarDetails {\n        id\n        url\n      }\n    }\n    createdBy {\n      id\n    }\n    assetClassId\n    customEvidence {\n      id\n      name\n    }\n    steps {\n      additionalFields\n      step\n      title\n      noteTypesOrder\n      requiredEvidence\n      evidenceRequirements\n      highlights {\n        id\n        position\n        rotation\n        type\n        data\n      }\n      notes {\n        autoplay\n        id\n        userId\n        animationName\n        modelViewId\n        type\n        meterRequirements {\n          id\n          value\n          evaluationType\n          meterId\n        }\n      }\n    }\n    actualVersion {\n      id\n      name\n      state\n      description\n      rootTemplateId\n      templateId\n      activities {\n        id\n        action\n        comment\n        createdByUser {\n          id\n          firstName\n          lastName\n          avatarDetails {\n            id\n            url\n          }\n          isOnline\n        }\n        createdAt\n      }\n    }\n    versions {\n      id\n      name\n      state\n      description\n      rootTemplateId\n      templateId\n      activities {\n        id\n        action\n        comment\n        createdByUser {\n          id\n          firstName\n          lastName\n          avatarDetails {\n            id\n            url\n          }\n          isOnline\n        }\n        createdAt\n      }\n    }\n  }\n}\n","variables":"{\n        \"id\": 5680\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"83ed6993-a875-47d3-81a3-9b09b95d45b0"},{"name":"Get template with version by root id and version name","id":"12a81c8e-650a-412f-9dd3-74a22bbc18bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($templateWithVersionByVersionName: TemplateWithVersionByVersionNameInput!) {\n  templateWithVersionByVersionName(templateWithVersionByVersionName: $templateWithVersionByVersionName) {\n    id\n    title\n    author {\n      id\n    }\n    updatedBy {\n      id\n      dateModified\n      avatarDetails {\n        id\n        url\n      }\n    }\n    createdBy {\n      id\n    }\n    assetClassId\n    customEvidence {\n      id\n      name\n    }\n    steps {\n      additionalFields\n      step\n      title\n      noteTypesOrder\n      requiredEvidence\n      evidenceRequirements\n      highlights {\n        id\n        position\n        rotation\n        type\n        data\n      }\n      notes {\n        autoplay\n        id\n        userId\n        animationName\n        modelViewId\n        type\n        meterRequirements {\n          id\n          value\n          evaluationType\n          meterId\n        }\n      }\n    }\n    actualVersion {\n      id\n      name\n      state\n      description\n      rootTemplateId\n      templateId\n      activities {\n        id\n        action\n        comment\n        createdByUser {\n          id\n          firstName\n          lastName\n          avatarDetails {\n            id\n            url\n          }\n          isOnline\n        }\n        createdAt\n      }\n    }\n    versions {\n      id\n      name\n      state\n      description\n      rootTemplateId\n      templateId\n      activities {\n        id\n        action\n        comment\n        createdByUser {\n          id\n          firstName\n          lastName\n          avatarDetails {\n            id\n            url\n          }\n          isOnline\n        }\n        createdAt\n      }\n    }\n  }\n}\n","variables":"{\n        \"templateWithVersionByVersionName\": {\n            \"rootTemplateId\": 5680,\n            \"versionName\": \"ver2\"\n        }\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"12a81c8e-650a-412f-9dd3-74a22bbc18bb"},{"name":"Get Versions page","id":"5cf61af4-d3f3-4b38-b697-8b57a31df52f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query(\n  $itemsPerPage: Int\n  $pageNumber: Int\n  $filters: TemplateVersionsFiltersInput\n  $orderBy: String\n  $reverseOrder: Boolean\n  $search: TemplateVersionSearchInput\n  $sort: SortInput\n  $orgId: [Int]\n) {\n  allVersionsWithPagination(\n    itemsPerPage: $itemsPerPage\n    pageNumber: $pageNumber\n    filters: $filters\n    orderBy: $orderBy\n    reverseOrder: $reverseOrder\n    search: $search\n    sort: $sort\n    orgId: $orgId\n  ) {\n    id\n    title\n    createdAt\n    assetClass {\n      name\n      id\n    }\n    author {\n      id\n    }\n    customEvidence {\n      id\n      name\n    }\n    createdBy {\n      firstName\n      lastName\n      avatarDetails {\n        url\n      }\n    }\n    steps {\n      step\n      title\n      noteTypesOrder\n      requiredEvidence\n      evidenceRequirements\n      highlights {\n        id\n        position\n        rotation\n        type\n        data\n      }\n      notes {\n        autoplay\n        id\n        userId\n        animationName\n        modelViewId\n        type\n        meterRequirements {\n          id\n          value\n          evaluationType\n          meterId\n        }\n      }\n    }\n    actualVersion {\n      id\n      name\n      state\n      rootTemplateId\n      templateId\n      description\n      activities {\n        id\n        action\n        comment\n        createdByUser {\n          id\n          firstName\n          lastName\n          avatarDetails {\n            id\n            url\n          }\n          isOnline\n        }\n        createdAt\n      }\n    }\n    versions {\n      id\n      name\n      state\n      rootTemplateId\n      description\n      templateId\n      activities {\n        id\n        action\n        comment\n        createdByUser {\n          id\n          firstName\n          lastName\n          avatarDetails {\n            id\n            url\n          }\n          isOnline\n        }\n        createdAt\n      }\n    }\n  }\n}\n","variables":"{\n        \"pageNumber\": 1,\n        \"itemsPerPage\": 5,\n        \"filters\": {\n            \"assetClassId\": [],\n            \"status\": [\"draft\", \"published\"]\n        },\n        \"search\": {\n            \"all\": \"\"\n        },\n        \"sort\": {\n            \"propertyName\": \"id\",\n            \"reverse\": true\n        },\n        \"orgId\": [1]\n    }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5cf61af4-d3f3-4b38-b697-8b57a31df52f"},{"name":"Get filters","id":"fe7a3cae-6ca1-464f-aa76-e772d5d4295d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($orgId: [Int]) {\n  templateVersionFilters(orgId: $orgId) {\n    assetClassId {\n      id\n      name\n    }\n    valueListEvidences {\n      id\n      name\n    }\n  }\n}\n","variables":"{\"orgId\": [2]}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe7a3cae-6ca1-464f-aa76-e772d5d4295d"},{"name":"Duplicate template","id":"259ffc7a-b156-4285-b7ae-c83c27c17210","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($templateId: Int!, $versionName: String!) {\n  copyTemplateWithVersion(templateId: $templateId, versionName: $versionName) {\n    rootTemplateId\n    name\n  }\n}\n","variables":"{\n  \"templateId\": 5680,\n  \"versionName\": \"dup1\"\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"259ffc7a-b156-4285-b7ae-c83c27c17210"},{"name":"Edit version state","id":"dff2866c-555d-42b9-86fd-83a7baf7033b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: TemplateVersionSetStateInput!) {\n    updatedVersionState(data: $data)\n    }","variables":"{\n        \"data\": {\n            \"versionId\": 5339,\n            \"action\": \"submitted\"\n        }\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dff2866c-555d-42b9-86fd-83a7baf7033b"},{"name":"Create new draft","id":"898f8aa4-6a32-45a5-ad2f-dcb00ba36fdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: NewDraftInput!) {\n    createNewDraft(data: $data) {\n        templateId, \n        rootTemplateId, \n        name\n    } \n}","variables":"{\n        \"data\": {\n            \"versionName\": \"212\",\n            \"templateId\": 5662,\n            \"rootTemplateId\": 3554\n        }\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"898f8aa4-6a32-45a5-ad2f-dcb00ba36fdf"},{"name":"Delete draft","id":"0ee0315d-02eb-4cb7-87a3-40d18c7b28d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($templateId: Int!) {\n    deleteDraft(id: $templateId)\n    }","variables":"{\n    \"templateId\": 5684\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ee0315d-02eb-4cb7-87a3-40d18c7b28d8"},{"name":"pre-select asset class for import zip","id":"7471686d-08e9-4655-b228-f468e52e3987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($path: String!, $orgId: [Int]) {\n  preSelectAssetClassForImportTemplate(path: $path, orgId: $orgId) {\n    preSelectedAssetClass {\n      id\n      name\n      make\n      model\n      orgs {\n        id\n        name\n      }\n    }\n    zipData {\n      assetClass {\n        name\n      }\n      template {\n        title\n      }\n    }\n  }\n}\n","variables":"{\n  \"path\": \"\",\n  \"orgId\": [1]\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7471686d-08e9-4655-b228-f468e52e3987"},{"name":"pre-select asset classes for import zip","id":"614d962f-231f-472c-99f1-91f7844ff5e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($path: String!, $orgId: [Int]) {\n  preSelectAssetClassesForImportTemplate(path: $path, orgId: $orgId) {\n    templatesWithPreselectedAssetClass {\n      title\n      preSelectedAssetClass {\n        id\n        name\n        make\n        model\n        orgs {\n          id\n          name\n        }\n      }\n    }\n  }\n}\n","variables":"{\n  \"path\": \"\",\n  \"orgId\": [1]\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"614d962f-231f-472c-99f1-91f7844ff5e4"},{"name":"Export template zip","id":"03b53c13-698f-4457-a424-aded10a2ef5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"},{"key":"sid","value":"022SX1VKubyh0rwCAAAF","description":"<p>sid from user_connected socket event, pass it to get  \"zip_export\" socket event</p>\n"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: ExportZipInputType!) {\n    exportZip(data: $data)\n}\n","variables":"{\n   \"data\":{\"templateId\": 6081}\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"03b53c13-698f-4457-a424-aded10a2ef5e"},{"name":"Import template zip multiple preselected asset classes","id":"9e793033-7c87-4bf3-bdeb-289e4f273411","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation (\n  $data: ImportZipMultipleAssetClassesInputType!\n  $orgId: [Int]\n  $force: Boolean\n) {\n  importZipWithMultiplePreselectedAssetClasses(\n    data: $data\n    orgId: $orgId\n    force: $force\n  )\n}\n","variables":"{\n        \"data\": {\n            \"path\": \"uploads/test/imported_files/d8a11b18-2305-4744-aea5-af7cebca8d3d/\",\n            \"assetClassesId\": [2700,2700]\n        },\n        \"orgId\": [\n            13, 18\n        ],\n        \"force\": false\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/upload/unzip","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","upload","unzip"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9e793033-7c87-4bf3-bdeb-289e4f273411"},{"name":"Import template zip","id":"7e0ec47d-c33d-4f1e-83c9-e19e551f77fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($data: ImportZipInputType!, $orgId: [Int], $force: Boolean) {\n  importZip(data: $data, orgId: $orgId, force: $force)\n}\n","variables":"{\n        \"data\": {\n            \"path\": \"uploads/test/imported_files/f9693b3e-1e82-4803-83ff-92b4ddbc7b1f/\",\n            \"assetClassId\": 2597\n        },\n        \"orgId\": [\n            1\n        ],\n        \"force\": false\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/upload/unzip","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","upload","unzip"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e0ec47d-c33d-4f1e-83c9-e19e551f77fa"}],"id":"76aaf105-9ce5-4b38-b6b4-af58d22a2c9c","_postman_id":"76aaf105-9ce5-4b38-b6b4-af58d22a2c9c","description":""},{"name":"Work","item":[{"name":"Add job","id":"ed8dd2c4-370d-4ece-bd67-71de6c8ba04f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($job: JobInput!, $orgId: [Int]) { \n    addJob (data: $job, orgId: $orgId) \n    }","variables":"{\n  \"job\": {\n    \"title\": \"Postman Work\",\n    \"locationId\": 2540,\n    \"priority\": \"2\",\n    \"assignedUserId\": 167,\n    \"jobTemplate\": 5662,\n    \"assetId\": 1864\n  },\n  \"orgId\": [1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ed8dd2c4-370d-4ece-bd67-71de6c8ba04f"},{"name":"Assign job to user","id":"e76b5700-7f6e-4f61-980f-1e506eff1df9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($jobId: Int!,$userId: Int!) {\n    assignUser(jobId: $jobId, userId: $userId)\n    }","variables":"{\n    \"jobId\": 150895,\n    \"userId\": 167\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e76b5700-7f6e-4f61-980f-1e506eff1df9"},{"name":"Update job","id":"4ca1ba80-d901-4006-b84e-822efa486e3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: JobInput!) {\n    updateJob(data: $data)\n    }","variables":"{\n      \"data\": {\n        \"id\": 150895,\n        \"newJobPromptCancelled\": false\n      }\n    }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ca1ba80-d901-4006-b84e-822efa486e3b"},{"name":"Start job","id":"37af366d-b62c-4086-835a-ed0d00298e5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($jobId: Int!) {\n    startJob(jobId: $jobId)\n    }","variables":"{\n    \"jobId\": 150895\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"37af366d-b62c-4086-835a-ed0d00298e5a"},{"name":"Start jobs step","id":"c0c07bae-dc65-423b-9311-f20ce8afb7db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($jobId: Int!,$step: Int!) {\n    startJobStep(jobId: $jobId, step: $step)\n    }","variables":"{\n    \"jobId\": 150895,\n    \"step\": 1\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0c07bae-dc65-423b-9311-f20ce8afb7db"},{"name":"cancel job","id":"c164bc1c-0951-4657-b8c9-c3fc7b35c612","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($jobId: Int!) {\n    cancelJob(jobId: $jobId)\n    }","variables":"{\n        \"jobId\": 150895\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c164bc1c-0951-4657-b8c9-c3fc7b35c612"},{"name":"uncancel job","id":"0673201e-321d-4251-af05-7eca0398e46e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($jobId: Int!) {\n    uncancelJob(jobId: $jobId)\n    }","variables":"{\n        \"jobId\": 150895\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0673201e-321d-4251-af05-7eca0398e46e"},{"name":"Cancel old job create new","id":"e0f66d05-000f-49cc-b31a-e854d589f442","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($jobId: Int!) {\n    cancelOldJobCreateNew(jobId: $jobId)\n    }","variables":"{\n        \"jobId\": 150895\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0f66d05-000f-49cc-b31a-e854d589f442"},{"name":"Add job modal","id":"f805ea61-75af-4c44-9489-fdf9861ceb9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($editorial: Boolean, $orgId: [Int]) {\n    addJobModal (editorial: $editorial, orgId: $orgId) {\n        templates{id, title, assetClassId} \n    }\n}","variables":"{\n      \"editorial\": true,\n      \"orgId\": [1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f805ea61-75af-4c44-9489-fdf9861ceb9a"},{"name":"Jobs filters","id":"51b90660-17b3-42d7-b6be-a5473ae9caa3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($filters: JobsFiltersInput, $orgId: [Int]) {\n    jobFilters(filters: $filters, orgId: $orgId) {\n        locationId {\n            id\n            name\n        }\n        priority\n        assetId {\n            id\n            assetTagId\n            templates\n        }\n        startDate {\n            from\n            to\n        }\n        completionDate {\n            from\n            to\n        }\n        assetClassId {\n            id\n            name\n        }\n        status\n        workItemType\n        assignedUserId {\n            id\n            firstName\n            lastName\n        }\n        templates {\n            template {\n                id\n                title\n            }\n            versions {\n                id\n                name\n                state\n            }\n        }\n    }\n}\n","variables":"{\n        \"filters\": {\n            \"status\": [\n                \"InProgress\",\n                \"Assigned\",\n                \"Unassigned\"\n            ]\n        },\n        \"orgId\": [1]\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"51b90660-17b3-42d7-b6be-a5473ae9caa3"},{"name":"Get job by id","event":[{"listen":"test","script":{"id":"6d6bca78-7398-41b2-981d-af3613f6958d","exec":["pm.test(\"Contain asset class models\", function () {","    pm.expect(pm.response.json().data.job.template.assetClass.models).to.be.an('array');","});","","pm.test(\"Contain customEvidence in job level\", function () {","    pm.expect(pm.response.json().data.job.customEvidence).to.be.an('array');","});","","pm.test(\"Contain customEvidence in template level\", function () {","    pm.expect(pm.response.json().data.job.template.customEvidence).to.be.an('array');","});"],"type":"text/javascript","packages":{}}}],"id":"d64503ec-dd29-45ad-81df-0c608accb9bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($id: Int!) {\n  job(id: $id) {\n    id\n    parentJobId\n    assetId\n    autoplay\n    locationId\n    elapsedTime\n    completedStepPercent\n    title\n    description\n    priority\n    externalId\n    templateId\n    jobType\n    creationDate\n    startDate\n    completionDate\n    status\n    assignedUser\n    associatedGroupChatId\n    teamSetupCompleted\n    workItemType\n    hasOpenFaults\n    newJobPromptCancelled\n    faults {\n      id\n      resolvedAt\n      description\n      createdByUserId\n      jobStepId\n    }\n    asset {\n      id\n      assetTagId\n      assetClass {\n        id\n        name\n        make\n        model\n      }\n      serialNumber\n    }\n    location {\n      locationId\n      name\n    }\n    template {\n      id\n      title\n      actualVersion {\n        id\n        name\n        state\n        rootTemplateId\n      }\n      versions {\n        id\n        name\n        state\n        rootTemplateId\n        description\n        createdAt\n        template {\n          id\n          title\n        }\n      }\n    }\n    jobsWithNotActualTemplateVersion {\n      id\n      template {\n        id\n        title\n        actualVersion {\n          id\n          name\n          state\n          rootTemplateId\n        }\n      }\n    }\n    customEvidence {\n      id\n      name\n      states\n    }\n    assignedUserDetails {\n      id\n      firstName\n      lastName\n      email\n      isOnline\n      avatarDetails {\n        url\n      }\n    }\n    contributors {\n      id\n      firstName\n      lastName\n      email\n      isOnline\n      avatarDetails {\n        url\n      }\n    }\n    notes {\n      id\n      step\n      note {\n        id\n        text\n        title\n        type\n        customEvidenceId\n        meterEvidence\n        meterEvidenceFault\n        shapeNote {\n          mode\n        }\n        model {\n          id\n          name\n        }\n        files {\n          id\n          name\n          url\n        }\n        choiceNotes {\n          id\n          title\n          assetClass {\n            name\n          }\n          template {\n            id\n            title\n          }\n        }\n        meter {\n          id\n          name\n          unit {\n            name\n            valueType\n            description\n          }\n        }\n      }\n    }\n    steps {\n      id\n      resolveFault\n      resolveDate\n      completed\n      startDate\n      completionDate\n      noteTypesOrder\n      title\n      step\n      assignedUser\n      requiredEvidence\n      evidenceRequirements\n      highlights {\n        type\n      }\n      repairerDetails {\n        id\n        firstName\n        lastName\n        email\n      }\n      meterRequirements {\n        value\n        evaluationType\n        meterId\n        jobStepId\n        noteId\n      }\n      notes {\n        id\n        text\n        type\n        title\n        autoplay\n        templateId\n        actionType\n        meter {\n          name\n        }\n        shapeNote {\n          mode\n        }\n        model {\n          id\n          name\n        }\n        files {\n          id\n          name\n          url\n        }\n        choiceNotes {\n          id\n          title\n          assetClass {\n            id\n            name\n          }\n          template {\n            id\n            title\n          }\n        }\n        model {\n          id\n          name\n        }\n        files {\n          name\n          fileType\n          url\n        }\n      }\n    }\n    org {\n      id\n      name\n    }\n  }\n}\n","variables":"{\n    \"id\": 146968\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>You can specify the number of page (by default the server will return the first page) and a quantity of jobs on page (by default is equal 5).\nAdditionaly you can specify search fields (locationId, assetId, assetClassId or completion status).</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d64503ec-dd29-45ad-81df-0c608accb9bb"},{"name":"Get jobs by assetId","id":"84cef28a-2d8d-40bc-b3d9-f6048f919cdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($assetId:Int, $orgId: [Int]){\n    jobs(assetId:$assetId, orgId: $orgId){\n       id\n        parentJobId\n        assetId\n        autoplay\n        locationId\n        elapsedTime\n        completedStepPercent\n        title\n        description\n        priority\n        externalId\n        templateId\n        jobType\n        creationDate\n        startDate\n        completionDate\n        status\n        assignedUser\n        associatedGroupChatId\n        teamSetupCompleted\n        workItemType\n        hasOpenFaults\n        newJobPromptCancelled\n        faults {\n            id\n            resolvedAt\n            description\n            createdByUserId\n            jobStepId\n        }\n        asset {\n            id\n            assetTagId\n            assetClass {\n                id\n                name\n                make\n                model\n            }\n            serialNumber\n        }\n        location {\n            locationId\n            name\n        }\n        template {\n            id\n            title\n            actualVersion {\n                id\n                name\n                state\n                rootTemplateId\n            }\n        }\n        jobsWithNotActualTemplateVersion {\n            id\n            template {\n                id\n                title\n                actualVersion {\n                    id\n                    name\n                    state\n                    rootTemplateId\n                }\n            }\n        }\n        customEvidence {\n            id\n            name\n            states\n        }\n        assignedUserDetails {\n            id\n            firstName\n            lastName\n            email\n            isOnline\n            avatarDetails {\n                url\n            }\n        }\n        contributors {\n            id\n            firstName\n            lastName\n            email\n            isOnline\n            avatarDetails {\n                url\n            }\n        }\n        notes {\n            id\n            step\n            note {\n                id\n                text\n                title\n                type\n                customEvidenceId\n                meterEvidence\n                meterEvidenceFault\n                shapeNote {\n                    mode\n                }\n                model {\n                    id\n                    name\n                }\n                files {\n                    id\n                    name\n                    url\n                }\n                choiceNotes {\n                    id\n                    title\n                    assetClass {\n                        name\n                    }\n                    template {\n                        id\n                        title\n                    }\n                }\n                meter {\n                    id\n                    name\n                    unit {\n                        name\n                        valueType\n                        description\n                    }\n                }\n            }\n        }\n        steps {\n            id\n            resolveFault\n            resolveDate\n            completed\n            startDate\n            completionDate\n            noteTypesOrder\n            title\n            step\n            assignedUser\n            requiredEvidence\n            evidenceRequirements\n            highlights {\n                type\n            }\n            repairerDetails {\n                id\n                firstName\n                lastName\n                email\n            }\n            meterRequirements {\n                value\n                evaluationType\n                meterId\n                jobStepId\n                noteId\n            }\n            notes {\n                id\n                text\n                type\n                title\n                autoplay\n                templateId\n                actionType\n                meter {\n                    name\n                }\n                shapeNote {\n                    mode\n                }\n                model {\n                    id\n                    name\n                }\n                files {\n                    id\n                    name\n                    url\n                }\n                choiceNotes {\n                    id\n                    title\n                    assetClass {\n                        id\n                        name\n                    }\n                    template {\n                        id\n                        title\n                    }\n                }\n                model {\n                    id\n                    name\n                }\n                files {\n                    name\n                    fileType\n                    url\n                }\n            }\n        }\n    }\n}","variables":"{\n\t\"assetId\": 1891,\n\t\"completed\": false,\n    \"orgId\": [1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"84cef28a-2d8d-40bc-b3d9-f6048f919cdd"},{"name":"Get page of jobs","id":"cec5afa2-0b96-4d72-a823-9c8e55c07acd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query(\n    $assetId: Int,\n    $assetClassId: Int,\n    $locationId: Int,\n    $completed: Boolean,\n    $itemsPerPage: Int,\n    $pageNumber: Int,\n    $filters: JobsFiltersInput,\n    $orderBy: String,\n    $reverseOrder: Boolean,\n    $search: JobSearchInput,\n    $sort: SortInput,\n    $orgId: [Int]\n) {\n    jobsPage(\n        assetId: $assetId,\n        assetClassId: $assetClassId,\n        locationId: $locationId,\n        completed: $completed,\n        itemsPerPage: $itemsPerPage,\n        pageNumber: $pageNumber,\n        filters: $filters,\n        orderBy: $orderBy,\n        reverseOrder: $reverseOrder,\n        search: $search,\n        sort: $sort,\n        orgId: $orgId\n    ) {\n        id\n        parentJobId\n        assetId\n        autoplay\n        locationId\n        elapsedTime\n        completedStepPercent\n        title\n        description\n        priority\n        externalId\n        templateId\n        jobType\n        creationDate\n        startDate\n        completionDate\n        status\n        assignedUser\n        associatedGroupChatId\n        teamSetupCompleted\n        workItemType\n        hasOpenFaults\n        newJobPromptCancelled\n        faults {\n            id\n            resolvedAt\n            description\n            createdByUserId\n            jobStepId\n        }\n        asset {\n            id\n            assetTagId\n            assetClass {\n                id\n                name\n                make\n                model\n            }\n            serialNumber\n        }\n        location {\n            locationId\n            name\n        }\n        template {\n            id\n            title\n            actualVersion {\n                id\n                name\n                state\n                rootTemplateId\n            }\n            versions {\n                id\n                name\n                state\n                rootTemplateId\n                description\n                createdAt\n            }\n        }\n        jobsWithNotActualTemplateVersion {\n            id\n            template {\n                id\n                title\n                actualVersion {\n                    id\n                    name\n                    state\n                    rootTemplateId\n                }\n            }\n        }\n        customEvidence {\n            id\n            name\n            states\n        }\n        assignedUserDetails {\n            id\n            firstName\n            lastName\n            email\n            isOnline\n            avatarDetails {\n                url\n            }\n        }\n        contributors {\n            id\n            firstName\n            lastName\n            email\n            isOnline\n            avatarDetails {\n                url\n            }\n        }\n        notes {\n            id\n            step\n            note {\n                id\n                text\n                title\n                type\n                customEvidenceId\n                meterEvidence\n                meterEvidenceFault\n                shapeNote {\n                    mode\n                }\n                model {\n                    id\n                    name\n                }\n                files {\n                    id\n                    name\n                    url\n                }\n                choiceNotes {\n                    id\n                    title\n                    assetClass {\n                        name\n                    }\n                    template {\n                        id\n                        title\n                    }\n                }\n                meter {\n                    id\n                    name\n                    unit {\n                        name\n                        valueType\n                        description\n                    }\n                }\n            }\n        }\n        steps {\n            id\n            resolveFault\n            resolveDate\n            completed\n            startDate\n            completionDate\n            noteTypesOrder\n            title\n            step\n            assignedUser\n            requiredEvidence\n            evidenceRequirements\n            highlights {\n                type\n            }\n            repairerDetails {\n                id\n                firstName\n                lastName\n                email\n            }\n            meterRequirements {\n                value\n                evaluationType\n                meterId\n                jobStepId\n                noteId\n            }\n            notes {\n                id\n                text\n                type\n                title\n                autoplay\n                templateId\n                actionType\n                meter {\n                    name\n                }\n                shapeNote {\n                    mode\n                }\n                model {\n                    id\n                    name\n                }\n                files {\n                    id\n                    name\n                    url\n                }\n                choiceNotes {\n                    id\n                    title\n                    assetClass {\n                        id\n                        name\n                    }\n                    template {\n                        id\n                        title\n                    }\n                }\n                model {\n                    id\n                    name\n                }\n                files {\n                    name\n                    fileType\n                    url\n                }\n            }\n        }\n        org {\n            id\n            name\n        }\n    }\n}\n","variables":"{\n        \"pageNumber\": 1,\n        \"itemsPerPage\": 3,\n        \"filters\": {\n            \"locationId\": [],\n            \"priority\": [],\n            \"assetId\": [],\n            \"faultFlag\": [],\n            \"assetClass\": [],\n            \"status\": [\n                \"Assigned\",\n                \"InProgress\",\n                \"Unassigned\"\n            ],\n            \"assignedUserId\": [],\n            \"startDate\":{\n                \"from\":\"2024-08-07\",\n                \"to\":\"2024-08-07\"\n            }\n        },\n        \"sort\": {\n            \"propertyName\": \"id\",\n            \"reverse\": true\n        },\n        \"search\": {},\n        \"orgId\": [1]\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>You can specify the number of page (by default the server will return the first page) and a quantity of jobs on page (by default is equal 5).\nAdditionaly you can specify search fields (locationId, assetId, assetClassId or completion status).</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cec5afa2-0b96-4d72-a823-9c8e55c07acd"},{"name":"Get job users by template id","id":"9929ea85-fb4c-4fa3-823d-4ae8d8af910f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/job-history-users?templateId=5689","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","job-history-users"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"key":"templateId","value":"5689"}],"variable":[]}},"response":[],"_postman_id":"9929ea85-fb4c-4fa3-823d-4ae8d8af910f"},{"name":"Set elapsed time","id":"1df8e0dd-f8fa-4f4a-912c-40ace32ed260","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $elapsedTime: Int!) {\n    setElapsedTime(id: $id, elapsedTime: $elapsedTime)\n    }","variables":"{\n    \"id\": 150896,\n    \"elapsedTime\": 55555\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1df8e0dd-f8fa-4f4a-912c-40ace32ed260"},{"name":"Complete job step","id":"19db15c2-82ca-4fdc-938b-61099100193e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation (\n    $jobId: Int!,\n    $step: Int!,\n    $completed: Boolean,\n    $compliant: Boolean,\n    $supportedEvidence: [String]\n) {\n    completeJobStep (\n        jobId: $jobId,\n        step: $step,\n        completed: $completed,\n        compliant: $compliant,\n        supportedEvidence: $supportedEvidence\n    )\n}\n","variables":"{\n  \"jobId\": 150902,\n  \"step\": 1,\n  \"supportedEvidence\": \"Pen\",\n  \"completed\": true,\n  \"compliant\": true\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>QUERY PARAMETER</th>\n<th>TYPE</th>\n<th>REQUIRED</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>jobId</code></td>\n<td>String</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td><code>step</code><br />The step number in the job.</td>\n<td>Integer</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td><code>completed</code><br />Indicates whether the operator has completed the step.</td>\n<td>Boolean</td>\n<td><strong>Required</strong> only for Operator</td>\n</tr>\n<tr>\n<td><code>compliant</code><br />Indicates whether the inspector checked the step.</td>\n<td>Boolean</td>\n<td><strong>Required</strong> only for Inspector</td>\n</tr>\n<tr>\n<td><code>faultFlag</code><br />Indicates if there is the fault in the step.</td>\n<td>Boolean</td>\n<td><em>Optional</em></td>\n</tr>\n<tr>\n<td><code>faultDescription</code></td>\n<td>String</td>\n<td><em>Optional</em></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"19db15c2-82ca-4fdc-938b-61099100193e"},{"name":"Add jobs notes","id":"bd9bc399-5124-4c44-ba9f-6b6151178734","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($notes: [JobNoteInput!]!) {\n    addNotes(notes: $notes)\n    }","variables":"{\n  \"notes\": [\n    {\n      \"jobId\": 150903,\n      \"step\": 1,\n      \"type\": \"text\",\n      \"title\": \"Text note\",\n      \"text\": \"<p>dd</p>\"\n    },\n    {\n      \"jobId\": 150903,\n      \"step\": 1,\n      \"type\": \"photo\",\n      \"title\": \"st4\",\n      \"text\": \"\",\n      \"files\": 49527\n    },\n    {\n      \"jobId\": 150903,\n      \"step\": 1,\n      \"type\": \"video\",\n      \"title\": \"134822 (1080p)\",\n      \"text\": \"\",\n      \"files\": 45590\n    },\n    {\n      \"jobId\": 150903,\n      \"step\": 1,\n      \"type\": \"audio\",\n      \"title\": \"pogodinu\",\n      \"text\": \"\",\n      \"files\": 51164\n    },\n    {\n      \"meter\": 2314,\n      \"meterEvidence\": \"5\",\n      \"fault\": true,\n      \"assetId\": 1864,\n      \"meterOriginal\": \"\",\n      \"jobId\": 150903,\n      \"step\": 1,\n      \"type\": \"meter\",\n      \"title\": \"jhf\",\n      \"text\": \"\"\n    }\n  ]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd9bc399-5124-4c44-ba9f-6b6151178734"},{"name":"Add jobs note V2","id":"0d25add2-7825-4cba-b50e-491e7974238f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: JobNoteInput!) {\n    addNoteV2(data: $data){id,jobNoteId}\n    }","variables":"{\n  \t\"id\":2,\n    \"data\": {\n      \"jobId\": 150902,\n      \"step\": 2,\n      \"type\": \"text\",\n      \"title\": \"Text note\",\n      \"text\": \"<p>dd</p>\"\n    }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0d25add2-7825-4cba-b50e-491e7974238f"},{"name":"Add jobs note","id":"9b7cf521-e0dd-46f0-9e9f-f486cbc57cc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: JobNoteInput!) {\n    addNote(data: $data)\n    }","variables":"{\n  \t\"id\":2,\n    \"data\": {\n      \"jobId\": 150902,\n      \"step\": 2,\n      \"type\": \"text\",\n      \"title\": \"Text note\",\n      \"text\": \"<p>dd</p>\"\n    }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b7cf521-e0dd-46f0-9e9f-f486cbc57cc0"},{"name":"Add Note With Response","id":"ea854cb4-1a89-4573-b43e-d45520a00af7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: JobNoteInput!) {\n    addNoteWithResponse(data: $data)\n    }","variables":"{\n        \"data\": {\n            \"jobId\": 150903,\n            \"step\": 1,\n            \"title\": \"1\",\n            \"text\": \"1\",\n            \"type\": \"meter\",\n            \"assetId\": null,\n            \"files\": [],\n            \"meterEvidence\": \"\",\n            \"fault\": false\n        }\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea854cb4-1a89-4573-b43e-d45520a00af7"},{"name":"Delete job notes (evidences)","id":"143dc310-41bb-4c7d-ba4f-df0dc6296a52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($jobNoteIds: [Int!]!) {\n    deleteJobNotes(jobNoteIds: $jobNoteIds)\n    }","variables":"{\n        \"jobNoteIds\": [\n            22204,\n            22202\n        ]\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"143dc310-41bb-4c7d-ba4f-df0dc6296a52"},{"name":"Delete step note","id":"320ce672-0be0-4918-8ac3-558abd893254","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteStepNote(noteId: $data)\n    }","variables":"{\n    \"data\": 38443\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"320ce672-0be0-4918-8ac3-558abd893254"},{"name":"Change Team Setup Status","id":"c98b0a1a-d5fb-4fd1-a6ea-a3abdf9a2e5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($jobId: Int!, $completed: Boolean!) { \n    changeTeamSetupStatus (jobId: $jobId, completed: $completed) \n    }","variables":"{\n  \"jobId\": 150902,\n  \"completed\": false\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c98b0a1a-d5fb-4fd1-a6ea-a3abdf9a2e5d"},{"name":"Update JobStep (workingTogether reassigne step)","id":"79bf6057-0c82-4fd7-8912-5612803e905f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: JobStepInput!) {\n    updateJobStep (id: $id, data: $data )\n    }","variables":"{\n        \"id\": 456845,\n        \"data\": {\n            \"assigned_user\": 539\n        }\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"79bf6057-0c82-4fd7-8912-5612803e905f"},{"name":"Get Job Team Setup Status","event":[{"listen":"test","script":{"id":"e4eeba3d-ee10-407e-a4e3-23cdbd95decf","exec":["pm.test(\"Contain asset class models\", function () {","    pm.expect(pm.response.json().data.job.template.assetClass.models).to.be.an('array');","});","","pm.test(\"Contain customEvidence in job level\", function () {","    pm.expect(pm.response.json().data.job.customEvidence).to.be.an('array');","});","","pm.test(\"Contain customEvidence in template level\", function () {","    pm.expect(pm.response.json().data.job.template.customEvidence).to.be.an('array');","});"],"type":"text/javascript"}}],"id":"e239c864-c9b8-4a26-bcc0-557365b4a760","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"jobId\": 150902\n}"},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/workingTogether/handOffStatuses/{{VERSION}}","description":"<p>You can specify the number of page (by default the server will return the first page) and a quantity of jobs on page (by default is equal 5).\nAdditionaly you can specify search fields (locationId, assetId, assetClassId or completion status).</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","workingTogether","handOffStatuses","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e239c864-c9b8-4a26-bcc0-557365b4a760"},{"name":"Add tasks","id":"f5839133-e49f-4b15-8586-34277da23e1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: JobInput!, $faultId: Int, $orgId: [Int]) {\n    addTask(data: $data, faultId: $faultId, orgId: $orgId)\n    }","variables":"{\n  \"data\": {\n    \"title\": \"Description Postman\",\n    \"locationId\": 2540,\n    \"priority\": \"1\",\n    \"assignedUserId\": 167,\n    \"assetId\": 1891\n  },\n  \"orgId\": [1]\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5839133-e49f-4b15-8586-34277da23e1b"},{"name":"Reopen task","id":"07c90546-59fb-4517-97a6-2b84f00f8da6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!) {\n    reopenTask(id: $id)\n    }","variables":"{\n        \"id\": 150898\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"07c90546-59fb-4517-97a6-2b84f00f8da6"},{"name":"Delete job or Task","id":"1869cd2e-5ed4-423a-97b5-6f5122f822f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteJob(id: $data)\n    }","variables":"{\n    \"data\": 150899\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1869cd2e-5ed4-423a-97b5-6f5122f822f3"},{"name":"Mark Fault for Step","id":"cea35ee8-de6a-44db-b970-d9ce59aeaf45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation(\n    $jobId: Int!\n    $step: Int!\n    $faultDescription: String!\n){\n    setFaultToStep(\n        jobId: $jobId,\n        step: $step,\n        faultDescription: $faultDescription\n    )\n}\n","variables":"{\n    \"jobId\": 150902,\n    \"step\": 2,\n    \"faultDescription\": \"Something went wrong\"\n  }\n"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cea35ee8-de6a-44db-b970-d9ce59aeaf45"},{"name":"Resolve step Fault","id":"84b763bf-5b6b-4161-9fae-0907191a5f73","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation( $jobId: Int!, $step: Int!) {\n    resolveFault(jobId: $jobId, step: $step)\n    }","variables":" {\n    \"jobId\": 150902,\n    \"step\": 2\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>QUERY PARAMETER</th>\n<th>TYPE</th>\n<th>REQUIRED</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>jobId</code></td>\n<td>Integer</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td><code>step</code><br />The step number in the job with the fault.</td>\n<td>Integer</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"84b763bf-5b6b-4161-9fae-0907191a5f73"},{"name":"Remove resolved status for Fault","id":"84268f1d-eef0-4418-8bba-56563865caaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation( $jobId: Int!, $step: Int!) {\n    removeResolvedFault(jobId: $jobId, step: $step)\n    }","variables":" {\n    \"jobId\": 150902,\n    \"step\": 2\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>QUERY PARAMETER</th>\n<th>TYPE</th>\n<th>REQUIRED</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>jobId</code></td>\n<td>Integer</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td><code>step</code><br />The step number in the job with the resolved fault.</td>\n<td>Integer</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"84268f1d-eef0-4418-8bba-56563865caaf"},{"name":"Clean fault flag","id":"6abe8b33-fa68-4c56-a50c-361285d112bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation( $jobId: Int!, $step: Int!) {\n    removeFaultFromStep(jobId: $jobId, step: $step)\n    }","variables":" {\n    \"jobId\": 150902,\n    \"step\": 2\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>QUERY PARAMETER</th>\n<th>TYPE</th>\n<th>REQUIRED</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>jobId</code></td>\n<td>Integer</td>\n<td><strong>Required</strong></td>\n</tr>\n<tr>\n<td><code>step</code><br />The step number in the job with the fault.</td>\n<td>Integer</td>\n<td><strong>Required</strong></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6abe8b33-fa68-4c56-a50c-361285d112bb"}],"id":"63603a5c-ab76-4170-a49c-03dfdabc8bb5","_postman_id":"63603a5c-ab76-4170-a49c-03dfdabc8bb5","description":""},{"name":"Locations","item":[{"name":"Add location","id":"6139d249-9264-4db6-bd27-59378cd9ae3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($location: LocationInput!) {\n    addLocation(data: $location)\n    }","variables":"{\n    \"location\": {\n      \"name\": \"The name of location\",\n      \"description\": \"Location description\",\n      \"address\": \"location address\",\n      \"latitude\": 55.777,\n      \"longitude\": 47.555,\n      \"secure\": true,\n      \"forceOffline\": true,\n      \"restrictedEvidences\": [\"text\", \"video\"]\n    }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>Add location</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6139d249-9264-4db6-bd27-59378cd9ae3e"},{"name":"Update location","id":"a8740a62-7af4-4569-bebd-5bed71987a72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $location: LocationInput!) {\n    updateLocation(id: $id, data: $location)\n    }","variables":" {\n    \"id\": 2691,\n    \"location\": {\n      \"name\": \"New name of location\",\n      \"description\": \"Location new description\",\n      \"address\": \"location new address\"\n    }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>Update location</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8740a62-7af4-4569-bebd-5bed71987a72"},{"name":"Set favorite flag","id":"17f266a6-7f15-49b2-8f55-0dd3555d6913","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($locationId: Int!, $isFavorite: Boolean!) {\n    setFavoriteFlag(locationId: $locationId, isFavorite: $isFavorite)\n    }","variables":"    {\n        \"locationId\": 2691,\n        \"isFavorite\": true\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>Add location</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"17f266a6-7f15-49b2-8f55-0dd3555d6913"},{"name":"Get location by id","id":"42102e3e-2468-4ac4-bb2b-4cf2548a4bb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($id: Int){\n    location(id:$id){ \n        locationId, name, owner, isFavorite,\n        address, modelRotation, modelScale,\n        secure,\n        longitude, latitude, altitude, description,\n        associatedFiles{id, url},\n        childLocations{\n            locationId, name, owner, address, longitude,\n            latitude, altitude, description,\n            associatedFiles{id, url}\n        }\n    }\n}","variables":"{\n\t\"id\":  2685\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>Loations without parent locations become root.</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"42102e3e-2468-4ac4-bb2b-4cf2548a4bb7"},{"name":"Get list location w/ pagination","id":"21d063dc-3699-4804-b925-48d43e2c00d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($itemsPerPage: Int $pageNumber: Int, $search:LocationSearchInput, $sort: SortInput, $orgId: [Int]){\r\n    allLocationsWithPagination(itemsPerPage:$itemsPerPage, pageNumber:$pageNumber,search:$search, sort: $sort, orgId: $orgId) {\r\n        locationId,\r\n        orgId,\r\n        isFavorite,\r\n        childLocations {\r\n            locationId\r\n        }\r\n    }\r\n}","variables":"{\n\t\"pageNumber\": 1,\n\t\"itemsPerPage\": 3,\n\t\"search\":[],\n    \"sort\": {\"propertyName\": \"id\", \"reverse\": false},\n    \"orgId\": [1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>Returns location data that has been paginated.</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21d063dc-3699-4804-b925-48d43e2c00d0"},{"name":"Get list of locations","id":"04539c88-fa62-4cb5-86c9-09cf0a5f5d5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"{\n    locations {\n        locationId,\n        name,\n        altitude\n    },\n    assets {\n        assets {\n            id,\n            internalId,\n            locationId\n        }\n    },\n    jobs {\n        id,\n        completionDate\n    }\n}","variables":"{\n\t\"orderBy\": \"completion_date\",\n    \"orgId\": [2]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>Loations without parent locations become root.</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"04539c88-fa62-4cb5-86c9-09cf0a5f5d5b"},{"name":"Get list of allLocations","id":"f51e3c3d-46d8-46bd-b561-264030dc1d6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($assetClassId: Int, $orgId: [Int]) {\n    allLocations (assetClassId:$assetClassId, orgId:$orgId) {\n        locationId, name,orgId, address, longitude, latitude, altitude, description, parentLocationId, modelScale, modelRotation, associatedFiles{id, name, url, useMethod, fileType}, childLocations{, name, longitude, latitude, description, locationId}\n        }\n    }","variables":"{\n    \"orgId\": [1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","description":"<p>Loations without parent locations become root.</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f51e3c3d-46d8-46bd-b561-264030dc1d6e"},{"name":"Delete location","id":"a540c5c7-f0ba-47ad-9bbe-c49cd5ad5d19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteLocation(id: $data)\n    }","variables":"    {\n        \"data\": 2691\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a540c5c7-f0ba-47ad-9bbe-c49cd5ad5d19"}],"id":"98956438-14b8-4efb-aa54-219df202a569","_postman_id":"98956438-14b8-4efb-aa54-219df202a569","description":""},{"name":"Users","item":[{"name":"Update user","id":"7a08b245-51b5-4e13-bf3c-91c729e40b1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($data: UpdateUserInput!) {\n  updateUser(data: $data)\n}\n","variables":"{\n    \"data\": {\n      \"id\": 5\n\n    }\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a08b245-51b5-4e13-bf3c-91c729e40b1b"},{"name":"Get user by id","id":"d498a0fb-96d5-4d22-a467-67e378ae2804","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($id: Int!) {\n  getUserById(id: $id) {\n    # orgsHierarchy\n    id\n    email\n    firstName\n    org {\n        id\n    }\n    # lastName\n    # title\n    # description\n    # roles {\n    #   id\n    #   name\n    #   description\n    # }\n  }\n}\n","variables":"    {\n      \"id\": 5\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d498a0fb-96d5-4d22-a467-67e378ae2804"},{"name":"Get user with orgs","id":"7bbf1ec0-805d-4e31-8881-19d15d738c72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\n  user {\n    id\n    email\n    firstName\n    isAccountOwner\n    lastName\n    title\n    description\n    twoFactorEnabled\n    status\n    sawOnboarding\n    typeLicensePackage\n    pushNotification\n    avatarDetails {\n      id\n      url\n    }\n    optIn {\n      emailCommunications\n      expertsSite\n      optInEmail\n      optInDate\n    }\n    roles {\n      id\n      name\n      description\n    }\n    orgs {\n      id\n      name\n      description\n      parentId\n    }\n    orgsHierarchy\n    lastLoginOrgId\n  }\n}\n","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7bbf1ec0-805d-4e31-8881-19d15d738c72"},{"name":"Deactivate/Activate user","id":"4d4390a1-7cd4-4a05-8428-07deba3ae828","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($userId: Int!, $status: String!, $orgId: [Int], $force: Boolean) {\n  changeUserStatus(\n    userId: $userId\n    status: $status\n    orgId: $orgId\n    force: $force\n  )\n}\n","variables":"{\n\t\t\"orgId\": [\n\t\t\t1\n\t\t],\n\t\t\"status\": \"Deactivate\",\n\t\t\"userId\": 299,\n        \"force\": false \n\t}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d4390a1-7cd4-4a05-8428-07deba3ae828"},{"name":"Get users","id":"1de2a864-6ca0-41a9-a167-3d7688145ae1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($search: UserSearchInputType, $filters: UserFiltersInput) { users(search: $search, filters: $filters) { id, primaryOrg{id, name}, email, firstName, lastName, expireDate, title, description, twoFactorEnabled, enabled, isOnline, createdAt, avatarDetails {id, url}, roles {id, name, description}, orgs{id, name, description, level, parentId} } }","variables":"{\n  \"search\": {},\n  \"filters\": {\n\t\t\t\"enabled\": [\n\t\t\t\ttrue\n\t\t\t],\n            \"orgId\": [2],\n            \"primaryOrgId\": [2]\n\t\t}\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1de2a864-6ca0-41a9-a167-3d7688145ae1"},{"name":"Users with pagination","id":"290a21e0-fd0d-4204-9e05-ca6ae10f69b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($itemsPerPage: Int, $pageNumber: Int, $search: UserSearchInputType, $filters: UserFiltersInput) { usersWithPagination (itemsPerPage:$itemsPerPage, pageNumber:$pageNumber search:$search filters:$filters) { id, expireDate, email, firstName, lastName, title, description, twoFactorEnabled, lastOnline, enabled, lastPlatform, isAccountOwner, typeLicensePackage, connectStatus, lastLoginOrgId, orgs{id}, avatarDetails {id, url}, roles {id, name, description} } }","variables":"{\n\t\t\"filters\": {\n\t\t\t\"enabled\": [\n\t\t\t\ttrue\n\t\t\t],\n            \"primaryOrgId\": [1]\n\t\t},\n\t\t\"itemsPerPage\": 10,\n\t\t\"pageNumber\": 1,\n\t\t\"search\": {}\n\t}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"290a21e0-fd0d-4204-9e05-ca6ae10f69b8"},{"name":"Remove role from user","id":"8680efb1-576d-4d16-b1bb-446768ab3aa9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($userId: Int!, $roleId: Int!) {\n    removeRoleFromUser(userId: $userId, roleId: $roleId)\n    }","variables":"    {\n        \"userId\": 748,\n        \"roleId\": 7\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8680efb1-576d-4d16-b1bb-446768ab3aa9"},{"name":"Delete user","id":"b063def7-ae4c-401d-bee5-6d24c7bc6aeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($id: Int!, $force: Boolean) {\n  deleteUser(id: $id, force: $force)\n}\n","variables":"    {\n        \"id\": 645,\n        \"force\": false\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b063def7-ae4c-401d-bee5-6d24c7bc6aeb"},{"name":"Delete users","id":"57d123a2-b09c-43bc-824c-a4332a42656e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($ids: [Int], $force: Boolean) {\n  deleteUsers(ids: $ids, force: $force)\n}\n","variables":"{\n    \"ids\": [740, 739, 738],\n    \"force\": false \n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"57d123a2-b09c-43bc-824c-a4332a42656e"},{"name":"Turn push notification","id":"d68d9694-8f4b-4b5a-91e9-3f92213c961c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/turn-push-notification","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","turn-push-notification"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d68d9694-8f4b-4b5a-91e9-3f92213c961c"},{"name":"Update last login org id","id":"2db6ae99-cd86-41b6-9e59-5553ad7b52a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"client","value":"test","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation ($orgId: Int!) { updateLastLoginOrgId (orgId:$orgId) }","variables":"{\n    \"orgId\": 1\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2db6ae99-cd86-41b6-9e59-5553ad7b52a5"}],"id":"6124a798-d5c7-4872-9402-6b684f16557d","_postman_id":"6124a798-d5c7-4872-9402-6b684f16557d","description":""},{"name":"Role","item":[{"name":"Get list of roles","id":"4d9b4a52-d999-4942-84ce-52653a419bcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\n    roles {\n        id, name, description}\n        }","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d9b4a52-d999-4942-84ce-52653a419bcf"}],"id":"b058aa57-0a7e-49d2-af59-fd3ef982e54c","_postman_id":"b058aa57-0a7e-49d2-af59-fd3ef982e54c","description":""},{"name":"Personal profile","item":[{"name":"Recent Actitvity","id":"eee9b074-886e-4396-a0bb-d7175318cd90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ($location_id: Int, $limit: Int, $userIds: [Int], $entity_type: EnumEntityType, $web: Boolean, $page: Int, $entity_type_list: [String], $work_type_filter: enum_work_type_filter, $orgId: [Int]) { recentlyActivity (userIds: $userIds, location_id: $location_id, limit: $limit, entity_type: $entity_type, entity_type_list: $entity_type_list, work_type_filter: $work_type_filter, web: $web, page: $page, orgId: $orgId) { message, time, action, entityId, id, User{id, email, firstName, lastName, avatarDetails{url}}, Template{id, title, assetClass {name}, actualVersion{rootTemplateId, name}}, Asset{id, assetClass {name}, serialNumber, assetTagId}, AssetClass{id, name, make, model}, MeterEvidenceReport{id, meterName, assetClassName, assignedUserName}, Measurement{id, meterId, meter{name}, asset{id, serialNumber, assetClass{id,name}}}, Job{ id, status, completedStepPercent, creationDate, title, priority, workItemType, parentJobId, assignedUserDetails{firstName, lastName, avatarDetails{url}}, asset{assetClass{make, model}} }, Org{id, name, description, level} } }","variables":"{\n\t\t\"entity_type_list\": [],\n\t\t\"limit\": 40,\n\t\t\"orgId\": [\n\t\t\t1\n\t\t],\n\t\t\"page\": 1,\n\t\t\"web\": true,\n\t\t\"work_type_filter\": null\n\t}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eee9b074-886e-4396-a0bb-d7175318cd90"},{"name":"Add favorite entity","id":"c7b2bb0b-0097-41ec-90ac-71585af43687","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($assetId: Int, \n         $assetClassId: Int, \n         $contactId: Int, \n         $templateId: Int) {\n  addFavoriteEntity(\n    assetId: $assetId, \n    assetClassId: $assetClassId, \n    contactId: $contactId, \n    templateId: $templateId\n  )\n}\n","variables":"{\n        \"assetClassId\": 2681\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c7b2bb0b-0097-41ec-90ac-71585af43687"},{"name":"Get favorite entity","id":"ccf1f2d3-0f98-48cd-8c89-bdb7dfd93f4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($location_id: Int, $entity_type: EnumFavoriteEntity, $orgId: [Int]) {\n  favoriteEntities(location_id: $location_id, entity_type: $entity_type, orgId: $orgId) {\n    Location {\n      locationId\n      name\n      longitude\n      latitude\n      hasOpenFaults\n    }\n    Asset {\n      id\n      serialNumber\n      assetClassId\n      location {\n        locationId\n      }\n    }\n    Contact {\n      id\n      title\n      user_one\n      user_two\n      group_chat_users_ids\n    }\n    Template {\n      id\n      title\n      assetClass {\n        name\n      }\n    }\n    AssetClass {\n      id\n      name\n      make\n      model\n    }\n  }\n}\n","variables":"{\n    \"entity_type\": null,\n    \"orgId\": [1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ccf1f2d3-0f98-48cd-8c89-bdb7dfd93f4b"},{"name":"Remove favorite entity","id":"42b5ffca-0b73-4c81-923d-e011e90379f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($assetId: Int, \n         $assetClassId: Int, \n         $contactId: Int, \n         $templateId: Int) {\n  removeFavoriteEntity(\n    assetId: $assetId, \n    assetClassId: $assetClassId, \n    contactId: $contactId, \n    templateId: $templateId\n  )\n}\n","variables":"{\n    \"assetClassId\": 2681\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"42b5ffca-0b73-4c81-923d-e011e90379f5"}],"id":"8295ada7-7fdd-48d2-8db1-fdaa994992e7","_postman_id":"8295ada7-7fdd-48d2-8db1-fdaa994992e7","description":""},{"name":"CLIENT Auth","item":[{"name":"MS auth","item":[{"name":"HTML link for MS authorization","id":"409d0583-9394-4526-9a19-03a5c15ae89e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://test.taqdev/rest/dynamics/auth","urlObject":{"protocol":"https","path":["rest","dynamics","auth"],"host":["test","taqdev"],"query":[],"variable":[]}},"response":[],"_postman_id":"409d0583-9394-4526-9a19-03a5c15ae89e"},{"name":"MS request \"validationToken\"","id":"a9888149-2707-4e01-9ef7-c5446ca47ad0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"userId\": 167}"},"url":"https://test.taqdev/rest/dynamics/validateToken","urlObject":{"protocol":"https","path":["rest","dynamics","validateToken"],"host":["test","taqdev"],"query":[{"disabled":true,"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"a9888149-2707-4e01-9ef7-c5446ca47ad0"},{"name":"MS request \"me\"","id":"f217455f-4476-4a09-a2e4-ed44868947d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://graph.microsoft.com/v1.0/me","urlObject":{"protocol":"https","path":["v1.0","me"],"host":["graph","microsoft","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f217455f-4476-4a09-a2e4-ed44868947d8"},{"name":"Done Auth","id":"b7bd6654-1d19-454a-9264-afd35339cbc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://minsktest.taqmanifeststaging.com/done?access_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTAwLCJzdWJkb21haW4iOiJtaW5za3Rlc3QiLCJqdGkiOiIkMmEkMTAkQ2dhREZKSUpteDlwRGRtNkZsVW5KLmx1SFpHN3hmalYwbWo2dzF2R3RKODNvdXpHYnlpVk8iLCJtc1Rva2VuIjoiZXlKMGVYQWlPaUpLVjFRaUxDSnViMjVqWlNJNklrRlJRVUpCUVVGQlFVRkVRMjlOY0dwS1dISjRWSEU1VmtjNWRHVXROMFpZWHpWTmJHNXhWbEI0UTBscWNVRTBUR3hyYURGWVFVMDJSRU5QU1d4a1EzbG9ZWEZyUTB4eFowOXJhbEU0YVRGQ2JWSkJXV2xtZFVaSFdtRmlkbFo0VUd0MFVFTldXVnBrVEd4R00yczJOVGQ1V1ZCalgybEJRU0lzSW1Gc1p5STZJbEpUTWpVMklpd2llRFYwSWpvaVNFSjRiRGx0UVdVMlozaGhka05yWTI5UFZUSlVTSE5FVG1Fd0lpd2lhMmxrSWpvaVNFSjRiRGx0UVdVMlozaGhka05yWTI5UFZUSlVTSE5FVG1Fd0luMC5leUpoZFdRaU9pSm9kSFJ3Y3pvdkwyZHlZWEJvTG0xcFkzSnZjMjltZEM1amIyMHZJaXdpYVhOeklqb2lhSFIwY0hNNkx5OXpkSE11ZDJsdVpHOTNjeTV1WlhRdk4ySm1ZakJoWWpZdE5qYzFNQzAwWkRjNExXSXlaVFV0T0dVM05tWXdNMlExTXpjMEx5SXNJbWxoZENJNk1UVTFOakl3TkRZeE9Td2libUptSWpveE5UVTJNakEwTmpFNUxDSmxlSEFpT2pFMU5UWXlNRGcxTVRrc0ltRmpZM1FpT2pBc0ltRmpjaUk2SWpFaUxDSmhhVzhpT2lJME1scG5XVWhDSzNkamRHMVdUR2w1VjA5TUwyVllMMDgwUzI1UFJIUklkR3NyVVhaSGIyNTZVbVJaVEZodUx5OXZlRmxCSWl3aVlXMXlJanBiSW5CM1pDSmRMQ0poY0hCZlpHbHpjR3hoZVc1aGJXVWlPaUp0WVc1cFptVnpkQzFoY0hBaUxDSmhjSEJwWkNJNklqTTNaR0l4WmpkakxUbGxaamN0TkRFek15MWhaamhrTFRRNFlXUTROVGs1Wkdaak1pSXNJbUZ3Y0dsa1lXTnlJam9pTVNJc0ltWmhiV2xzZVY5dVlXMWxJam9pV21Gb1lYSmxibXR2SWl3aVoybDJaVzVmYm1GdFpTSTZJa0Z1WkhKbGFTSXNJbWx3WVdSa2NpSTZJakV6TkM0eE55NHlOaTR5TURZaUxDSnVZVzFsSWpvaVFXNWtjbVZwSUZwaGFHRnlaVzVyYnlJc0ltOXBaQ0k2SW1ZMVltTTRZakkxTFdZMll6QXROR1psTUMwNE1EWTJMVEprTUdRNFpUYzJaRFExWkNJc0luQnNZWFJtSWpvaU5TSXNJbkIxYVdRaU9pSXhNREF6UWtaR1JFRTRRelF4UWtKR0lpd2ljMk53SWpvaVUybDBaWE11VFdGdVlXZGxMa0ZzYkNCVGFYUmxjeTVTWldGa0xrRnNiQ0JWYzJWeUxsSmxZV1FpTENKemFXZHVhVzVmYzNSaGRHVWlPbHNpYTIxemFTSmRMQ0p6ZFdJaU9pSnRiRUpCUkdsR1ZVdDZiRlpRVVhFMlJrRXdZalpsUm5aS2EzWlBNbEp5VmtwNmQxRXliVzVJWlV4cklpd2lkR2xrSWpvaU4ySm1ZakJoWWpZdE5qYzFNQzAwWkRjNExXSXlaVFV0T0dVM05tWXdNMlExTXpjMElpd2lkVzVwY1hWbFgyNWhiV1VpT2lKaGJtUnlaV2t1ZW1Gb1lYSmxibXR2UUhSaGNYUnBiR1V1WTI5dElpd2lkWEJ1SWpvaVlXNWtjbVZwTG5waGFHRnlaVzVyYjBCMFlYRjBhV3hsTG1OdmJTSXNJblYwYVNJNklrdFZZWEJPWm1jNWEwVnBTSGh4WDFacExVdE5RVUVpTENKMlpYSWlPaUl4TGpBaUxDSjRiWE5mZEdOa2RDSTZNVFV3TmpZeE56SXdNWDAuSGM0TldkVTB4QVhVOGxfV3FEQ3FCbDJNMmJQQkRPUnpreW1yNzVWR0ZTM0JiZ1k2TEp5SVdxbHdLU0VDa21DMFpvRGhMRU94WGxtYi1RNW9Ibl94LVlHMFhuWE5zZHZYU1ZxZm14ZGt2YmszUWlUWFNoTlZ6SzF3Q3JMdWFYS1RzUUJ4Q2NIeUxNWjZ6NXNZeVVMN2dhSU9aeHNfUUtaZTctNTljUEJuRU5WMmNxLXVSUUtDNUxGTUJ5TTlYUWFFSmgxdTlBWE9oYkVYTHJGc3ZDNURkYmlCenJFczdaUGhVczNucXA1RE9EWWtKUXJEUmFoUjZIRm1NSVNxOENFQUFJaXVrcldOaG8tWGEtd243OUdyaXNEYURtd01TRmVYbjEwVkZmQTRsZW9KVEd3SEc3RVI4WE1TOGVuZ3A5M1MtUTFNZGZhNHBuRHNxbEpNcXlmYXh3IiwibXNSZXNvdXJjZSI6Imh0dHBzOi8vZ3JhcGgubWljcm9zb2Z0LmNvbS8iLCJtc1JlZnJlc2hUb2tlbiI6IkFRQUJBQUFBQUFEQ29NcGpKWHJ4VHE5Vkc5dGUtN0ZYVFFmVExrQWNadFp4WDhCSkFEVGJtX2c2RHhDMWlYWVBxeVZOc1pyYmhXNUNQQWhvNVBOek1SMlFQQlVFN21HUWdwSmMydFhVaEVOTlpZNTdvQjdMd0pyRWN6NjZtdUgxUVo1MW1GS0VtWXpIVk9femZsUDI3dk9lRjhjTjl3RzM5RGlpVGZqRWJ3OWExSlBySDRKRDFhZTdzemhxMmNyM1BiaFJWV3I2UE1mUW9jTkEwQ0F0bGx4TGoxTl9NRmVSRnJiVnZ2SC1tbkk3T1MxQlhFaS1xdTJjaHc3WU8tWlBwWjJaSFhKM2VnVFlkNXQzVUx1cjQ3UGJxYklEeXRzR21QdFNlc0hhVThrQXI3am1QUmQ5SVlJT2NIYmpUdnhlNmo2U0VmWnBYUWFHYXdlZ0pwSWd5U3dMX3NuNVlNUXoyMU8yaXBKSDNoV1A4TWlWQnpJR0lMU1h0YjVPZWtoVFdDWERLZElYVVNhak95N0x4RUtVY3RuY1ZyZlJzRENZa3pHZFJOV0RJWFM3dlNKT19JeXVXMzRUMUd4U0JmVXFMOWtVWHVKNGxEMkI4ajZGOW04Sm56VURPWjd4RnZhTXM3OEVIN3VfVnZzX1lwR1ZyWC1RSkF3NGdvbWpUTFI4QXE2VkpneE9reGhlWV8yMElDTUtkSkxBZVRWOUtfU1p1XzR3RUFyempRUVhBTGFRNm9NNEgxVE1MOFFjU2IyTkZ0SFF3amRYTG5EMnJmS1dSU2NleDR1OXlqSjFIRW9jSlFxUXB1Uko2NnBGa05kNTEwdDE4YlJNX1B5YmxXX2lYd0p3OWxsc01EZnFyTng2d1RUWklKUlY0MVM2Q0I5c0phc0lzSDNUckR1QklpNFZ3LThSS2pJYjE4NVJUbjE5M3pvTDZSNi1pV3pmUmpaOElMbzNMejFIQWd1b0lXSU9DM1hOR2t4Z3RKaW1wQ1Y0TW91dDlpZ1lLTGlteEhwdGUtazZkZFluV1RLU0FrMXNBYkluclRXMGNXTUZuVm9vc3c5ZjJFeWgwUWxibUY5bVUxMGJkQnhWak9nRjRzOVEtWjN1SzJMbGVQTWdBQSIsImlhdCI6MTU1NjIwNDkyMCwiZXhwIjoxNTU2MjkxMzIwfQ.TJG9ITXBG-l0katKYiXUWc82xbvaZCS0vcRdArGJIy0&user_id=100&success=true","urlObject":{"protocol":"https","path":["done"],"host":["minsktest","taqmanifeststaging","com"],"query":[{"key":"access_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MTAwLCJzdWJkb21haW4iOiJtaW5za3Rlc3QiLCJqdGkiOiIkMmEkMTAkQ2dhREZKSUpteDlwRGRtNkZsVW5KLmx1SFpHN3hmalYwbWo2dzF2R3RKODNvdXpHYnlpVk8iLCJtc1Rva2VuIjoiZXlKMGVYQWlPaUpLVjFRaUxDSnViMjVqWlNJNklrRlJRVUpCUVVGQlFVRkVRMjlOY0dwS1dISjRWSEU1VmtjNWRHVXROMFpZWHpWTmJHNXhWbEI0UTBscWNVRTBUR3hyYURGWVFVMDJSRU5QU1d4a1EzbG9ZWEZyUTB4eFowOXJhbEU0YVRGQ2JWSkJXV2xtZFVaSFdtRmlkbFo0VUd0MFVFTldXVnBrVEd4R00yczJOVGQ1V1ZCalgybEJRU0lzSW1Gc1p5STZJbEpUTWpVMklpd2llRFYwSWpvaVNFSjRiRGx0UVdVMlozaGhka05yWTI5UFZUSlVTSE5FVG1Fd0lpd2lhMmxrSWpvaVNFSjRiRGx0UVdVMlozaGhka05yWTI5UFZUSlVTSE5FVG1Fd0luMC5leUpoZFdRaU9pSm9kSFJ3Y3pvdkwyZHlZWEJvTG0xcFkzSnZjMjltZEM1amIyMHZJaXdpYVhOeklqb2lhSFIwY0hNNkx5OXpkSE11ZDJsdVpHOTNjeTV1WlhRdk4ySm1ZakJoWWpZdE5qYzFNQzAwWkRjNExXSXlaVFV0T0dVM05tWXdNMlExTXpjMEx5SXNJbWxoZENJNk1UVTFOakl3TkRZeE9Td2libUptSWpveE5UVTJNakEwTmpFNUxDSmxlSEFpT2pFMU5UWXlNRGcxTVRrc0ltRmpZM1FpT2pBc0ltRmpjaUk2SWpFaUxDSmhhVzhpT2lJME1scG5XVWhDSzNkamRHMVdUR2w1VjA5TUwyVllMMDgwUzI1UFJIUklkR3NyVVhaSGIyNTZVbVJaVEZodUx5OXZlRmxCSWl3aVlXMXlJanBiSW5CM1pDSmRMQ0poY0hCZlpHbHpjR3hoZVc1aGJXVWlPaUp0WVc1cFptVnpkQzFoY0hBaUxDSmhjSEJwWkNJNklqTTNaR0l4WmpkakxUbGxaamN0TkRFek15MWhaamhrTFRRNFlXUTROVGs1Wkdaak1pSXNJbUZ3Y0dsa1lXTnlJam9pTVNJc0ltWmhiV2xzZVY5dVlXMWxJam9pV21Gb1lYSmxibXR2SWl3aVoybDJaVzVmYm1GdFpTSTZJa0Z1WkhKbGFTSXNJbWx3WVdSa2NpSTZJakV6TkM0eE55NHlOaTR5TURZaUxDSnVZVzFsSWpvaVFXNWtjbVZwSUZwaGFHRnlaVzVyYnlJc0ltOXBaQ0k2SW1ZMVltTTRZakkxTFdZMll6QXROR1psTUMwNE1EWTJMVEprTUdRNFpUYzJaRFExWkNJc0luQnNZWFJtSWpvaU5TSXNJbkIxYVdRaU9pSXhNREF6UWtaR1JFRTRRelF4UWtKR0lpd2ljMk53SWpvaVUybDBaWE11VFdGdVlXZGxMa0ZzYkNCVGFYUmxjeTVTWldGa0xrRnNiQ0JWYzJWeUxsSmxZV1FpTENKemFXZHVhVzVmYzNSaGRHVWlPbHNpYTIxemFTSmRMQ0p6ZFdJaU9pSnRiRUpCUkdsR1ZVdDZiRlpRVVhFMlJrRXdZalpsUm5aS2EzWlBNbEp5VmtwNmQxRXliVzVJWlV4cklpd2lkR2xrSWpvaU4ySm1ZakJoWWpZdE5qYzFNQzAwWkRjNExXSXlaVFV0T0dVM05tWXdNMlExTXpjMElpd2lkVzVwY1hWbFgyNWhiV1VpT2lKaGJtUnlaV2t1ZW1Gb1lYSmxibXR2UUhSaGNYUnBiR1V1WTI5dElpd2lkWEJ1SWpvaVlXNWtjbVZwTG5waGFHRnlaVzVyYjBCMFlYRjBhV3hsTG1OdmJTSXNJblYwYVNJNklrdFZZWEJPWm1jNWEwVnBTSGh4WDFacExVdE5RVUVpTENKMlpYSWlPaUl4TGpBaUxDSjRiWE5mZEdOa2RDSTZNVFV3TmpZeE56SXdNWDAuSGM0TldkVTB4QVhVOGxfV3FEQ3FCbDJNMmJQQkRPUnpreW1yNzVWR0ZTM0JiZ1k2TEp5SVdxbHdLU0VDa21DMFpvRGhMRU94WGxtYi1RNW9Ibl94LVlHMFhuWE5zZHZYU1ZxZm14ZGt2YmszUWlUWFNoTlZ6SzF3Q3JMdWFYS1RzUUJ4Q2NIeUxNWjZ6NXNZeVVMN2dhSU9aeHNfUUtaZTctNTljUEJuRU5WMmNxLXVSUUtDNUxGTUJ5TTlYUWFFSmgxdTlBWE9oYkVYTHJGc3ZDNURkYmlCenJFczdaUGhVczNucXA1RE9EWWtKUXJEUmFoUjZIRm1NSVNxOENFQUFJaXVrcldOaG8tWGEtd243OUdyaXNEYURtd01TRmVYbjEwVkZmQTRsZW9KVEd3SEc3RVI4WE1TOGVuZ3A5M1MtUTFNZGZhNHBuRHNxbEpNcXlmYXh3IiwibXNSZXNvdXJjZSI6Imh0dHBzOi8vZ3JhcGgubWljcm9zb2Z0LmNvbS8iLCJtc1JlZnJlc2hUb2tlbiI6IkFRQUJBQUFBQUFEQ29NcGpKWHJ4VHE5Vkc5dGUtN0ZYVFFmVExrQWNadFp4WDhCSkFEVGJtX2c2RHhDMWlYWVBxeVZOc1pyYmhXNUNQQWhvNVBOek1SMlFQQlVFN21HUWdwSmMydFhVaEVOTlpZNTdvQjdMd0pyRWN6NjZtdUgxUVo1MW1GS0VtWXpIVk9femZsUDI3dk9lRjhjTjl3RzM5RGlpVGZqRWJ3OWExSlBySDRKRDFhZTdzemhxMmNyM1BiaFJWV3I2UE1mUW9jTkEwQ0F0bGx4TGoxTl9NRmVSRnJiVnZ2SC1tbkk3T1MxQlhFaS1xdTJjaHc3WU8tWlBwWjJaSFhKM2VnVFlkNXQzVUx1cjQ3UGJxYklEeXRzR21QdFNlc0hhVThrQXI3am1QUmQ5SVlJT2NIYmpUdnhlNmo2U0VmWnBYUWFHYXdlZ0pwSWd5U3dMX3NuNVlNUXoyMU8yaXBKSDNoV1A4TWlWQnpJR0lMU1h0YjVPZWtoVFdDWERLZElYVVNhak95N0x4RUtVY3RuY1ZyZlJzRENZa3pHZFJOV0RJWFM3dlNKT19JeXVXMzRUMUd4U0JmVXFMOWtVWHVKNGxEMkI4ajZGOW04Sm56VURPWjd4RnZhTXM3OEVIN3VfVnZzX1lwR1ZyWC1RSkF3NGdvbWpUTFI4QXE2VkpneE9reGhlWV8yMElDTUtkSkxBZVRWOUtfU1p1XzR3RUFyempRUVhBTGFRNm9NNEgxVE1MOFFjU2IyTkZ0SFF3amRYTG5EMnJmS1dSU2NleDR1OXlqSjFIRW9jSlFxUXB1Uko2NnBGa05kNTEwdDE4YlJNX1B5YmxXX2lYd0p3OWxsc01EZnFyTng2d1RUWklKUlY0MVM2Q0I5c0phc0lzSDNUckR1QklpNFZ3LThSS2pJYjE4NVJUbjE5M3pvTDZSNi1pV3pmUmpaOElMbzNMejFIQWd1b0lXSU9DM1hOR2t4Z3RKaW1wQ1Y0TW91dDlpZ1lLTGlteEhwdGUtazZkZFluV1RLU0FrMXNBYkluclRXMGNXTUZuVm9vc3c5ZjJFeWgwUWxibUY5bVUxMGJkQnhWak9nRjRzOVEtWjN1SzJMbGVQTWdBQSIsImlhdCI6MTU1NjIwNDkyMCwiZXhwIjoxNTU2MjkxMzIwfQ.TJG9ITXBG-l0katKYiXUWc82xbvaZCS0vcRdArGJIy0"},{"key":"user_id","value":"100"},{"key":"success","value":"true"}],"variable":[]}},"response":[],"_postman_id":"b7bd6654-1d19-454a-9264-afd35339cbc3"},{"name":"signInWithToken","id":"2cc8959b-96a3-49cb-ae29-e981a86dd6e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\"access_token\": \"eyJ0eXAiOiJKV1QiLCJub25jZSI6IkFRQUJBQUFBQUFEQ29NcGpKWHJ4VHE5Vkc5dGUtN0ZYRHV0VU1BVjNFc21xQzgyRy1DbUxoMzFRZDBOendCYkRTbjhoNkR4aGRJYjlpbDRHdHozUHgwY0xPU0xBWkREMXNpT1llMXdjMWJ2SmFuYXBQZ2o0a0NBQSIsImFsZyI6IlJTMjU2IiwieDV0IjoiSEJ4bDltQWU2Z3hhdkNrY29PVTJUSHNETmEwIiwia2lkIjoiSEJ4bDltQWU2Z3hhdkNrY29PVTJUSHNETmEwIn0.eyJhdWQiOiJodHRwczovL2dyYXBoLm1pY3Jvc29mdC5jb20vIiwiaXNzIjoiaHR0cHM6Ly9zdHMud2luZG93cy5uZXQvN2JmYjBhYjYtNjc1MC00ZDc4LWIyZTUtOGU3NmYwM2Q1Mzc0LyIsImlhdCI6MTU1NjYyOTI4OCwibmJmIjoxNTU2NjI5Mjg4LCJleHAiOjE1NTY2MzMxODgsImFjY3QiOjAsImFjciI6IjEiLCJhaW8iOiJBU1FBMi84TEFBQUFCTHlxR1MzZWszdE9sbittamN6anhVb3BRaXB2MERtOWFsamxDY3JQdm5zPSIsImFtciI6WyJwd2QiXSwiYXBwX2Rpc3BsYXluYW1lIjoibWFuaWZlc3QtYXBwIiwiYXBwaWQiOiIzN2RiMWY3Yy05ZWY3LTQxMzMtYWY4ZC00OGFkODU5OWRmYzIiLCJhcHBpZGFjciI6IjEiLCJmYW1pbHlfbmFtZSI6Ik1pZ3Vyc2t5IiwiZ2l2ZW5fbmFtZSI6IkV1Z2VuZSIsImlwYWRkciI6IjEzNC4xNy4yNi4yMDYiLCJuYW1lIjoiRXVnZW5lIE1pZ3Vyc2t5Iiwib2lkIjoiZjYyNzJlYTYtZGZhZC00NjljLTk0ODMtZTBiZmEyZWI0NDljIiwicGxhdGYiOiIxNCIsInB1aWQiOiIxMDAzM0ZGRkFBNDZGRTNEIiwic2NwIjoiU2l0ZXMuTWFuYWdlLkFsbCBTaXRlcy5SZWFkLkFsbCBVc2VyLlJlYWQiLCJzdWIiOiJiOUhfS3NKcGc3TnlpT3NlQjFVRFNNa3luUXZJNnkxQzRTSjVydFRVQXNvIiwidGlkIjoiN2JmYjBhYjYtNjc1MC00ZDc4LWIyZTUtOGU3NmYwM2Q1Mzc0IiwidW5pcXVlX25hbWUiOiJldWdlbmUubWlndXJza3lAdGFxdGlsZS5jb20iLCJ1cG4iOiJldWdlbmUubWlndXJza3lAdGFxdGlsZS5jb20iLCJ1dGkiOiJqT1VWUWtma0owV2dUS21RTnpvUUFBIiwidmVyIjoiMS4wIiwieG1zX3RjZHQiOjE1MDY2MTcyMDF9.wHViY2ZJi9lP843IdpEeBVQ0MS3mVCCv_NqHR7W193VXfMeVYZ4Ytq164O6757Luq73a3RHDNSHUuE_ZlLb5L2tZdDgCD0JsRytshPbzF5u7dYsSTpsQVEZ6EJLoF03nBQsQWaGnZ6kpH4m_xq3r-kzDga4SFrFhQtM3e_5nXfpyDCOkEqUtpY0NaWptp0u69r660x_7exhNiCPNsa_PI8QkzXhhrC0NM67LOwVoZM0i2o7GZylX36pvrr-QQvqsvNp7Y6do3vBafEU2zr72EZNPuy6FG824sgOj5N2Wl-tQXGuVvZGAWjG9mDpujJ4HBO-LdLzpnrK3lJbgaz2GXA\"}"},"url":"https://test.taqdev/rest/dynamics/signInWithToken","urlObject":{"protocol":"https","path":["rest","dynamics","signInWithToken"],"host":["test","taqdev"],"query":[],"variable":[]}},"response":[],"_postman_id":"2cc8959b-96a3-49cb-ae29-e981a86dd6e3"},{"name":"logout","id":"06a1ec18-0914-4256-9774-edf0f51fbdfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://test.taqdev/rest/dynamics/logout?userId=167","urlObject":{"protocol":"https","path":["rest","dynamics","logout"],"host":["test","taqdev"],"query":[{"key":"userId","value":"167"}],"variable":[]}},"response":[],"_postman_id":"06a1ec18-0914-4256-9774-edf0f51fbdfa"}],"id":"f9c6d339-74a6-4c08-9a96-3ba41e83e380","description":"<p><a href=\"https://docs.microsoft.com/en-us/azure/active-directory/develop/v1-protocols-oauth-code\">https://docs.microsoft.com/en-us/azure/active-directory/develop/v1-protocols-oauth-code</a></p>\n","event":[{"listen":"prerequest","script":{"id":"f345b458-3088-4b7a-a432-2eca886df5cd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1fe6fd53-6339-4b9e-8f98-98df4fd9a72c","type":"text/javascript","exec":[""]}}],"_postman_id":"f9c6d339-74a6-4c08-9a96-3ba41e83e380"},{"name":"Forgot password","item":[{"name":"Forgot password","id":"253e1f78-e011-40aa-aeb2-0b7f3c740b20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"alex_test_user2@taqtile.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/forgot","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","forgot"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"9742e06d-98f9-4990-83da-3ce7e1529db1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"alex_test_user2@taqtile.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/forgot"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Tue, 14 Oct 2025 13:32:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"113"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"71-aK1at4G6CpjiDQH5osGyid0TQ9E\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"message\": \"https://test.taqdev.com/rest/reset-password/f839ff8a5dc7f21a06baed74025b9ef2b4b8f854\"\n}"}],"_postman_id":"253e1f78-e011-40aa-aeb2-0b7f3c740b20"},{"name":"Set password","id":"1b677470-3c10-4683-9639-fe2c6e28ce0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"isSignup\": false,\n    \"password\": \"47691fb6-7398-4844-803b-024a127d8836\",\n    \"passwordCheck\": \"47691fb6-7398-4844-803b-024a127d8836\",\n    \"token\": \"f839ff8a5dc7f21a06baed74025b9ef2b4b8f854\",\n    \"email\": \"alex_test_user2@taqtile.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/update-password","description":"<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be sent in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>isSignup</strong> (boolean): Indicates whether the request is part of a signup process. Set to <code>false</code> for password updates.</p>\n</li>\n<li><p><strong>password</strong> (string): The new password that the user wants to set.</p>\n</li>\n<li><p><strong>passwordCheck</strong> (string): A confirmation of the new password to ensure it matches the password field.</p>\n</li>\n<li><p><strong>token</strong> (string): A unique token that verifies the user's identity and authorization to update the password.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address associated with the account for which the password is being updated.</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the response will return a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>success</strong> (boolean): Indicates whether the password update was successful.</p>\n</li>\n<li><p><strong>error</strong> (object): Contains error details if applicable.</p>\n<ul>\n<li><strong>message</strong> (string): A message detailing any error that occurred. It will be empty if the operation was successful.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","update-password"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b677470-3c10-4683-9639-fe2c6e28ce0f"}],"id":"382353e4-4c52-44e9-bf0e-be900b8c3a7a","_postman_id":"382353e4-4c52-44e9-bf0e-be900b8c3a7a","description":""},{"name":"Sign up CLIENT","id":"991552c5-c313-414f-b1d1-9357ed3ad407","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"avatar\": null,\n\t\"creatorUserEmail\": \"manifestsupport@taqtile.com\",\n\t\"currentUserId\": 167,\n\t\"description\": \"\",\n\t\"email\": \"testemail2@test123.com\",\n\t\"firstName\": \"ASXASX\",\n\t\"lastName\": \"DXASDX\",\n\t\"orgId\": [\n\t\t2, 84\n\t],\n\t\"password\": \"1111\",\n\t\"passwordCheck\": \"1111\",\n\t\"roles\": [\n\t\t\"admin\",\n\t\t\"securityAdmin\",\n\t\t\"userAdmin\"\n\t],\n\t\"title\": \"\",\n\t\"typeLicensePackage\": \"full\",\n    \"allocatedLicenseOrgId\": 2\n}"},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/signup","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","signup"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"991552c5-c313-414f-b1d1-9357ed3ad407"},{"name":"Sign in CLIENT","event":[{"listen":"test","script":{"id":"16ea928a-41d2-4bb7-b1dd-30948027bf0d","exec":["var data = JSON.parse(responseBody);","","tests[\"User exists\"] = responseBody.has(\"id\");","","var authToken = data.user.token;","postman.setEnvironmentVariable(\"AUTH_TOKEN\", authToken);","pm.globals.set(\"AUTH_TOKEN\", authToken);","","pm.test(\"User-Agentis present\", function () {","    pm.request.to.have.header(\"User-Agent\");","});","var userAgent = pm.request.headers.get('User-Agent');","postman.setEnvironmentVariable(\"USER_AGENT\", userAgent);","pm.globals.set(\"USER_AGENT\", userAgent);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"8223c5d1-c92d-41c3-956b-488b999c7179","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n   \"email\":\"test@test.com\",\n   \"password\": \"pw\"\n}"},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/signin","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","signin"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8223c5d1-c92d-41c3-956b-488b999c7179"},{"name":"Trial Sign up ","id":"7069b55f-dddb-45c8-881d-94b619d01d44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"example11111@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/trial/signup","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","trial","signup"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7069b55f-dddb-45c8-881d-94b619d01d44"},{"name":"Sign in CLIENT","event":[{"listen":"test","script":{"id":"16ea928a-41d2-4bb7-b1dd-30948027bf0d","exec":["var data = JSON.parse(responseBody);","","tests[\"User exists\"] = responseBody.has(\"id\");","","var authToken = data.user.token;","postman.setEnvironmentVariable(\"AUTH_TOKEN\", authToken);","pm.globals.set(\"AUTH_TOKEN\", authToken);"],"type":"text/javascript"}}],"id":"5622e29f-446f-4fc2-b631-b6c4eabd662a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n   \"email\":\"admin@{{SUBDOMAIN}}.com\",\n   \"password\":\"manifest11\"\n}"},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/signin","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","signin"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5622e29f-446f-4fc2-b631-b6c4eabd662a"},{"name":"Change password","id":"4cb3b572-0a79-4f70-b249-65fdb3fc1c33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"oldPassword\": \"Password1!\",\n    \"newPassword\": \"Password123!\",\n    \"newPasswordConfirm\": \"Password123!\",\n    \"email\": \"test-user@taqtile.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/change-password","description":"<h4 id=\"request-body\">Request Body</h4>\n<p>The request body must be sent in JSON format and should include the following parameters:</p>\n<ul>\n<li><p><strong>isSignup</strong> (boolean): Indicates whether the request is part of a signup process. Set to <code>false</code> for password updates.</p>\n</li>\n<li><p><strong>password</strong> (string): The new password that the user wants to set.</p>\n</li>\n<li><p><strong>passwordCheck</strong> (string): A confirmation of the new password to ensure it matches the password field.</p>\n</li>\n<li><p><strong>token</strong> (string): A unique token that verifies the user's identity and authorization to update the password.</p>\n</li>\n<li><p><strong>email</strong> (string): The email address associated with the account for which the password is being updated.</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>Upon a successful request, the response will return a JSON object with the following structure:</p>\n<ul>\n<li><p><strong>success</strong> (boolean): Indicates whether the password update was successful.</p>\n</li>\n<li><p><strong>error</strong> (object): Contains error details if applicable.</p>\n<ul>\n<li><strong>message</strong> (string): A message detailing any error that occurred. It will be empty if the operation was successful.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","change-password"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"a5692c8d-5c7a-4085-808c-2d8cd590b023","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"oldPassword\": \"Password1!\",\n    \"newPassword\": \"Password12!\",\n    \"newPasswordConfirm\": \"Password12!\",\n    \"email\": \"test-user@taqtile.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/change-password"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Mon, 20 Oct 2025 13:22:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"67-jnfUa+abCT8t0LczaQx1Qr8Zb+Q\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"error\": {\n        \"message\": \"Password should differ by at least 2 characters of old password\"\n    }\n}"},{"id":"ea51e1a3-3a57-418a-93e7-8e658ecd3a5d","name":"Successful","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"oldPassword\": \"Password1!\",\n    \"newPassword\": \"Password123!\",\n    \"newPasswordConfirm\": \"Password123!\",\n    \"email\": \"test-user@taqtile.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/change-password"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Mon, 20 Oct 2025 13:24:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"16"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"10-oV4hJxRVSENxc/wX8+mA4/Pe4tA\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true\n}"}],"_postman_id":"4cb3b572-0a79-4f70-b249-65fdb3fc1c33"}],"id":"791ee39f-1b62-4e6a-b71e-3524f431f0c2","_postman_id":"791ee39f-1b62-4e6a-b71e-3524f431f0c2","description":""},{"name":"Files","item":[{"name":"Save file","id":"03b68cf1-9795-43bf-a7b1-8ceeb8f27c14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","uuid":"aa691e51-1779-40dd-a864-77e953dd1718","src":"/Users/akosmachyov/Desktop/Markup.jpeg"},{"key":"contentType","value":"image","description":"<p>One of: model, thumb, doc, image, audio, video, text, spreadsheet, ply</p>\n","type":"text","uuid":"d0e589b2-4f02-4e41-970a-8c6ddb285629"},{"key":"entityType","value":"note","description":"<p>One of: assetClass, note, location, user, reportTemplate, pointCloud</p>\n","type":"text","uuid":"bf3296b0-3d48-44c6-b98a-b3d253a5efc6"},{"key":"multiply","value":"false","type":"text","uuid":"ab8f6611-9bd2-482a-8b4b-1f844fb5be98"},{"key":"name","value":"custome.jpeg","type":"text","uuid":"67aaf470-f4b5-43a7-8f28-63f943988c17","disabled":true},{"key":"originalName","value":"override.jpeg","type":"text","uuid":"e5426a8a-e04a-44bf-8350-9909bf31fcb1","disabled":true}]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}?storage=manifest","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"key":"storage","value":"manifest"}],"variable":[]}},"response":[{"id":"c6dd7c8d-65e2-4312-90e2-c31b18c35064","name":"Existing file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","uuid":"aa691e51-1779-40dd-a864-77e953dd1718","src":"/Users/akosmachyov/Desktop/6BCF3.jpeg"},{"key":"contentType","value":"image","description":"One of: model, thumb, doc, image, audio, video, text, spreadsheet, ply","type":"text","uuid":"d0e589b2-4f02-4e41-970a-8c6ddb285629"},{"key":"entityType","value":"note","description":"One of: assetClass, note, location, user, reportTemplate, pointCloud","type":"text","uuid":"bf3296b0-3d48-44c6-b98a-b3d253a5efc6"},{"key":"multiply","value":"false","type":"text","uuid":"ab8f6611-9bd2-482a-8b4b-1f844fb5be98"},{"key":"name","value":"custome.jpeg","type":"text","uuid":"67aaf470-f4b5-43a7-8f28-63f943988c17","disabled":true},{"key":"originalName","value":"override.jpeg","type":"text","uuid":"e5426a8a-e04a-44bf-8350-9909bf31fcb1","disabled":true}]},"url":{"raw":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}?storage=manifest","protocol":"{{PROTOCOL}}","host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"path":["graphql","{{VERSION}}"],"query":[{"key":"storage","value":"manifest"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Fri, 12 Sep 2025 17:37:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"234"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"ea-0sJfAeUH/qU8J3G7fxfIGUCzNTE\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 17291,\n    \"duplicatedFile\": {\n        \"originalName\": \"6BCF3.jpeg\",\n        \"name\": \"6BCF3.jpeg\",\n        \"contentType\": \"image\",\n        \"entityType\": \"note\",\n        \"fileType\": \"image/jpeg\",\n        \"url\": \"uploads/test/3bc82af0-941c-40b0-8888-bcaed2489e13/rH8j5ewYyrnYXe2FeqBMwFWvh.jpeg\"\n    }\n}"},{"id":"563f9402-4b26-417f-ab91-ca2ef7614421","name":"New File","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","uuid":"aa691e51-1779-40dd-a864-77e953dd1718","src":"/Users/akosmachyov/Desktop/Markup.jpeg"},{"key":"contentType","value":"image","description":"One of: model, thumb, doc, image, audio, video, text, spreadsheet, ply","type":"text","uuid":"d0e589b2-4f02-4e41-970a-8c6ddb285629"},{"key":"entityType","value":"note","description":"One of: assetClass, note, location, user, reportTemplate, pointCloud","type":"text","uuid":"bf3296b0-3d48-44c6-b98a-b3d253a5efc6"},{"key":"multiply","value":"false","type":"text","uuid":"ab8f6611-9bd2-482a-8b4b-1f844fb5be98"},{"key":"name","value":"custome.jpeg","type":"text","uuid":"67aaf470-f4b5-43a7-8f28-63f943988c17","disabled":true},{"key":"originalName","value":"override.jpeg","type":"text","uuid":"e5426a8a-e04a-44bf-8350-9909bf31fcb1","disabled":true}]},"url":{"raw":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}?storage=manifest","protocol":"{{PROTOCOL}}","host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"path":["graphql","{{VERSION}}"],"query":[{"key":"storage","value":"manifest"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Fri, 12 Sep 2025 17:40:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"12"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"c-8qZ+14NXg7j+Y1D09OyYMapvoAk\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 17292\n}"}],"_postman_id":"03b68cf1-9795-43bf-a7b1-8ceeb8f27c14"},{"name":"Get file info by ID","id":"9bfbbbd7-c843-4f43-a0c9-1097aa7e8790","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($fileId: Int!) {\n    fileId(id:$fileId) {\n        id,name,fileType,url,convertedFiles,contentType, originalName, entityType}\n        }","variables":"    {\n        \"fileId\": 48627\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}? storage=manifest","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"key":" storage","value":"manifest"}],"variable":[]}},"response":[],"_postman_id":"9bfbbbd7-c843-4f43-a0c9-1097aa7e8790"},{"name":"Get list of files","id":"602a442e-1e54-4757-a36a-cc78daf86bff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($orphaned: Boolean) {\n    fileIds( orphaned: $orphaned) {\n        id,name,fileType,url,contentType, originalName, entityType,useMethod}\n        }","variables":"    {\n        \"orphaned\": true\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"602a442e-1e54-4757-a36a-cc78daf86bff"},{"name":"Get list of files asset class","id":"249a878c-1d45-4d30-afe4-6ca1e4bc9f59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($orgId: [Int], $entityType: String!, $contentTypes: [String!]) {\n  fileIds(entityType: $entityType, contentTypes: $contentTypes, orgId: $orgId) {\n    id\n    name\n    fileType\n    url\n    contentType\n    originalName\n    entityType\n    createdAt\n  }\n}\n","variables":"{\n        \"entityType\": \"assetClass\",\n        \"contentTypes\": [\n            \"thumb\"\n        ],\n        \"orgId\": [1]\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"249a878c-1d45-4d30-afe4-6ca1e4bc9f59"},{"name":"Get list of files note","id":"e1a8a48c-f240-4d28-950e-b0905684b373","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($orgId: [Int], $entityType: String!, $contentTypes: [String!]) {\n  fileIds(entityType: $entityType, contentTypes: $contentTypes, orgId: $orgId) {\n    id\n    name\n    fileType\n    url\n    contentType\n    originalName\n    entityType\n    createdAt\n  }\n}\n","variables":"{\n        \"entityType\": \"note\",\n        \"contentTypes\": [\n            \"image\"\n        ],\n        \"orgId\": [1]\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e1a8a48c-f240-4d28-950e-b0905684b373"},{"name":"Delete file","id":"79f14f31-65d5-42d5-a4c4-0de525b4ae2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteFileId(id: $data)\n    }","variables":"    {\n        \"data\": 48627   \n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"79f14f31-65d5-42d5-a4c4-0de525b4ae2f"},{"name":"Get List Of Files BY ID","id":"89a3aa81-d003-448a-a293-a9c6084951b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($ids: [Int]!) {\n    fileIdsArray( ids: $ids) {\n        id,name,fileType,url,contentType, originalName, entityType,useMethod}\n        }","variables":"    {\n        \"ids\": [48626]\n    }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"89a3aa81-d003-448a-a293-a9c6084951b0"},{"name":"Get converted files by files ids","id":"aeb879b0-0f0e-4ee6-a309-7afce438b05c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($filesIds: [Int]!) {\n    convertedFilesByFilesIds(filesIds: $filesIds) {\n        id,\n        glb,\n        gltf,\n        model_id,\n        sourceFiles,\n        usdz,\n        createdAt,\n        deletedAt\n    }\n}","variables":"{\n        \"filesIds\": [\n            10136\n        ]\n    }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aeb879b0-0f0e-4ee6-a309-7afce438b05c"}],"id":"c5718191-4b7b-4f92-8d73-5d7a2f0d5073","_postman_id":"c5718191-4b7b-4f92-8d73-5d7a2f0d5073","description":""},{"name":"Global Search","item":[{"name":"Global Search","id":"f053c4c7-106d-4eb6-afa7-e6fa8f71b8a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($searchTerm: String!, $pageNumber: Int, $itemsPerPage: Int, $searchEntities: EntityGlobalSearchInput!, $orgId:[Int]){\r\n    globalSearch(searchTerm: $searchTerm, pageNumber: $pageNumber, itemsPerPage: $itemsPerPage, searchEntities: $searchEntities, orgId: $orgId){\r\n        __typename\r\n        ... on Asset {\r\n            id\r\n            serialNumber\r\n            assetTagId\r\n            internalId      \r\n            status\r\n            isFavorite\r\n        }\r\n         ... on AssetClass {\r\n            id\r\n            name\r\n            make\r\n            model\r\n            isFavorite\r\n            orgs{\r\n                id\r\n                name\r\n            }\r\n        }\r\n        ... on Template{\r\n            id\r\n            title\r\n            actualVersion{\r\n                rootTemplateId\r\n                state\r\n            }\r\n            isFavorite\r\n        }\r\n        ... on User{\r\n            email\r\n            id\r\n            firstName\r\n            lastName\r\n        }\r\n       }\r\n    }","variables":"{\n    \"searchEntities\": {\n            \"Asset\": { \"searchedFields\": [\"serialNumber\", \"assetClassName\"] , \"filters\":{\n             \"status\":[\"active\"]\n            }},\n            \"Template\": { \"searchedFields\": [\"title\", \"id\"], \"filters\":{\n                \"state\":[\"published\"]\n            } },\n            \"User\": { \"searchedFields\": [\"lastName\", \"firstName\", \"email\"] },\n            \"AssetClass\": { \"searchedFields\": [\"name\", \"id\"]  }\n        },\n        \"searchTerm\": \"test\",\n        \"pageNumber\": 1,\n        \"itemsPerPage\": 100,\n        \"orgId\":[1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f053c4c7-106d-4eb6-afa7-e6fa8f71b8a5"}],"id":"bb46e21b-1f9f-4ae1-8356-d169ae7acd4a","_postman_id":"bb46e21b-1f9f-4ae1-8356-d169ae7acd4a","description":""},{"name":"Measurements","item":[{"name":"Add measurement","id":"a32df4ba-d467-4c39-a5be-cf236a17a087","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: MeasurementInput!) {\n    addMeasurement(data: $data)\n    }","variables":"{\n    \"data\": {\n      \"meterId\": 2336,\n      \"assetId\": 1891,\n      \"value\": \"555\",\n      \"source\": \"Manual\"\n    }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a32df4ba-d467-4c39-a5be-cf236a17a087"},{"name":"Update measurement","event":[{"listen":"test","script":{"id":"306e9b81-9a1b-43b0-ae07-8cfb8dcb4e8f","exec":["var template = `","<style type=\"text/css\">","    .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}","    .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}","    .tftable tr {background-color:#ffffff;}","    .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}","    .tftable tr:hover {background-color:#e0ffff;}","</style>","","<table class=\"tftable\" border=\"1\">","    <tr>","        <th>Status</th>","        <th>Message</th>","    </tr>","    <tr>","        <td>{{response.status}}</td>","        <td>{{response.message}}</td>","    </tr>","</table>","`;","","function constructVisualizerPayload() {","    return { response: pm.response.json() }","}","","pm.visualizer.set(template, constructVisualizerPayload());"],"type":"text/javascript","packages":{}}}],"id":"ff75eca6-c72f-4a59-942b-332c35255c56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data1: MeasurementUpdate!,\n        $data2: MeasurementUpdate!\n) {\n    updateOne: updateMeasurement(data: $data1) {\n        id,\n        meterId,\n        dateModified,\n        value,\n        assetId,\n        acknowledged\n        }\n\n    updateTwo: updateMeasurement(data: $data2) {\n        id,\n        meterId,\n        dateModified,\n        value,\n        assetId,\n        acknowledged\n        }\n  }\n","variables":"{\n        \"data1\": {\n            \"id\":85,\n            \"meterId\":136,\n            \"assetId\":189,\n            \"value\": \"199\",\n            \"acknowledged\":true,\n            \"source\":\"Manual\"\n        },\n        \"data2\": {\n            \"id\":85,\n            \"meterId\":136,\n            \"assetId\":189,\n            \"value\": \"23\",\n            \"acknowledged\":true,\n            \"source\":\"Manual\"\n        } \n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff75eca6-c72f-4a59-942b-332c35255c56"},{"name":"Update Client Sensors","id":"5505d502-4491-4a7f-8757-a596eb12419b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: MeasurementUpdate!) {\n    updateMeasurement(data: $data) {\n        id,\n        meterId,\n        dateModified,\n        value,\n        assetId,\n        acknowledged\n        }\n    }","variables":"{\n        \"data\": {\n            \"id\":454,\n            \"meterId\":2336,\n            \"assetId\":1891,\n            \"value\": \"246\",\n            \"acknowledged\":true,\n            \"source\":\"Manual\"\n        }\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5505d502-4491-4a7f-8757-a596eb12419b"},{"name":"Get measurement by assetId","id":"8110d916-8a49-4d72-986a-b12af66ec409","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($assetId: Int, $orgId: [Int]) { \n    measurements(assetId: $assetId, orgId: $orgId) {\n        id,\n        meterId, \n        assetId, \n        dateModified, \n        value,\n        meter {\n            name, \n            unitName, \n            position\n            }\n        }\n    }","variables":"    {\n        \"assetId\": 1,\n        \"orgId\": [1]\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8110d916-8a49-4d72-986a-b12af66ec409"},{"name":"Get all measurements out of range","id":"3d7a6340-1f15-4d99-a88e-db60bad57095","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($orgId: [Int]) { \n    measurementsOutOfRange(orgId:$orgId) { \n    id, \n    meterId, \n    assetId, \n    acknowledged, \n    dateModified, \n    value, \n    meter {\n        name, \n        description, \n        position, \n        minimumTolerance, \n        maximumTolerance, \n        assetClass{\n            type\n            }, \n        unit {\n            name, \n            description\n            }\n        },\n        asset {\n            id, \n            locationId\n            }\n    }\n}","variables":"{\"orgId\": [1]}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d7a6340-1f15-4d99-a88e-db60bad57095"},{"name":"Get all measurements filters","id":"0c481ec2-3b64-4217-b5c7-be86b6f8e281","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($orgId: [Int]) { measurementsFilters(orgId: $orgId) {\n     assetClassId {\n        id, \n        name\n        }, \n    assetId {\n        id, \n        serialNumber\n        }, \n    locationId {\n            id, \n            name\n            }, \n    meterId {\n        id, \n        name}, \n        source \n        }\n     }","variables":"{\n    \"orgId\": [1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c481ec2-3b64-4217-b5c7-be86b6f8e281"},{"name":"Get all measurements pagination","id":"aa7c7efd-22ed-46e6-ab5e-6b0bb8ee87f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query (\n  $data: Int,\n  $filters: MeasurementsFiltersInput,\n  $search: MeasurementsSearchInput,\n  $itemsPerPage: Int,\n  $pageNumber: Int,\n  $sort: SortInput,\n  $orgId: [Int]\n) {\n  measurementsPage(\n    assetId: $data,\n    filters: $filters,\n    search: $search,\n    itemsPerPage: $itemsPerPage,\n    pageNumber: $pageNumber,\n    sort: $sort,\n    orgId: $orgId\n  ) {\n    id\n    meterId\n    dateModified\n    source\n    value\n    assetId\n    acknowledged\n    asset {\n      id\n      serialNumber\n      assetClassId\n      locationId\n    }\n    meter {\n      name\n      minimumTolerance\n      maximumTolerance\n      unit {\n        id\n        name\n        valueType\n        stateOptions\n      }\n    }\n  }\n}\n","variables":"{\n        \"pageNumber\": 1,\n        \"itemsPerPage\": 10,\n        \"filters\": {\n            \"assetId\": [],\n            \"assetClassId\": [],\n            \"meterId\": [],\n            \"locationId\": [],\n            \"alert\": true,\n            \"source\": \"Manual\",\n            \"from\": \"\",\n            \"to\": \"\"\n        },\n        \"search\": {},\n        \"deleted\": false,\n        \"sort\": {\n            \"propertyName\": \"id\",\n            \"reverse\": true\n        },\n        \"orgId\": [1]\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa7c7efd-22ed-46e6-ab5e-6b0bb8ee87f8"},{"name":"Delete measurement","id":"cba85a3a-50a9-466c-a40e-3ea10f4d9d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteMeasurement(id: $data)\n    }","variables":"    {\n        \"data\": 454\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cba85a3a-50a9-466c-a40e-3ea10f4d9d46"}],"id":"b1df7c0a-d075-4332-81bd-53e139ed9c26","_postman_id":"b1df7c0a-d075-4332-81bd-53e139ed9c26","description":""},{"name":"Meters","item":[{"name":"Add meter","id":"a05ee360-40f4-44be-8cba-e54c44d8d92b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: MeterInput!) {\n    addMeter(data: $data)\n    }","variables":"{\n  \"data\": {\n    \"name\": \"Meter Name\",\n    \"description\": \"Meter description\",\n    \"minimumTolerance\": 2,\n    \"maximumTolerance\": 3,\n    \"position\": [\n      1,\n      0,\n      -0.2\n    ],\n    \"rotation\": [\n      0,\n      3,\n      0\n    ],\n    \"unitId\": 2,\n    \"assetClassId\": 2681\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a05ee360-40f4-44be-8cba-e54c44d8d92b"},{"name":"Update meter","id":"79707ab3-2dc3-41f5-a49c-ce5d39a7e703","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: MeterInput!) {\n    updateMeter(id: $id, data: $data)\n    }","variables":"{\n      \"id\": 2339,\n      \"data\": {\n        \"assetClassId\": 2681,\n        \"description\": \"new description\",\n        \"maximumTolerance\": 11,\n        \"minimumTolerance\": 5,\n        \"name\": \"updatedMeterName\",\n        \"position\": [0.99, 0, -0.2],\n        \"rotation\": [1, 5, 0]\n      }\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"79707ab3-2dc3-41f5-a49c-ce5d39a7e703"},{"name":"Update meter position and rotation","id":"e5bf944d-f7e3-49c7-b44b-580e2a0dab26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $position: [Float], $rotation: [Float]) {\n    updateMeterPosition(id:$id, position:$position, rotation:$rotation)\n    }","variables":"{\n    \"id\": 2339,\n     \"position\": [0.555555555, 0.555555555555555, 0.555555555555555555],\n    \"rotation\": [0.555555, 0.555555555555, 0.555555555555555555555555555555]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e5bf944d-f7e3-49c7-b44b-580e2a0dab26"},{"name":"Get meter by ID","id":"4ce52e10-faf3-4174-a286-7842a2baec47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":" query($id: Int!){\n      meter(id:$id){\n      id, \n      name, \n      description, \n      assetClassId,\n      unitId, \n      minimumTolerance, \n      maximumTolerance,\n      rotation, \n      position\n      }\n    }","variables":"    {\n        \"id\": 2339\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ce52e10-faf3-4174-a286-7842a2baec47"},{"name":"Get meters by assetId or assetClassId","id":"33e83aae-ebca-40b3-b2c5-3673bd041c8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($assetId:Int,$assetClassId:Int, $orgId: [Int]){ \n    meters(assetClassId:$assetClassId, assetId:$assetId, orgId:$orgId) { \n        id,\n        name,\n        description,\n        unitName,\n        position,\n        rotation,\n        assetClassId, \n        minimumTolerance, \n        maximumTolerance\n        }\n    }","variables":"{\n  \t\"assetClassId\": 3,\n  \t\"assetId\": null,\n    \"orgId\": [1]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"33e83aae-ebca-40b3-b2c5-3673bd041c8c"},{"name":"Delete meter","id":"81535069-d200-4d43-b59c-6faa154f7107","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteMeter(id: $data)\n    }","variables":"{\n    \"data\": 2339\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81535069-d200-4d43-b59c-6faa154f7107"}],"id":"5f091959-ac7e-4541-b85a-bd144a08e53b","_postman_id":"5f091959-ac7e-4541-b85a-bd144a08e53b","description":""},{"name":"Meter Requirements","item":[{"name":"Update meter requirement","id":"ae5f1faf-0a7d-4353-b262-9bfcb84ae00f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: MeterRequirementInput!) {\n    updateMeterRequirement(id: $id,data: $data)\n    }","variables":"{\n    \"id\": 1563,\n    \"data\": {\n      \"value\":\"11\",\n      \"evaluationType\": \"equalTo\",\n      \"meterId\": 2341,\n      \"jobStepId\": null,\n      \"templateStepId\": null,\n      \"templateId\": null\n    }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae5f1faf-0a7d-4353-b262-9bfcb84ae00f"},{"name":"Get meter requerement by ID","id":"b1471793-99e0-4cbf-9e8f-7e1ea877be1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($id:Int!) {\n    meterRequirement(id:$id) {\n        id,\n        value, \n        evaluationType, \n        meterId, \n        templateId, \n        jobStepId,\n        templateStepId\n        }\n    }","variables":"{\n  \t\"id\": 1563\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1471793-99e0-4cbf-9e8f-7e1ea877be1b"},{"name":"Get meter requerements by jobStepId, templateStepId, meterId","id":"65205247-d66c-4487-aed5-bbdf9c9bc51e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query (\n  $jobStepId: Int,\n  $templateStepId: Int,\n  $meterId: Int\n) {\n  meterRequirements(\n    jobStepId: $jobStepId,\n    templateStepId: $templateStepId,\n    meterId: $meterId\n  ) {\n    id\n    value\n    evaluationType\n    meterId\n    jobStepId\n    templateStepId\n  }\n}\n","variables":"{\n    \"meterId\": 2341\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"65205247-d66c-4487-aed5-bbdf9c9bc51e"},{"name":"Delete meter requirement","id":"b46d199b-dfcd-4d10-bba1-181bfaacb0be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteMeterRequirement(id: $data)\n    }","variables":"{\n    \"data\": 1563\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b46d199b-dfcd-4d10-bba1-181bfaacb0be"},{"name":"Add meter requirement","id":"8a94980f-6f91-4246-8891-4263e3c30074","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: MeterRequirementInput!) {\n    addMeterRequirement(data: $data)\n    }","variables":"{\n    \"data\": {\n      \"value\":\"1\",\n       \"evaluationType\": \"equalTo\",\n       \"meterId\": 2342,\n       \"jobStepId\": null,\n       \"templateStepId\": null\n    }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a94980f-6f91-4246-8891-4263e3c30074"}],"id":"e6b0c9c0-1ffd-4f27-a351-b9a152fa991b","_postman_id":"e6b0c9c0-1ffd-4f27-a351-b9a152fa991b","description":""},{"name":"Meter Evidence","item":[{"name":"Meters Evidence Report (new)","id":"a6e6e4ba-c2d0-446c-a6d0-0871306af723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query (\n  $itemsPerPage: Int,\n  $pageNumber: Int,\n  $filters: MeterEvidenceReportFiltersInput,\n  $search: MeterEvidenceReportSearchInput,\n  $sort: SortInput,\n  $orgId: [Int]\n) {\n  metersEvidenceReport(\n    itemsPerPage: $itemsPerPage,\n    pageNumber: $pageNumber,\n    filters: $filters,\n    search: $search,\n    sort: $sort,\n    orgId: $orgId\n  ) {\n    id\n    assignedUserName\n    assignedUserId\n    locationId\n    locationName\n    assetClassId\n    assetClassName\n    assetId\n    assetName\n    templateId\n    templateName\n    jobId\n    jobName\n    jobStatus\n    jobPercent\n    jobStartTime\n    jobEndTime\n    jobStepId\n    jobStepNumber\n    jobStepName\n    meterFlag\n    meterName\n    meterUnitName\n    meterUnitId\n    meterEvidence\n    meterOriginal\n    timeOfRecording\n    isArchived\n    resolvedByUserId\n    resolvedByUserName\n    resolvedDate\n  }\n}\n","variables":"{\n    \"itemsPerPage\": 5,\n    \"pageNumber\": 1,\n    \"filters\": {\n        \"isArchived\": [true, false]\n    },\n    \"sort\": {\n        \"propertyName\": \"locationId\",\n        \"reverse\": false\n    },\n    \"search\": {\n        \"all\": \"Taqtile\"\n    },\n    \"orgId\": [1]\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a6e6e4ba-c2d0-446c-a6d0-0871306af723"},{"name":"Resolve issue from Meters Evidence Report","id":"c1ceb1ff-c727-4671-9297-c6f0ae3b883a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!) {\n    resolveMeterEvidenceReport(id: $id)\n    }","variables":"{\n    \"id\": 2342\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1ceb1ff-c727-4671-9297-c6f0ae3b883a"},{"name":"Archive Evidence Report","id":"cc7a04fa-35f0-4a75-a7e8-dbe416e93729","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!) {\n    archiveMeterEvidenceReport(id: $id)\n    }","variables":"{\n    \"id\": 2342\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc7a04fa-35f0-4a75-a7e8-dbe416e93729"},{"name":"Meters Evidence Report (new) Filters","id":"a94dcd05-6dec-4a94-af49-f632f7d76523","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($orgId: [Int]) {metersEvidenceReportFilters(orgId: $orgId) {\n    assetClassId {\n      id\n      name\n    }\n    assetId {\n      id\n      serialNumber\n    }\n    templateId {\n      id\n      title\n    }\n    locationId {\n      id\n      name\n    }\n    jobId {\n      id\n      title\n    }\n    assignedUserId {\n      id\n      fullName\n    }\n    meterName {\n      name\n    }\n    meterUnitId {\n      id\n      name\n    }\n    timeOfRecording {\n      from\n      to\n    }\n  }\n}\n","variables":"{\"orgId\": [1]}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a94dcd05-6dec-4a94-af49-f632f7d76523"}],"id":"4fa70e9e-8729-4ce9-bdbf-841922824668","_postman_id":"4fa70e9e-8729-4ce9-bdbf-841922824668","description":""},{"name":"Meter Units","item":[{"name":"Add unit","id":"2181a79e-5acb-40a2-b99d-9fd2e890dda5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: UnitInput!) {\n    addUnit(data: $data)\n    }","variables":"{\n      \"data\": {\n        \"description\": \"unitDescription\",\n        \"name\": \"uniqueUnitName\",\n        \"stateOptions\": [\"on\", \"off\"],\n        \"valueType\": \"State\"\n      }\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2181a79e-5acb-40a2-b99d-9fd2e890dda5"},{"name":"Update unit","id":"2bfa5241-055a-4ac0-9769-51159a72d0fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: UnitInput!) {\n    updateUnit(id: $id,data: $data)\n    }","variables":"{\n    \"id\": 1488,\n    \"data\": {\n      \"name\": \"newNameUnit\",\n      \"description\": \"newDesc\",\n\t  \"valueType\": \"State\",\n\t  \"stateOptions\": [\"up\", \"down\"]\n    }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2bfa5241-055a-4ac0-9769-51159a72d0fd"},{"name":"Get units","id":"21110266-6f20-4f1b-88d0-eccf0b6e829c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($orgId: [Int]){units(orgId: $orgId){\n        id,\n        name,\n        description,\n        valueType\n        }\n    }","variables":"{\"orgId\": [1]}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21110266-6f20-4f1b-88d0-eccf0b6e829c"},{"name":"Get unit by ID","id":"52e1d065-3c10-4f1d-a41d-29a839d26250","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($id:Int) {\n    unit(id:$id) {\n        id,\n        name,\n        description,\n        valueType\n        }\n    }","variables":"{\n    \"id\": 1488\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"52e1d065-3c10-4f1d-a41d-29a839d26250"},{"name":"Delete unit","id":"de8cf85d-b2d9-4ffe-b4bf-b6b07b51f036","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteUnit(id: $data)\n    }","variables":"{\n    \"data\": 1488\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de8cf85d-b2d9-4ffe-b4bf-b6b07b51f036"}],"id":"cebcdafc-bfb8-4c94-9207-38a02a801b41","_postman_id":"cebcdafc-bfb8-4c94-9207-38a02a801b41","description":""},{"name":"Value List - evidence","item":[{"name":"Add Value List","id":"864d67de-f0ca-4ddd-b330-2f968f686d3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: ValueListEvidenceInput!) {\n    addValueListEvidence(data: $data)\n    }","variables":"{\n  \"data\": {\n    \"name\": \"Value List Name\",\n    \"description\": \"Description VL\",\n    \"states\": [\n      \"1\",\n      \"2\",\n      \"Cc\"\n    ]\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"864d67de-f0ca-4ddd-b330-2f968f686d3b"},{"name":"Update Value List","id":"be013444-5b69-464f-bf05-18205e2fd7e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: ValueListEvidenceInput!) {\n    updateValueListEvidence(data: $data)\n    }","variables":"{\n  \"data\": {\n    \"id\": 130,\n    \"name\": \"New Name VL\",\n    \"description\": \"New Description\",\n    \"states\": [\n      \"o1\",\n      \"2\",\n      \"3P\"\n    ]\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"be013444-5b69-464f-bf05-18205e2fd7e4"},{"name":"Get Value List by id","id":"a9105ee5-3aec-420f-8120-dd0844e03090","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($id: Int!) {\n    singleValueListEvidence(id:$id) {\n        id, name, description, states\n        }\n    }","variables":"{\n  \"id\": 128\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9105ee5-3aec-420f-8120-dd0844e03090"},{"name":"Get all Value Lists pagination","id":"85e37422-492c-486d-9a18-109ebe0c023b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($search:ValueListEvidenceSearchInput, \n$pageNumber: Int, \n$itemsPerPage: Int, \n$sort: SortInput) {\n    valueListEvidencePage(search:$search, \n    pageNumber: $pageNumber, \n    itemsPerPage: $itemsPerPage, \n    sort: $sort) {\n        id, \n        name, \n        description, \n        states, \n        faults, \n        assets, \n        versions {\n            rootTemplateId, name\n            } \n        } \n    }","variables":"{\n  \"pageNumber\": 1,\n  \"itemsPerPage\": 5,\n  \"search\": {},\n  \"sort\": {\n    \"propertyName\": \"id\",\n    \"reverse\": true\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"85e37422-492c-486d-9a18-109ebe0c023b"},{"name":"Get all Value lists by org","id":"e6ac08f4-52ef-49e9-a85c-aca1f4c16046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"},{"key":"client","value":"test"}],"body":{"mode":"graphql","graphql":{"query":"query($search:ValueListEvidenceSearchInput, $pageNumber: Int, $itemsPerPage: Int, $sort: SortInput, $orgId: [Int]) { valueListEvidencePageByOrg(search:$search, pageNumber: $pageNumber, itemsPerPage: $itemsPerPage, sort: $sort, orgId: $orgId) { id, name, description, states, faults, assets, versions{rootTemplateId, name} } }","variables":"{\n    \"pageNumber\":1,\n    \"itemsPerPage\":10,\n    \"search\":{},\n    \"orgId\": [1],\n\t\"sort\": {\n\t\t\"active\": true,\n\t\t\"propertyName\": \"id\",\n\t\t\"reverse\": false\n\t}\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e6ac08f4-52ef-49e9-a85c-aca1f4c16046"},{"name":"Get all Value Lists","id":"177f2fcd-d06b-4ecf-9bfb-39d0dffd1d22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($search:ValueListEvidenceSearchInput, \n$pageNumber: Int, \n$itemsPerPage: Int,\n$sort: SortInput) {\n    valueListEvidencePage(search:$search, \n    pageNumber: $pageNumber, \n    itemsPerPage: $itemsPerPage, \n    sort: $sort) {\n        id, \n        name \n        } \n    }","variables":"{\n  \"pageNumber\": 1,\n  \"itemsPerPage\": 100,\n  \"search\": {}\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"177f2fcd-d06b-4ecf-9bfb-39d0dffd1d22"},{"name":"Delete Value List","id":"5a226fb3-f411-4aef-9fff-460e10a9522a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!) {\n    deleteValueListEvidence(id: $id)\n    }","variables":"{\n  \"id\": 129\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a226fb3-f411-4aef-9fff-460e10a9522a"}],"id":"59cab497-7eaa-4bdd-9014-e3ef91d3159c","_postman_id":"59cab497-7eaa-4bdd-9014-e3ef91d3159c","description":""},{"name":"Faults","item":[{"name":"Add fault (from faults page)","id":"a8d32d66-7773-4d2f-9eb2-94dd321de4fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: FaultInput!) {\n    addFault(data: $data)\n    }","variables":"{\n  \"data\": {\n    \"assetId\": 1891,\n    \"description\": \"Fault Description\",\n    \"notes\": [\n      {\n        \"title\": \"0008\",\n        \"type\": \"photo\",\n        \"order\": 1,\n        \"text\": \"\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [\n          51157\n        ]\n      },\n      {\n        \"title\": \"134822 (1080p)\",\n        \"type\": \"video\",\n        \"order\": 1,\n        \"text\": \"\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [\n          45590\n        ]\n      },\n      {\n        \"title\": \"26150\",\n        \"type\": \"audio\",\n        \"order\": 1,\n        \"text\": \"\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [\n          51156\n        ]\n      },\n      {\n        \"title\": \"Text note\",\n        \"type\": \"text\",\n        \"order\": 1,\n        \"text\": \"<p>effwef</p>\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": []\n      },\n      {\n        \"title\": \"autoValueL\",\n        \"type\": \"custom\",\n        \"order\": 1,\n        \"text\": \"first\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [],\n        \"customEvidenceId\": 95\n      }\n    ]\n  }\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8d32d66-7773-4d2f-9eb2-94dd321de4fb"},{"name":"Add fault (from job step)","id":"df5f40d8-2ada-41f5-b4b9-239c5f3f5e4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: FaultInput!) {\n    addFault(data: $data)\n    }","variables":"{\n  \"data\": {\n    \"jobStepId\": 456770,\n    \"description\": \"Fault From Job Step\",\n    \"notes\": [\n      {\n        \"title\": \"0008\",\n        \"type\": \"photo\",\n        \"order\": 1,\n        \"text\": \"\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [\n          51157\n        ]\n      },\n      {\n        \"title\": \"134822 (1080p)\",\n        \"type\": \"video\",\n        \"order\": 1,\n        \"text\": \"\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [\n          45590\n        ]\n      },\n      {\n        \"title\": \"26150\",\n        \"type\": \"audio\",\n        \"order\": 1,\n        \"text\": \"\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [\n          51156\n        ]\n      },\n      {\n        \"title\": \"Text note\",\n        \"type\": \"text\",\n        \"order\": 1,\n        \"text\": \"<p>effwef</p>\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": []\n      },\n      {\n        \"title\": \"autoValueL\",\n        \"type\": \"custom\",\n        \"order\": 1,\n        \"text\": \"first\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [],\n        \"customEvidenceId\": 95\n      }\n    ]\n  }\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df5f40d8-2ada-41f5-b4b9-239c5f3f5e4b"},{"name":"Update fault","id":"0bb3ce55-9262-4da1-b8f3-b2a9fb033bf3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: UpdateFaultInput!) {\n    updateFault(data: $data)\n    }","variables":"{\n  \"data\": {\n    \"id\": 1005,\n    \"description\": \"Update Fault\",\n    \"notes\": [\n      {\n        \"title\": \"0008\",\n        \"type\": \"photo\",\n        \"order\": 1,\n        \"text\": \"\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [\n          51157\n        ]\n      },\n      {\n        \"title\": \"Text note\",\n        \"type\": \"text\",\n        \"order\": 1,\n        \"text\": \"<p>effwef</p>\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": []\n      },\n      {\n        \"title\": \"autoValueL\",\n        \"type\": \"custom\",\n        \"order\": 1,\n        \"text\": \"first\",\n        \"autoplay\": false,\n        \"actionType\": null,\n        \"meterRequirements\": [],\n        \"files\": [],\n        \"customEvidenceId\": 95\n      }\n    ]\n  }\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0bb3ce55-9262-4da1-b8f3-b2a9fb033bf3"},{"name":"Get fault by id","id":"eb361d5b-9644-4205-97cc-dff41f80ce8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($id: Int) {\n  getFaultById(id: $id) {\n    id\n    description\n    position\n    linePos\n    createdByUserId\n    createdAt\n    resolvedAt\n    resolvedByUserId\n    notes {\n      id\n      title\n      type\n      points\n      color {\n        r\n        g\n        b\n        a\n      }\n      thickness\n      text\n      files {\n        id\n        name\n        url\n        fileType\n      }\n      templateId\n    }\n    asset {\n      id\n    }\n    jobStep {\n      id\n      jobId\n    }\n    emergedJobs {\n      id\n      workItemType\n    }\n    description\n  }\n}\n","variables":"{\n        \"id\": 1008\n    }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb361d5b-9644-4205-97cc-dff41f80ce8c"},{"name":"Resolve fault","id":"08f1d296-2984-487f-b956-1a7db604e231","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!) {\n    resolveFaultById(id: $id)\n    }","variables":"{\n    \"id\": 1005\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"08f1d296-2984-487f-b956-1a7db604e231"},{"name":"Reopen fault","id":"7fd7cf9b-20c6-464c-8d70-e8049abb7bec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!) {\n    reopenFault(id: $id)\n    }","variables":"{\n    \"id\": 1005\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7fd7cf9b-20c6-464c-8d70-e8049abb7bec"},{"name":"Get faults","event":[{"listen":"test","script":{"id":"3864a2af-86e5-4737-9633-723ea11dc4a1","exec":["var template = `","<style type=\"text/css\">","    .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}","    .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}","    .tftable tr {background-color:#ffffff;}","    .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}","    .tftable tr:hover {background-color:#e0ffff;}","</style>","","<table class=\"tftable\" border=\"1\">","    <tr>","        <th>Faults</th>","    </tr>","    ","    {{#each response.data.getFaults}}","        <tr>","            <td>{{this}}</td>","        </tr>","    {{/each}}","</table>","`;","","function constructVisualizerPayload() {","    var res = pm.response.json();","    return { response: res };","}","","pm.visualizer.set(template, constructVisualizerPayload());"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"2ab7df26-6881-4496-845b-381f6e954f87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query (\n  $search: FaultSearchInput,\n  $filters: FaultsFilterInput,\n  $sort: SortInput,\n  $itemsPerPage: Int,\n  $pageNumber: Int,\n  $orgId: [Int]\n) {\n  getFaults(\n    search: $search,\n    filters: $filters,\n    sort: $sort,\n    itemsPerPage: $itemsPerPage,\n    pageNumber: $pageNumber,\n    orgId: $orgId\n  ) {\n    id\n    description\n    createdByUserId\n    resolvedByUserId\n    createdAt\n    resolvedAt\n    asset {\n      id\n      serialNumber\n    }\n    jobStep {\n      id\n      step\n      jobId\n    }\n    emergedJobs {\n      id\n      priority\n      completedStepPercent\n      template {\n        actualVersion {\n          id\n          name\n        }\n      }\n      title\n      status\n      id\n      workItemType\n      steps {\n        id\n        completed\n      }\n    }\n  }\n}\n","variables":"{\n  \"pageNumber\": 1,\n  \"itemsPerPage\": 100,\n  \"orgId\": [1]\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ab7df26-6881-4496-845b-381f6e954f87"},{"name":"Patch fault note settings","id":"138e12f3-a72c-467e-a5e7-9fb6ddff963e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: FaultNoteSettingInput!) {\n    updateFaultNoteSettings(data: $data)\n    }","variables":"{\n  \"data\": {\n    \"availableNotes\": [\n      \"photo\",\n      \"video\",\n      \"audio\",\n      \"text\",\n      \"pen\",\n      \"95\"\n    ],\n    \"requiredNotes\": [\n      \"photo\",\n      \"95\"\n    ]\n  }\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"138e12f3-a72c-467e-a5e7-9fb6ddff963e"},{"name":"Get fault filters","id":"0ce711f0-1d4e-430d-bb04-18175ec5624a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($orgId: [Int]){faultFilters(orgId: $orgId){locationId{id, name}, assetId{id, serialNumber}}}","variables":"{\"orgId\": [1]}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ce711f0-1d4e-430d-bb04-18175ec5624a"}],"id":"c6409f85-355a-4ca7-b1d7-12006292db3e","_postman_id":"c6409f85-355a-4ca7-b1d7-12006292db3e","description":""},{"name":"Chats","item":[{"name":"WorkingTogether","item":[{"name":"Reassign user from job and job step","id":"d9988223-bb45-461f-a19c-2b6c768d01aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"handOffStatus\" : \"Accept\",\n\t\"workingTogetherId\" : 6968,\n\t\"jobId\": 1342,\n\t\"teamSetup\": true,\n\t\"doReassigne\": false\n}"},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/workingTogether/","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","workingTogether",""],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9988223-bb45-461f-a19c-2b6c768d01aa"},{"name":"Complete team setup","id":"28cae2a3-0a9f-47ca-8f7a-889bb79609f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"handOffStatus\" : \"Accept\",\n\t\"workingTogetherId\" : 6968,\n\t\"jobId\": 150904\n}"},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/workingTogether","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","workingTogether"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"28cae2a3-0a9f-47ca-8f7a-889bb79609f8"},{"name":"Get hand off statuses by job id","id":"ac1c3686-3b15-441f-a899-ecf765be1b35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"jobId\": 150904\n}"},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/workingTogether/handOffStatuses","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","workingTogether","handOffStatuses"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac1c3686-3b15-441f-a899-ecf765be1b35"}],"id":"5ed9650b-9491-4962-974f-80c1fe7fb0f4","_postman_id":"5ed9650b-9491-4962-974f-80c1fe7fb0f4","description":""},{"name":"Group chat","item":[{"name":"Create group chat","id":"9d9238c0-5075-48e5-a02b-6dc880b58105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: ChatInput!) {\n    createGroupChat(data: $data)\n    }","variables":"{\n  \t\"data\": {\n  \t\t\"users_id\": [169],\n  \t\t\"title\": \"test Postman\"\n  \t}\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d9238c0-5075-48e5-a02b-6dc880b58105"},{"name":"Add users to group chat","id":"ec0511bb-a50a-4e2b-ad5c-2be34447e7ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: ChatInput!) {\n    addUsersToGroupChat(data: $data)\n    }","variables":"{\n  \t\"data\": {\n  \t\t\"users_id\": [569],\n  \t\t\"chat_id\" : 99362\n  \t}\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ec0511bb-a50a-4e2b-ad5c-2be34447e7ae"},{"name":"Remove users from group chat","id":"d34d8690-6488-4349-a863-211777771b95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: ChatInput!) {\n    removeUsersFromGroupChat(data: $data)\n    }","variables":"{\n  \t\"data\": {\n  \t\t\"users_id\": [569],\n  \t\t\"chat_id\": 99362\n  \t}\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d34d8690-6488-4349-a863-211777771b95"},{"name":"Update chat","id":"50312a41-6678-4346-b09b-3a3662b04723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: ChatInput!) {\n    updateChat(data: $data)\n    }","variables":"{\n  \t\"data\": {\n  \t\t\"chat_id\": 99362,\n  \t\t\"title\": \"changed title\"\n  \t}\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"50312a41-6678-4346-b09b-3a3662b04723"}],"id":"52a6c121-cd21-4aa4-9a6e-980f53fa023e","_postman_id":"52a6c121-cd21-4aa4-9a6e-980f53fa023e","description":""},{"name":"Get all chats","id":"67cb8486-e6bd-4616-a53c-0378fb53054e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\n        getChats {\n            id,\n            user_one,\n            group_chat_users_ids,\n            user_two,\n            messages {\n                id,\n                status,\n                senderId,\n                date_created\n            }\n        }\n    }","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"67cb8486-e6bd-4616-a53c-0378fb53054e"},{"name":"Mark message as read","id":"e01d9c5f-9eec-462f-9fd7-d5a940504264","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int) {\n    setStatus(id:$id)\n    }","variables":"{\n  \t\"id\": 111\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e01d9c5f-9eec-462f-9fd7-d5a940504264"},{"name":"Mark all messages as read","id":"7782fb30-d281-4465-a229-5509bd512a1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($chatId: Int!) {\n    readAll(chatId: $chatId)\n    }","variables":"{\n    \"chatId\": 99364\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7782fb30-d281-4465-a229-5509bd512a1f"},{"name":"Get chat info","id":"549c3a95-570a-4bfb-8bff-1b1b2364716f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($limit: Int, $id: Int!) {\n    getChatInfo(limit: $limit, id: $id) {\n        id,\n        user_one,\n        user_two,\n        group_chat_users_ids,\n        unread,\n        messages {\n            id,\n            status,\n            senderId\n        }\n    }\n}\n","variables":"{\n        \"limit\": 10,\n        \"id\": 99364\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"549c3a95-570a-4bfb-8bff-1b1b2364716f"},{"name":"Get chats info","id":"632bed59-aaf9-4cc8-b65b-7cca3234020e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"},{"key":"client","value":"test"},{"key":"clientVersion","value":"web/v2.4/***"}],"body":{"mode":"graphql","graphql":{"query":"query (\n  $tab: String\n  $orgId: [Int]\n  $limit: Int\n  $isArchived: Boolean\n  $sort: SortInput\n) {\n  getChatsInfo(\n    limit: $limit\n    isArchived: $isArchived\n    sort: $sort\n    orgId: $orgId\n    tab: $tab\n  ) {\n    id\n    user_one\n    user_two\n    group_chat_users_ids\n    unread\n    isFavorite\n    isArchived\n    title\n    job {\n      id\n      completed\n      org {\n        id\n        name\n      }\n    }\n    messages {\n      job {\n        id\n        org {\n          id\n          name\n        }\n      }\n      workingTogether {\n        id\n        job {\n          id\n          org {\n            id\n            name\n          }\n        }\n      }\n      id\n      status\n      senderId\n      type\n      text\n      date_created\n      files {\n        url\n        name\n        originalName\n        id\n      }\n    }\n  }\n}\n","variables":"{\n  \"limit\": 1,\n  \"sort\": {\n    \"propertyName\": \"isFavorite\",\n    \"reverse\": false\n  },\n  \"orgId\":null,\n  \"tab\": \"contacts\"\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"632bed59-aaf9-4cc8-b65b-7cca3234020e"},{"name":"Get all messages by chat id","id":"7d7ae8bb-7cba-480d-bd5a-237c2d2a9411","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query ($chatId: Int!, $pageNumber: Int, $itemsPerPage: Int, $orgId: [Int]) {\n  getMessages(\n    chatId: $chatId\n    pageNumber: $pageNumber\n    itemsPerPage: $itemsPerPage\n    orgId: $orgId\n  ) {\n    id\n    status\n    senderId\n    text\n    type\n    date_created\n    files {\n      url\n      previewFileUrl\n      name\n      originalName\n      id\n    }\n    template {\n      id\n      title\n      createdAt\n      isFavorite\n      assetClass {\n        name\n        id\n        orgs {\n          id\n          name\n        }\n      }\n      author {\n        id\n      }\n      actualVersion {\n        id\n        name\n        state\n        rootTemplateId\n        templateId\n      }\n    }\n    job {\n      org {\n        id\n        name\n      }\n      id\n      priority\n      associatedGroupChatId\n      startDate\n      completionDate\n      title\n      elapsedTime\n      status\n      completedStepPercent\n      workItemType\n      assignedUserDetails {\n        id\n        firstName\n        lastName\n        avatarDetails {\n          url\n        }\n      }\n      contributors {\n        id\n        firstName\n        lastName\n        email\n      }\n      asset {\n        serialNumber\n        internalId\n        assetTagId\n        assetClass {\n          name\n          model\n          make\n          thumbnails {\n            id\n            url\n          }\n        }\n        location {\n          name\n        }\n      }\n    }\n    workingTogether {\n      id\n      invitedUser\n      teamSetup\n      jobStepId\n      handOffStatus\n      associatedGroupChatId\n      contributors {\n        id\n        firstName\n        lastName\n        email\n      }\n      job {\n        org {\n          id\n          name\n        }\n        id\n        priority\n        associatedGroupChatId\n        startDate\n        completionDate\n        title\n        elapsedTime\n        status\n        completedStepPercent\n        workItemType\n        assignedUserDetails {\n          id\n          firstName\n          lastName\n          avatarDetails {\n            url\n          }\n        }\n        contributors {\n          id\n          firstName\n          lastName\n          email\n        }\n        asset {\n          serialNumber\n          assetTagId\n          assetClass {\n            name\n            model\n            make\n            thumbnails {\n              id\n              url\n            }\n          }\n          location {\n            name\n          }\n        }\n      }\n    }\n  }\n}\n","variables":"{\n        \"chatId\": 99364,\n        \"pageNumber\": 1,\n        \"itemsPerPage\": 2\n    }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d7ae8bb-7cba-480d-bd5a-237c2d2a9411"},{"name":"Get  message by id","id":"49b52835-936d-4ce8-80da-368e0e02c6b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"{{AUTH_TOKEN}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"graphql","graphql":{"query":"query($messageId: Int!) {\n    getMessage(messageId: $messageId) {\n        id,\n        status,\n        senderId,\n        workingTogether {\n            id,\n            jobId,\n            teamSetup,\n            jobStepId,\n            contributorsId,\n            handOffStatus\n        },\n        text,\n        files {\n            url\n        },\n        type,\n        date_created\n    }\n}\n","variables":"{\n        \"messageId\": 45857\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"49b52835-936d-4ce8-80da-368e0e02c6b5"},{"name":"Delete message from chat","id":"e8f53068-2345-41de-9f8f-0929d14360e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($message_id: Int!, $chat_id: Int!) {\n    deleteMessage(message_id:$message_id, chat_id:$chat_id)\n    }","variables":"{\n  \t\"message_id\": 45857,\n    \"chat_id\": 99364\n}"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e8f53068-2345-41de-9f8f-0929d14360e9"}],"id":"c8208689-f83c-4206-8d91-f27715628bf8","_postman_id":"c8208689-f83c-4206-8d91-f27715628bf8","description":""},{"name":"Bug report","item":[{"name":"Add bug report","id":"2a974489-c096-42e2-9bc1-e92cb009c1fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"ClientVersion","value":"ipad/v4.3.0/593","type":"text"}],"body":{"mode":"raw","raw":"{ \n\t\"deviceType\": \"ios\",\n\t\"applicationVersion\": \"Version 4.3.0 (593)\",\n\t\"summary\": \"Title Alex testing\",\n    \"description\": \"Testing\",\n\t\"fileIds\": [],\n    \"clientUrl\": \"{{SUBDOMAIN}}.{{BASE_URL}}\"\n} \n"},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/add-bug-report","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","add-bug-report"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"d4bc24e7-fa5b-4f5c-b111-1c471bcb9762","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"ClientVersion","value":"ipad/v4.3.0/593","type":"text"}],"body":{"mode":"raw","raw":"{ \n\t\"deviceType\": \"ios\",\n\t\"applicationVersion\": \"Version 4.3.0 (593)\",\n\t\"summary\": \"Title Alex testing\",\n    \"description\": \"Testing\",\n\t\"fileIds\": [],\n    \"clientUrl\": \"{{SUBDOMAIN}}.{{BASE_URL}}\"\n} \n"},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/add-bug-report"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 20 Nov 2025 20:18:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"68"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"44-HqqPfkjjaghQP6FNllpnv1vWvic\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Bug report from device type ios with id=114 is created\"\n}"}],"_postman_id":"2a974489-c096-42e2-9bc1-e92cb009c1fe"},{"name":"Add bug report Maker","id":"b05f835a-787c-45bf-b63b-635343d5b962","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"ClientVersion","value":"maker/v3.0.0/276","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"email\": \"alex@taqtile.com\",\n\t\"appVersion\": \"3.0.0 (276)\",\n    \"titile\": \"Testing from Postman\",\n\t\"description\": \"Description content\",\n\t\"device\": \"iPad13,8 OS 26.2\",\n    \"attachments\": []\n} "},"url":"https://ios.taqmanifest.com/rest/bug-report-github","urlObject":{"protocol":"https","path":["rest","bug-report-github"],"host":["ios","taqmanifest","com"],"query":[],"variable":[]}},"response":[{"id":"f56a185c-392d-4199-9a0c-9765224d5a83","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"ClientVersion","value":"maker/v3.0.0/276","type":"text"}],"body":{"mode":"raw","raw":"{ \n    \"email\": \"alex@taqtile.com\",\n\t\"appVersion\": \"3.0.0 (276)\",\n    \"title\": \"Testing from Postman\",\n\t\"description\": \"Description content\",\n\t\"device\": \"iPad13,8 OS 26.2\",\n    \"attachments\": []\n} "},"url":"https://ios.taqmanifest.com/rest/bug-report-github"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 20 Nov 2025 20:09:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"22"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"16-ChcZhlw1slqtGuDwxLsUclql5gE\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Success!\"\n}"}],"_postman_id":"b05f835a-787c-45bf-b63b-635343d5b962"}],"id":"61ddcd78-e02b-4520-ac9d-44717bd92434","event":[{"listen":"prerequest","script":{"id":"e88a78c7-3615-4a58-bcdc-641267ead622","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fad051fe-d5f2-440b-afb0-a25fbc4a05fa","type":"text/javascript","exec":[""]}}],"_postman_id":"61ddcd78-e02b-4520-ac9d-44717bd92434","description":""},{"name":"IoT","item":[{"name":"Add IoT","id":"af8db1eb-f45f-41a8-bf78-f3a17f01e280","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: IotPIMappingInput!) {\n    addIOTMapping(data: $data)\n    }","variables":"{\n  \"data\": {\n    \"meterId\": 2342,\n    \"piPointId\": \"extId123\",\n    \"assetId\": 1891\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"af8db1eb-f45f-41a8-bf78-f3a17f01e280"},{"name":"Update IoT","id":"acf9915c-6410-4a77-bc0e-56a1484dd262","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: IotPIMappingInput!) {\n    updateIOTMapping(id: $id, data: $data)\n    }","variables":"{\n  \"id\": 84,\n  \"data\": {\n    \"meterId\": 2342,\n    \"piPointId\": \"extId321\",\n    \"assetId\": 1891\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"disabled":true,"key":"Authorization","value":""}],"variable":[]}},"response":[],"_postman_id":"acf9915c-6410-4a77-bc0e-56a1484dd262"},{"name":"Delete IoT","id":"f9ec4942-8e25-4d76-aef5-c546daf18351","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: Int!) {\n    deleteIOTMapping(id: $data)\n    }","variables":"{\n    \"data\": 85\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9ec4942-8e25-4d76-aef5-c546daf18351"}],"id":"43c06aad-1bb0-4784-b076-62bbf8a0347b","_postman_id":"43c06aad-1bb0-4784-b076-62bbf8a0347b","description":""},{"name":"Touch Alignment","item":[{"name":"Add touch alignment data","id":"63f2f6d2-1914-4375-856a-d2451d814951","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($assetClassId: Int!, $data: TouchAlignmentDataInput!){\n    addTouchAlignmentData(assetClassId: $assetClassId, data: $data)\n    }","variables":"{\n    \"assetClassId\": 2681,\n    \"data\": {\n      \"offset\": [2,3,4]\n    }\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"63f2f6d2-1914-4375-856a-d2451d814951"},{"name":"Get touch alignment labels","id":"6a0d8e76-8b3a-4f10-84b6-4fe517b4d94e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($assetClassId: Int) {\n  assetClass(id: $assetClassId) {\n    name\n    touchAlignmentData {\n      id\n      offset\n      rotationOffset\n      distances\n      fileIdA {\n        id\n        originalName\n      }\n      fileIdB {\n        id\n        originalName\n      }\n      fileIdC {\n        id\n        originalName\n      }\n      fileIdMain {\n        id\n        originalName\n      }\n    }\n  }\n}\n","variables":"{\n        \"assetClassId\": 2681\n    }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","description":"<p>Request for touch alignment labels via modified get asset class by ID request.  </p>\n<p>Labels:</p>\n<p>*   tppTagOffset - Float array\n*   tppTagRotationOffset - Float array\n*   tppDistances - Float array\n*   tppFileID - String array</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a0d8e76-8b3a-4f10-84b6-4fe517b4d94e"},{"name":"Update touch alignment labels","id":"d52926ac-065c-496b-b578-30d8760ab1c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: TouchAlignmentDataInput!){\n    updateTouchAlignmentData(id:$id, data: $data)\n}","variables":"{\n    \"id\": 31,\n    \"data\": {\n      \"offset\": [5,3,9]\n    }\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","description":"<p>Request to post touch alignment labels via modified update asset class request.</p>\n<p>Labels:</p>\n<p>* tppTagOffset - Float array<br />* tppTagRotationOffset - Float array<br />* tppDistances - Float array<br />* tppFileID - String array</p>\n","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d52926ac-065c-496b-b578-30d8760ab1c7"},{"name":"Delete Touch Data","id":"791cc65b-28da-49bd-93c8-c22454077825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($assetClassId: Int!) {\n    deleteTouchAlignmentData(assetClassId: $assetClassId)\n    }","variables":"{\n        \"assetClassId\": 123\n    }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"791cc65b-28da-49bd-93c8-c22454077825"}],"id":"54358fd8-88d7-4cea-95d4-68df2230854d","_postman_id":"54358fd8-88d7-4cea-95d4-68df2230854d","description":""},{"name":"DeviceTypes","item":[{"name":"Add deviceType","id":"717a8336-8c68-4269-95ea-e63b9a9ec640","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: DeviceTypeInput!) {\n    addDeviceType(data: $data)\n    }","variables":"{\n    \"data\": {\n        \"name\": \"testDevice\",\n        \"description\": \"postman\",\n        \"make\": \"foo\"\n    }\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"717a8336-8c68-4269-95ea-e63b9a9ec640"},{"name":"Get deviceTypes","id":"31f2b033-5d33-40b2-aca8-fe18e30146a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\n    getDeviceTypes{id, name}\n    }","variables":""},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"31f2b033-5d33-40b2-aca8-fe18e30146a2"},{"name":"Update deviceType","id":"c1baa6ff-53ba-4fe0-afc6-d74e00c3e835","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: DeviceTypeInput!) {\n    updateDeviceType(id: $id, data: $data)\n    }","variables":"{\n    \"id\": 26,\n    \"data\": {\n        \"name\": \"updatedTestDevice\",\n        \"description\": \"updated postman\",\n        \"make\": \"bar\"\n    }\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1baa6ff-53ba-4fe0-afc6-d74e00c3e835"},{"name":"Remove deviceType","id":"58b93543-ad13-42a6-87a3-8fa996d0c90d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!) {\n    removeDeviceType(id: $id)\n    }","variables":"{\n    \"id\": 26\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"58b93543-ad13-42a6-87a3-8fa996d0c90d"}],"id":"751f2a55-371e-479d-b7ad-126a46f95e89","_postman_id":"751f2a55-371e-479d-b7ad-126a46f95e89","description":""},{"name":"Devices","item":[{"name":"Add device","id":"8e8980bf-06d1-4cf9-bcbb-1ef01c3eea6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($deviceTypeId: Int!, $data: DeviceInput!) { \n    addDevice(deviceTypeId: $deviceTypeId, data: $data) \n    }","variables":"{\n    \"deviceTypeId\": 28,\n    \"data\": {\n      \"deviceTypeId\": 28,\n      \"name\": \"testAddDevice\",\n      \"locationId\": 2681,\n      \"status\": \"Active\",\n      \"position\": [0, 1, 2],\n      \"rotation\": [0, 1, 2]\n    }\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e8980bf-06d1-4cf9-bcbb-1ef01c3eea6d"},{"name":"Get device by ID","id":"056c58e3-48bf-416c-80ea-80695fe51caa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query($id: Int!) {\n    getDeviceById(id: $id) {\n        id, \n        locationId, \n        status, \n        position, \n        rotation, \n        measurements {\n            id\n        }\n    }\n}","variables":"{\n    \"id\": 26\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"056c58e3-48bf-416c-80ea-80695fe51caa"},{"name":"Get devices","id":"9f03aa62-070e-42ef-a31a-b33748dd04af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\n    getDevices {\n        id, \n        locationId, \n        status, \n        position, \n        rotation, \n        measurements {\n            id, \n            source, \n            value\n        }\n    }\n}","variables":""},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f03aa62-070e-42ef-a31a-b33748dd04af"},{"name":"Update device","id":"84f89271-3b9e-4050-b26e-8174165a99b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: DeviceInput!) {\n    updateDevice(id: $id, data: $data)\n    }","variables":"{\n    \"id\": 26,\n    \"data\": {\n        \"name\": \"updatedTestDevice\",\n        \"locationId\": 2,  \n        \"deviceTypeId\": 3,\n        \"status\": \"Inactive\",\n        \"position\": [2,3,4],\n        \"rotation\": [4,5,6]\n    }\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"84f89271-3b9e-4050-b26e-8174165a99b0"},{"name":"Remove device","id":"43def4d4-e847-41c8-8868-ea0683beae4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!) {\n    removeDevice(id: $id)\n    }","variables":"{\n    \"id\": 27\n  }"},"options":{"graphql":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"43def4d4-e847-41c8-8868-ea0683beae4e"}],"id":"0bc8b364-9b36-4197-82a2-f6ce43a8b0fe","_postman_id":"0bc8b364-9b36-4197-82a2-f6ce43a8b0fe","description":""},{"name":"Domain logs","item":[{"name":"get logs","id":"e641fef2-ec2c-46bb-8fc2-29cefdf6f60e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/get-domain-logs/?filters={\"level\":[],\"userEmail\":[],\"action\":[], \"deleted_at\": true}&itemsPerPage=20&pageNumber=1&sort={\"propertyName\":\"id\",\"reverse\":true}","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","get-domain-logs",""],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"key":"filters","value":"{\"level\":[],\"userEmail\":[],\"action\":[], \"deleted_at\": true}"},{"key":"itemsPerPage","value":"20"},{"key":"pageNumber","value":"1"},{"key":"sort","value":"{\"propertyName\":\"id\",\"reverse\":true}"}],"variable":[]}},"response":[],"_postman_id":"e641fef2-ec2c-46bb-8fc2-29cefdf6f60e"},{"name":"restore logs","id":"ade49ce2-2ff7-463c-8eff-1289fa4a2c19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"raw","raw":"[\n    1, 2, 3\n]","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/get-domain-logs/restore","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","get-domain-logs","restore"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ade49ce2-2ff7-463c-8eff-1289fa4a2c19"},{"name":"delete logs","id":"f39885c2-61c7-4873-b5ec-c07c1922b4fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": [4],\n    \"force\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/get-domain-logs/","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","get-domain-logs",""],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f39885c2-61c7-4873-b5ec-c07c1922b4fe"},{"name":"get logs","id":"a22b9ac6-2797-4869-9a50-97c223b9064e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($filters: LogsFiltersInputType, \n$itemsPerPage: Int\n  $pageNumber: Int,\n  $orgId: [Int]) {\n    logs(filters: $filters\n        itemsPerPage: $itemsPerPage\n        pageNumber: $pageNumber\n        orgId: $orgId) {\n        id\n        entityId\n        parent\n        parentId\n        userId\n        userEmail\n        orgIds\n        action\n        level\n        message\n        meta\n        acknowledged\n        locationId\n        createdAt\n        updatedAt\n        deletedAt\n    }\n}","variables":"{\n    \"itemsPerPage\": 10,\n    \"pageNumber\": 1,\n    \"orgId\": [],\n    \"filters\": {\n        \"level\": [],\n        \"userEmail\": [],\n        \"action\": [],\n        \"status\": []\n    }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a22b9ac6-2797-4869-9a50-97c223b9064e"},{"name":"get logs filters","id":"3203c65c-b8d1-4f75-8346-5f5595000e90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query {\n    logsFilters {\n        level\n        userEmail\n        action\n        createdAt {\n            from\n            to\n        }\n    }\n}","variables":"{\n    \"orgId\": []\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3203c65c-b8d1-4f75-8346-5f5595000e90"},{"name":"delete logs","id":"a2633c97-eb4c-4ca7-89ea-e839f822c95f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($ids: [Int]!, $force:Boolean) {\n    deleteLogs(ids: $ids, force: $force)\n    }","variables":"{\n    \"ids\": []\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2633c97-eb4c-4ca7-89ea-e839f822c95f"},{"name":"restore logs","id":"90c168c2-9a9f-46e2-8320-b3ba184bb6c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($ids: [Int]!) {\n    restoreLogs(ids: $ids)\n    }","variables":"{\n    \"ids\": []\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"90c168c2-9a9f-46e2-8320-b3ba184bb6c6"}],"id":"a297bb42-96f4-46da-a9ee-ad686b4839c1","_postman_id":"a297bb42-96f4-46da-a9ee-ad686b4839c1","description":""},{"name":"ClientSettings","item":[{"name":"Get client settings","id":"90e48d0b-cfd4-438a-b632-05b78a61c126","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"query {\n  clientSettings {\n    name\n    id\n    idLogoFile\n    subdomain\n    qrSize\n    sessionTimeout\n    twoFactorEnabled\n    timeToReuseUserId\n    welcomeMessage\n    dismissEnabled\n    eulaText\n    eulaEnabled\n    fovmText\n    fovmEnabled\n    iotSettings\n    iotRefreshRate\n    remoteConnection\n    customRemoteOption {\n      urls\n      username\n      credential\n    }\n    targetBitrate\n    quality\n    securityRules {\n      minPasswordLength\n      forceResetPasswordAfter\n      notContainUsername\n      hasOneUppercaseLetter\n      hasOneLowercaseLetter\n      hasOneDigit\n      hasOneNonAlphabeticCharacter\n      minChangeOfCharacters\n      numOfOldPasswordsToCompare\n    }\n    faultNoteSettings {\n      availableNotes\n      requiredNotes\n    }\n    orgConfiguration {\n        status\n    }\n  }\n}\n","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"90e48d0b-cfd4-438a-b632-05b78a61c126"},{"name":" Update client settings","id":"7c32fa87-a154-4a19-a908-3fc41a225dc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($settings: ClientSettingsInput!) {\n    updateClientSettings(data: $settings)\n    }","variables":"{\n    \"settings\": {\n\t\"customRemoteOption\": {\n        \"urls\": \"stun:expertconnect.1.taqtile.com:5349\",\n        \"username\": null,\n        \"credential\": null\n    },\n    \"securityRules\": {\n        \"forceResetPasswordAfter\": \"0\",\n        \"hasOneDigit\": false,\n        \"hasOneLowercaseLetter\": false,\n        \"hasOneNonAlphabeticCharacter\": false,\n        \"hasOneUppercaseLetter\": false,\n        \"minChangeOfCharacters\": 2,\n        \"minPasswordLength\": 2,\n        \"notContainUsername\": false,\n        \"numOfOldPasswordsToCompare\": 2\n\n    }\n}\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c32fa87-a154-4a19-a908-3fc41a225dc9"}],"id":"33e15af9-dc49-41b6-bb71-33874e1d9364","_postman_id":"33e15af9-dc49-41b6-bb71-33874e1d9364","description":""},{"name":"Eula,SaaS and other ","item":[{"name":"MSA","item":[{"name":"Get all MAS's","id":"26377bb2-a4d5-4cbc-99ed-626ec096f7b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://admin.{{BASE_URL}}/admin/agreement/","urlObject":{"protocol":"{{PROTOCOL}}","path":["admin","agreement",""],"host":["admin","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"26377bb2-a4d5-4cbc-99ed-626ec096f7b9"},{"name":"Download MAS by id","id":"32e2d2fe-1214-47b6-9a9b-0772fbacce53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://admin.{{BASE_URL}}/admin/agreement/download/1","urlObject":{"protocol":"{{PROTOCOL}}","path":["admin","agreement","download","1"],"host":["admin","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"32e2d2fe-1214-47b6-9a9b-0772fbacce53"},{"name":"Upload MAS","id":"9cf2ef34-3605-44d5-a5d0-22aaa1f3a38f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","contentType":"text/html","value":null}]},"url":"{{PROTOCOL}}://admin.{{BASE_URL}}/admin/agreement/upload","urlObject":{"protocol":"{{PROTOCOL}}","path":["admin","agreement","upload"],"host":["admin","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9cf2ef34-3605-44d5-a5d0-22aaa1f3a38f"},{"name":"Get actual MAS","id":"056a2e65-7999-4d1b-b0a8-2539a3e7e473","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://admin.{{BASE_URL}}/admin/agreement/actual-agreement","urlObject":{"protocol":"{{PROTOCOL}}","path":["admin","agreement","actual-agreement"],"host":["admin","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"056a2e65-7999-4d1b-b0a8-2539a3e7e473"},{"name":"Get accepted agreements","id":"fb7262db-8828-41dd-b53e-51696ac154f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://admin.{{BASE_URL}}/admin/agreement/accepted-agreements","urlObject":{"protocol":"{{PROTOCOL}}","path":["admin","agreement","accepted-agreements"],"host":["admin","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb7262db-8828-41dd-b53e-51696ac154f5"},{"name":"Acknowledge MAS","id":"ac0cd62f-8614-429b-adce-46402a980f57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://admin.{{BASE_URL}}/admin/agreement/acknowledge/1","urlObject":{"protocol":"{{PROTOCOL}}","path":["admin","agreement","acknowledge","1"],"host":["admin","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac0cd62f-8614-429b-adce-46402a980f57"},{"name":"Accept MSA on client","id":"8fb9baa9-4b06-42ce-8d52-be487664720f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/accept-msa/","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","accept-msa",""],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8fb9baa9-4b06-42ce-8d52-be487664720f"},{"name":"Download MSA on client","id":"7907d9ad-6660-4704-94cb-09f1a957772e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/download-agreement","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","download-agreement"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7907d9ad-6660-4704-94cb-09f1a957772e"},{"name":"Have client accepted MSA","id":"10f69bdf-22b4-4cf9-982b-d2d96a774310","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/have-client-accepted-msa","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","have-client-accepted-msa"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"10f69bdf-22b4-4cf9-982b-d2d96a774310"}],"id":"a8e31def-dece-48e3-8738-95cabcacc58c","_postman_id":"a8e31def-dece-48e3-8738-95cabcacc58c","description":""},{"name":"SaaS Acceptance","id":"0a30f9b9-71ae-4554-af00-dbed91e22278","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{ \n\t\"clientEmail\": \"admin@videotesting.com\"\n} ","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/saas-acceptance","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","saas-acceptance"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a30f9b9-71ae-4554-af00-dbed91e22278"},{"name":"get Admin Email ","id":"9f193d57-b5c5-4c81-9c0d-a9673047e3d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/get-admin-email","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","get-admin-email"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f193d57-b5c5-4c81-9c0d-a9673047e3d6"},{"name":"Support Acceptance","id":"d8cd5aed-76d1-4fc1-ae73-5613b1c03cd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{ \n\t\"clientEmail\": \"admin@videotesting.com\",\n\t\"support\": false\n} ","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/support-acceptance","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","support-acceptance"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8cd5aed-76d1-4fc1-ae73-5613b1c03cd9"},{"name":"Get client unathorized information","id":"4c0062c0-41a5-4d14-bc0c-927851d741e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/client-info","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","client-info"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c0062c0-41a5-4d14-bc0c-927851d741e9"},{"name":"Get user EULA status","id":"776f0b19-02f7-44d9-a48a-8af791ea9421","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"userId\" : 14\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/user-eula","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","user-eula"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"776f0b19-02f7-44d9-a48a-8af791ea9421"},{"name":"Change user EULA status","id":"c3408db8-02b7-4211-993d-9bc1b5a750d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"userId\" : 14,\n\t\"eulaStatus\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/change-user-eula","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","change-user-eula"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c3408db8-02b7-4211-993d-9bc1b5a750d4"},{"name":"Update password by Admin","id":"771ccc1b-9ead-46ab-a0ef-218bfbdab910","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"raw","raw":"{ \"userId\": 7, \n  \"password\": \"newpassword1\", \n  \"passwordCheck\": \"newpassword1\"}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/update-password-by-admin","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","update-password-by-admin"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"771ccc1b-9ead-46ab-a0ef-218bfbdab910"}],"id":"b5297abd-a5c2-42c8-b129-cfbc5c1b3746","_postman_id":"b5297abd-a5c2-42c8-b129-cfbc5c1b3746","description":""},{"name":"Diagnostics","item":[{"name":"Clear diagnostics","id":"a15357dd-06b8-4bae-b7f7-2d04e5e6dd44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/clear-diagnostics?userId=739","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","clear-diagnostics"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"key":"userId","value":"739"}],"variable":[]}},"response":[],"_postman_id":"a15357dd-06b8-4bae-b7f7-2d04e5e6dd44"}],"id":"bcf8dc01-e242-4e3a-8c74-fc410fda0580","_postman_id":"bcf8dc01-e242-4e3a-8c74-fc410fda0580","description":""},{"name":"Work Orders","item":[{"name":"getWorkOrders","id":"a22b8036-54c7-4053-b4e2-0fff97eeb227","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query ($status: String) { \n    workOrders (status: $status) {\n        id,\n        assignedUser {\n            id,\n            firstName,\n            lastName\n            },\n        asset {\n            id, \n            serialNumber, \n            assetClass {\n                id\n                }\n                }, \n            template {\n                id, \n                author {\n                    id, \n                    email\n                    }\n                    }, \n                    title, \n                    type, \n                    status\n                    }\n                    }","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a22b8036-54c7-4053-b4e2-0fff97eeb227"},{"name":"getWorkOrderById","id":"1de06c2c-8787-427a-96ed-7a548fb60837","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($id: Int!){workOrder(id:$id) {id,assignedUser {id,firstName,lastName}, externalId, asset {id, serialNumber, assetClass {id}}, template {id, author {id, email}}, title, description, type, status}}","variables":"{\n    \"id\": 5\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1de06c2c-8787-427a-96ed-7a548fb60837"},{"name":"Update work order","id":"c307a7f5-03a5-4b70-8fc3-ad1943ac79b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($id: Int!, $data: WorkOrderInput! ){updateWorkOrder(id:$id, data: $data)}","variables":"{\n  \t\"id\": 3,\n  \t\"data\": {\n  \t\t\"title\":\"assd\"\n  \t}\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c307a7f5-03a5-4b70-8fc3-ad1943ac79b5"},{"name":"Add work order","id":"42bd68db-4bc1-41c3-b572-9e3525844234","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: WorkOrderInput!){addWorkOrder(data: $data)}","variables":"{\n    \"data\": {\n        \"title\": \"test\",\n        \"description\": \"test\",\n        \"externalId\": \"12321212\",\n        \"type\": \"Normal\"\n    }\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"42bd68db-4bc1-41c3-b572-9e3525844234"},{"name":"Delete work order","id":"77c0472e-2e98-47b2-b464-5381caa35305","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query($id: Int!){workOrder(id:$id) {id,assignedUser {id,firstName,lastName}, asset {id, serialNumber, assetClass {id}}, template {id, author {id, email}}, title, description, type, status}}","variables":"{\n  \t\"id\": 5\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"77c0472e-2e98-47b2-b464-5381caa35305"},{"name":"Add Job with work order","id":"e0a52396-408d-465f-a41c-d909af3d82cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: JobInput!, $workOrderId: Int){addJob(data: $data, workOrderId: $workOrderId)}","variables":"{\n    \"data\": {\n      \"jobTemplate\": 3554\n    },\n    \"workOrderId\": 6\n  }"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}:{{PORT}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","port":"{{PORT}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0a52396-408d-465f-a41c-d909af3d82cd"}],"id":"1e4f4d64-6d1f-43f3-a278-bdb24f46e6cc","_postman_id":"1e4f4d64-6d1f-43f3-a278-bdb24f46e6cc","description":""},{"name":"Point Cloud alignment","item":[{"name":"Download ply file","id":"e9481ec1-f84f-4fad-91a6-eb5285d03105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"assetClassId\": 2\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/alignment-data/download-ply-file","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","alignment-data","download-ply-file"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9481ec1-f84f-4fad-91a6-eb5285d03105"},{"name":"Delete","id":"0f2e77df-ac80-490f-be5c-3ec9e6025020","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"assetClassId\": 2\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/alignment-data/delete","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","alignment-data","delete"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f2e77df-ac80-490f-be5c-3ec9e6025020"},{"name":"Get file and matrix","id":"c4048567-ccb9-4e38-b098-be7886055594","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/alignment-data/get-point-cloud-by-id?assetClassId=2","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","alignment-data","get-point-cloud-by-id"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"key":"assetClassId","value":"2"}],"variable":[]}},"response":[],"_postman_id":"c4048567-ccb9-4e38-b098-be7886055594"},{"name":"Create","id":"1ccdd074-c8d3-4237-af0a-509bec7c0fa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","fileNotInWorkingDirectoryWarning":"This file isn't in your working directory. Teammates you share this request with won't be able to use this file. To make collaboration easier you can setup your working directory in Settings.","filesNotInWorkingDirectory":["/Users/roma-milosh/Downloads/human_eye_ply/Human_Eye_ply.ply"],"value":null},{"key":"assetClassId","value":"2","type":"text"},{"key":"zeroPointPosition","value":"[[0.9966198801994324, 0, -0.0821513757109642, 0],[0, 1, 0, 0],[0.0821513757109642, 0,  0.9966198801994324,  0], [0.486209899187088, -0.6986712217330933, -1.5252424478530884, 1]]","type":"text","contentType":"application/json"}]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/alignment-data/upload-data","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","alignment-data","upload-data"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ccdd074-c8d3-4237-af0a-509bec7c0fa7"},{"name":"Update","id":"bda841c8-a4d7-403f-81d0-ab601abe30a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"formdata","formdata":[{"key":"assetClassId","value":"2","type":"text"},{"key":"zeroPointPosition","value":"[[0.9966198801994324, 0, -0.0821513757109642, 0],[0, 1, 1, 0],[0.0821513757109642, 0,  0.9966198801994324,  0], [0.486209899187088, -0.6986712217330933, -1.5252424478530884, 1]]","type":"text"},{"key":"file","type":"file","fileNotInWorkingDirectoryWarning":"This file isn't in your working directory. Teammates you share this request with won't be able to use this file. To make collaboration easier you can setup your working directory in Settings.","filesNotInWorkingDirectory":["/Users/roma-milosh/Downloads/Eva-ply/Eva-ply.ply"],"value":null},{"key":"name","value":"eva","type":"text"}]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/alignment-data/upload-data","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","alignment-data","upload-data"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bda841c8-a4d7-403f-81d0-ab601abe30a0"}],"id":"d9107e3e-1d0e-4c83-b174-aa6a34242cf2","description":"<p>iPad project for aligning 2 point clouds</p>\n","_postman_id":"d9107e3e-1d0e-4c83-b174-aa6a34242cf2"},{"name":"Third party API's","item":[{"name":"Get animations name","item":[{"name":"Create work item","id":"9ceeaa53-ca04-4d4f-83cc-8da0ad657680","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json-patch+json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.Title\",\n    \"from\": null,\n    \"value\": \"Sample of bug report\"\n  },\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.Description\",\n    \"from\": null,\n    \"value\": \"Decsription of a sample of bug report <img src='https://dev.azure.com/taqtile/_apis/wit/attachments/2ff75a55-a78e-4d07-971a-842acd6b5060?fileName=largefile.png'> <img src=https://dev.azure.com/taqtile/_apis/wit/attachments/f73dee40-ea89-4105-8a4e-64d1ba1e3492?fileName=filename.png\" \n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://dev.azure.com/taqtile/Manifest/_apis/wit/workitems/$bug?api-version=5.1","urlObject":{"protocol":"https","path":["taqtile","Manifest","_apis","wit","workitems","$bug"],"host":["dev","azure","com"],"query":[{"key":"api-version","value":"5.1"}],"variable":[]}},"response":[],"_postman_id":"9ceeaa53-ca04-4d4f-83cc-8da0ad657680"}],"id":"28dbb85a-02b5-4c8c-82b0-50d225b5c786","_postman_id":"28dbb85a-02b5-4c8c-82b0-50d225b5c786","description":""},{"name":"Dev Ops","item":[{"name":"Create work item","id":"ec74e261-1e5c-45db-bf36-74767b14f8b8","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json-patch+json"}],"body":{"mode":"raw","raw":"[\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.Title\",\n    \"from\": null,\n    \"value\": \"Sample of bug report\"\n  },\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.Description\",\n    \"from\": null,\n    \"value\": \"Decsription of a sample of bug report <img src='https://dev.azure.com/taqtile/_apis/wit/attachments/2ff75a55-a78e-4d07-971a-842acd6b5060?fileName=largefile.png'> <img src=https://dev.azure.com/taqtile/_apis/wit/attachments/f73dee40-ea89-4105-8a4e-64d1ba1e3492?fileName=filename.png\" \n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://dev.azure.com/taqtile/Manifest/_apis/wit/workitems/$bug?api-version=5.1","urlObject":{"protocol":"https","path":["taqtile","Manifest","_apis","wit","workitems","$bug"],"host":["dev","azure","com"],"query":[{"key":"api-version","value":"5.1"}],"variable":[]}},"response":[],"_postman_id":"ec74e261-1e5c-45db-bf36-74767b14f8b8"},{"name":"Add attachments","id":"43a4c444-28d4-4c4a-a3db-a8bafc5d43f9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{}},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json-patch+json"},{"key":"Authorization","type":"text","value":"Basic gdlqmtpb7azb5at3gbkiwov7ifko22ez7t3uglbmfjhxgtwhxckq"}],"body":{"mode":"raw","raw":"[\n  {\n    \"op\": \"add\",\n    \"path\": \"/fields/System.Title\",\n    \"from\": null,\n    \"value\": \"Sample task\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://dev.azure.com/taqtile/Manifest/_apis/wit/workitems/$bug?api-version=5.1","urlObject":{"protocol":"https","path":["taqtile","Manifest","_apis","wit","workitems","$bug"],"host":["dev","azure","com"],"query":[{"key":"api-version","value":"5.1"}],"variable":[]}},"response":[],"_postman_id":"43a4c444-28d4-4c4a-a3db-a8bafc5d43f9"}],"id":"2e427b68-f721-4329-bada-199b7739a298","_postman_id":"2e427b68-f721-4329-bada-199b7739a298","description":""}],"id":"318ee57d-70a3-4d2c-a697-ef5d22390d9c","_postman_id":"318ee57d-70a3-4d2c-a697-ef5d22390d9c","description":""},{"name":"Maker Folders","item":[{"name":"Delete","id":"6c6c6264-618f-49e9-b3d8-ad94e72ff668","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($orgId: Int!, $id: Int!) {\n    deleteFolder(orgId: $orgId, id: $id)\n}","variables":"{\n  \"id\": 2,\n  \"orgId\": 17\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"cad68654-3d56-42ab-985f-363cf9a60a70","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($orgId: Int!, $id: Int!) {\n    deleteFolder(orgId: $orgId, id: $id)\n}","variables":"{\n  \"id\": 2,\n  \"orgId\": 3\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 16 Oct 2025 15:56:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"31"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"1f-ySyEpWY0kj/7sLtrr3AOhNdQe4o\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"deleteFolder\": true\n    }\n}"}],"_postman_id":"6c6c6264-618f-49e9-b3d8-ad94e72ff668"},{"name":"Create","id":"fe87f137-6de5-44d4-a6eb-0042f621a5fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: FolderInput!) {\n    createFolder(data: $data) {\n        id, name, parentId, userId, createdAt\n    }\n}","variables":"{\n  \"data\": {\n    \"name\": \"Fodler\",\n    \"parentId\": null,\n    \"orgId\":17\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"51ef71b1-2b60-431c-9b73-6602cef64401","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: FolderInput!) {\n    createFolder(data: $data) {\n        id, name, parentId, userId, createdAt\n    }\n}","variables":"{\n  \"data\": {\n    \"name\": \"My Fodler\",\n    \"parentId\": null,\n    \"orgId\": 103\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Wed, 15 Oct 2025 22:03:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"111"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"6f-biCufpgz1yGwDtn5WfLXmG+N7rQ\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"createFolder\": {\n            \"id\": 1,\n            \"name\": \"My Fodler\",\n            \"parentId\": null,\n            \"userId\": 945,\n            \"createdAt\": \"1760565812503\"\n        }\n    }\n}"}],"_postman_id":"fe87f137-6de5-44d4-a6eb-0042f621a5fe"},{"name":"Update","id":"574c9a2e-bc57-4351-9c35-1721030e4838","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: FolderInput!, $id: Int!) {\n    updateFolder(data: $data, id:$id) {\n        id, name, parentId, userId, createdAt\n    }\n}","variables":"{\n    \"id\": 1,\n  \"data\": {\n    \"name\": \"Fodler\",\n    \"parentId\": null,\n    \"orgId\":17\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"ca695151-19d6-443d-b8fd-50f7a0a39847","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: FolderInput!, $id: Int!) {\n    updateFolder(data: $data, id:$id) {\n        id, name, parentId, userId, createdAt\n    }\n}","variables":"{\n    \"id\": 3,\n  \"data\": {\n    \"name\": \"Folder rename\",\n    \"orgId\":3\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 16 Oct 2025 15:57:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"113"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"71-FjkbmIxd0gJ6RysziRUdETQu6Lo\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"updateFolder\": {\n            \"id\": 3,\n            \"name\": \"Folder rename\",\n            \"parentId\": null,\n            \"userId\": 5,\n            \"createdAt\": \"1760629645816\"\n        }\n    }\n}"}],"_postman_id":"574c9a2e-bc57-4351-9c35-1721030e4838"},{"name":"get Folders With Info","id":"55b215b4-5255-445d-b105-65564a5a37d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"},{"key":"ClientVersion","value":"{{CLIENT_VERSION_HEADER}}","type":"text"}],"body":{"mode":"graphql","graphql":{"query":"mutation($parentId: Int, $orgId: Int!, $itemsPerPage: Int!, $pageNumber: Int!) {\n    getFoldersWithInfo(parentId: $parentId, orgId: $orgId, itemsPerPage: $itemsPerPage, pageNumber: $pageNumber) {\n        folders {id, name,templatesCount, thumbnails}\n        templates {id, title, assetClassId, thumbnailUrl {id, url}}\n    }\n}","variables":"{\n    \"parentId\": null,\n      \"orgId\": 23,\n    \"itemsPerPage\": 5,\n      \"pageNumber\": 1\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"55b215b4-5255-445d-b105-65564a5a37d3"},{"name":"move Folder","id":"382fea7b-d290-44c2-8d05-574c219e4e59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($folderId: Int!, $orgId: Int!, $newParentId: Int) {\n    moveFolder(folderId: $folderId, orgId: $orgId, newParentId: $newParentId) { id, name, userId, parentId}\n}","variables":"{\n    \"folderId\": 1,\n      \"orgId\": 17,\n   \"newParentId\": null\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"3e1dbfe6-66a7-4657-9118-44cac877beb5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($folderId: Int!, $orgId: Int!, $newParentId: Int) {\n    moveFolder(folderId: $folderId, orgId: $orgId, newParentId: $newParentId) { id, name, userId, parentId}\n}","variables":"{\n    \"folderId\": 4,\n      \"orgId\": 3,\n   \"newParentId\": 3\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 16 Oct 2025 16:06:23 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"75"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"4b-P3+sf2qYHyVBQrDu6Izu6BTERsw\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"moveFolder\": {\n            \"id\": 4,\n            \"name\": \"Folder 2\",\n            \"userId\": 5,\n            \"parentId\": 3\n        }\n    }\n}"}],"_postman_id":"382fea7b-d290-44c2-8d05-574c219e4e59"},{"name":"move template","id":"3cfac929-101c-45c0-b92d-825fbfdcb383","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($targetFolderId: Int, $orgId: Int!, $templateId: Int!) {\n    moveTemplate(targetFolderId: $targetFolderId, orgId: $orgId, templateId: $templateId)\n}","variables":"{\n    \"targetFolderId\": null,\n      \"orgId\": 17,\n   \"templateId\": 5\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"6ff361f3-8c9e-4c9c-8867-e8f68a6ab6f9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($targetFolderId: Int, $orgId: Int!, $templateId: Int!) {\n    moveTemplate(targetFolderId: $targetFolderId, orgId: $orgId, templateId: $templateId)\n}","variables":"{\n    \"targetFolderId\": null,\n      \"orgId\": 3,\n   \"templateId\": 3\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 16 Oct 2025 17:40:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"31"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"1f-JOkcMwytcJATUAY2Z/G84ARRaOo\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"moveTemplate\": true\n    }\n}"}],"_postman_id":"3cfac929-101c-45c0-b92d-825fbfdcb383"},{"name":"Move Templates","id":"07b5ffa4-9a85-4ebe-84b0-95d2a7320dfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($targetFolderId: Int, $orgId: Int!, $templateId: Int!) {\n    moveTemplate(targetFolderId: $targetFolderId, orgId: $orgId, templateId: $templateId)\n}","variables":"{\n    \"targetFolderId\": null,\n      \"orgId\": 17,\n   \"templateId\": 5\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"7344ecaa-dcb8-4426-8fa6-1ca1921a14f9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($targetFolderId: Int, $orgId: Int!, $templateIds: [Int!]!) {\n    moveTemplates(targetFolderId: $targetFolderId, orgId: $orgId, templateIds: $templateIds)\n}","variables":"{\n    \"targetFolderId\": 21,\n    \"orgId\": 1,\n    \"templateIds\": [6655, 6651]\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Tue, 16 Dec 2025 20:31:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"32"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"20-aRIyZsQ+A5p2E17bz77c3F3Rah8\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"moveTemplates\": true\n    }\n}"}],"_postman_id":"07b5ffa4-9a85-4ebe-84b0-95d2a7320dfd"}],"id":"705b5835-0de6-431e-8fbc-69eacff6b89c","_postman_id":"705b5835-0de6-431e-8fbc-69eacff6b89c","description":""},{"name":"Note","item":[{"name":"update note","id":"3e274084-89b5-4b89-8da3-f620592ddce5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"mutation($data: NoteInputWithId!) {\n    updateNote(data: $data)\n}","variables":"{\n  \"data\": {\n    \"id\": 443401,\n    \"text\": \"UPDATED TEXT\"\n  }\n}"}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e274084-89b5-4b89-8da3-f620592ddce5"}],"id":"0298d35d-96e2-47bd-b5a7-cfcfc72d1248","_postman_id":"0298d35d-96e2-47bd-b5a7-cfcfc72d1248","description":""},{"name":"AIVerify [dev,test]","item":[{"name":"Validate for Author","id":"8a210b91-ad3b-4414-b3ec-7171b70540d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"reference","description":"<p>Photo will be used as reference</p>\n","type":"file","uuid":"18618e0f-f645-4de6-8a1b-15bfde93f44e","src":"/Users/akosmachyov/Downloads/DataSets/my-photos/toolbox/valid/3.JPG"},{"key":"test","type":"file","uuid":"56088aff-86cb-4c2a-a71f-1f1a2f9d05b7","description":"<p>User photo</p>\n","src":"/Users/akosmachyov/Downloads/DataSets/my-photos/toolbox/wrong/3.JPG"},{"key":"prompt","value":"Check for missed tools","type":"text","uuid":"144d89d0-ad24-4210-9208-7f21312db487","description":"<p>Optional prompt</p>\n"},{"key":"threshold","value":"0.6","type":"text","uuid":"f6e75b4b-e038-4e20-8100-2cb4f9482226","description":"<p>Optional threshold 0..1</p>\n"}]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/photo-verification/validate","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","photo-verification","validate"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"8a2f70e1-4943-47c8-b053-7e717fa50399","name":"success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"reference","description":"Photo will be used as reference","type":"file","uuid":"18618e0f-f645-4de6-8a1b-15bfde93f44e","src":"/Users/akosmachyov/Downloads/DataSets/my-photos/toolbox/wrong/3.JPG"},{"key":"test","type":"file","uuid":"56088aff-86cb-4c2a-a71f-1f1a2f9d05b7","description":"User photo","src":"/Users/akosmachyov/Downloads/DataSets/my-photos/toolbox/wrong/5.JPG"},{"key":"prompt","value":"Check for missed tools","type":"text","uuid":"144d89d0-ad24-4210-9208-7f21312db487","description":"Optional prompt"},{"key":"threshold","value":"0.6","type":"text","uuid":"f6e75b4b-e038-4e20-8100-2cb4f9482226","description":"Optional threshold 0..1"}]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/photo-verification/validate"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Wed, 18 Feb 2026 22:25:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"94"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"5e-iXvQy0FH1XRhEECns9hD85tl4A4\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"score\": 0.45,\n    \"confidence\": 0.9,\n    \"bboxes\": [\n        {\n            \"x\": 0.65,\n            \"y\": 0.25,\n            \"w\": 0.25,\n            \"h\": 0.35\n        }\n    ],\n    \"valid\": false\n}"}],"_postman_id":"8a210b91-ad3b-4414-b3ec-7171b70540d1"},{"name":"Operator compare","id":"78080942-b92f-49c6-8f35-47ec21516993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"stepVerificationId","value":"3","type":"text","uuid":"438b41cd-dda5-4b4a-bb18-27caf728b5ed"},{"key":"test","type":"file","uuid":"350f531e-3781-40d5-b1b1-abf03564a167","src":"/Users/akosmachyov/Downloads/DataSets/my-photos/toolbox/wrong/5.JPG"}]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/photo-verification/compare","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","photo-verification","compare"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"78080942-b92f-49c6-8f35-47ec21516993"},{"name":"Export Logs","id":"c5b35a90-d841-4361-9bd7-ed33cd4eaf63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/photo-verification/export?startDate=2026-04-01T00%3A00%3A00Z&endDate=2026-04-10T23%3A59%3A59Z&feedbackState=positive","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","photo-verification","export"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[{"key":"startDate","value":"2026-04-01T00%3A00%3A00Z"},{"key":"endDate","value":"2026-04-10T23%3A59%3A59Z"},{"description":{"content":"<p>with-feedback, without-feedback, positive, negative</p>\n","type":"text/plain"},"key":"feedbackState","value":"positive"}],"variable":[]}},"response":[{"id":"1c718ed5-d92e-409d-9e96-deec6d6e9e09","name":"success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/photo-verification/export"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.29.5"},{"key":"Date","value":"Mon, 30 Mar 2026 21:17:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1331"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"533-KRpnC5GB9TLRe7KPRbcsqEBVqO0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 2,\n    \"runs\": [\n        {\n            \"aiVerifyRunId\": 2,\n            \"createdAt\": \"2026-03-30T21:12:29.725Z\",\n            \"updatedAt\": \"2026-03-30T21:12:29.725Z\",\n            \"config\": {\n                \"id\": 50,\n                \"type\": \"photo\",\n                \"threshold\": 0.8,\n                \"prompt\": null\n            },\n            \"input\": {\n                \"referenceFileId\": 195,\n                \"referenceFilePath\": \"uploads/autotests/6b3e5ebc-c5d3-459d-bf46-e03e9f7a0675/4WIS2SbwuG8LFVJbb2ZxRx6xI.jpeg\",\n                \"testFileId\": 194,\n                \"testFilePath\": \"uploads/autotests/5abb799a-1a26-471e-832e-defcb481c851/Bz61QYPiHU4nDApH2wRG2ecLS.jpeg\"\n            },\n            \"model\": \"claude-haiku-4-5-20251001\",\n            \"result\": {\n                \"score\": 0,\n                \"valid\": false,\n                \"reasons\": [\n                    \"viewpoint_mismatch\"\n                ],\n                \"confidence\": 0,\n                \"viewpointScore\": 0\n            },\n            \"feedback\": null\n        },\n        {\n            \"aiVerifyRunId\": 1,\n            \"createdAt\": \"2026-03-30T21:11:49.049Z\",\n            \"updatedAt\": \"2026-03-30T21:17:53.028Z\",\n            \"config\": {\n                \"id\": 49,\n                \"type\": \"photo\",\n                \"threshold\": 0.8,\n                \"prompt\": null\n            },\n            \"input\": {\n                \"referenceFileId\": 194,\n                \"referenceFilePath\": \"uploads/autotests/5abb799a-1a26-471e-832e-defcb481c851/Bz61QYPiHU4nDApH2wRG2ecLS.jpeg\",\n                \"testFileId\": 200,\n                \"testFilePath\": \"uploads/autotests/7df62a3a-07c4-4ba4-b480-e3543291ce77/godWkyUDVtQex7eGmAAUJ4vAZ.png\"\n            },\n            \"model\": \"claude-haiku-4-5-20251001\",\n            \"result\": {\n                \"score\": 1,\n                \"valid\": true,\n                \"reasons\": [],\n                \"confidence\": 1,\n                \"viewpointScore\": 1\n            },\n            \"feedback\": {\n                \"value\": \"positive\",\n                \"comment\": \"Testing feedback limit 200\",\n                \"userId\": 1,\n                \"userRoles\": [\n                    \"userAdmin\",\n                    \"publisher\",\n                    \"approver\",\n                    \"securityAdmin\",\n                    \"viewer\",\n                    \"operator\",\n                    \"author\",\n                    \"admin\"\n                ]\n            }\n        }\n    ],\n    \"filters\": {}\n}"}],"_postman_id":"c5b35a90-d841-4361-9bd7-ed33cd4eaf63"},{"name":"Feedback","id":"46c92764-50bd-4fde-b17a-7068cd017f5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"value\": \"\",\n    \"comment\": \"Testing feedback limit 200\"\n\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/feedback/","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","feedback",""],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"4bf80e1f-9b29-4b3d-9d9b-717901bf059c","name":"success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"value\": \"positive\",\n    \"comment\": \"Testing feedback limit 200\",\n    \"aiVerifyRunId\": 1\n}","options":{"raw":{"language":"json"}}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/photo-verification/feedback"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.29.5"},{"key":"Date","value":"Mon, 30 Mar 2026 21:38:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"19"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"ETag","value":"W/\"13-K1q5+I28HO+7lwKP/A8I8vv+88s\""}],"cookie":[],"responseTime":null,"body":"{\n    \"aiVerifyRunId\": 1\n}"}],"_postman_id":"46c92764-50bd-4fde-b17a-7068cd017f5f"}],"id":"b88ca228-5882-4415-aad0-3214c46e86b4","_postman_id":"b88ca228-5882-4415-aad0-3214c46e86b4","description":""},{"name":"Health check","item":[{"name":"Server status","id":"40ce6201-d433-416c-9fc5-2ac5c2d24398","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/health","urlObject":{"protocol":"{{PROTOCOL}}","path":["health"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"40ce6201-d433-416c-9fc5-2ac5c2d24398"},{"name":"Server ping db","id":"4ee51090-5e35-4781-b80a-6ebae5baf348","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/ping","urlObject":{"protocol":"{{PROTOCOL}}","path":["ping"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ee51090-5e35-4781-b80a-6ebae5baf348"}],"id":"211f1d3d-10fd-4771-9244-648f7ad71294","_postman_id":"211f1d3d-10fd-4771-9244-648f7ad71294","description":""},{"name":"ServerVersion","id":"f89a0c15-6f4e-492a-be66-8920f8c95ce4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/version","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","version"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f89a0c15-6f4e-492a-be66-8920f8c95ce4"},{"name":"GraphQL scheme","id":"bdc64d82-73d5-43c9-9096-0031535eeb0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query IntrospectionQuery {\n  __schema {\n    queryType {\n      name\n    }\n    mutationType {\n      name\n    }\n    subscriptionType {\n      name\n    }\n    types {\n      ...FullType\n    }\n    directives {\n      name\n      description\n      locations\n      args(includeDeprecated: true) {\n        ...InputValue\n      }\n    }\n  }\n}\nfragment FullType on __Type {\n  kind\n  name\n  description\n  fields(includeDeprecated: true) {\n    name\n    description\n    args(includeDeprecated: true) {\n      ...InputValue\n    }\n    type {\n      ...TypeRef\n    }\n    isDeprecated\n    deprecationReason\n  }\n  inputFields(includeDeprecated: true) {\n    ...InputValue\n  }\n  interfaces {\n    ...TypeRef\n  }\n  enumValues(includeDeprecated: true) {\n    name\n    description\n    isDeprecated\n    deprecationReason\n  }\n  possibleTypes {\n    ...TypeRef\n  }\n}\nfragment InputValue on __InputValue {\n  name\n  description\n  type {\n    ...TypeRef\n  }\n  defaultValue\n  isDeprecated\n  deprecationReason\n}\nfragment TypeRef on __Type {\n  kind\n  name\n  ofType {\n    kind\n    name\n    ofType {\n      kind\n      name\n      ofType {\n        kind\n        name\n        ofType {\n          kind\n          name\n          ofType {\n            kind\n            name\n            ofType {\n              kind\n              name\n              ofType {\n                kind\n                name\n              }\n            }\n          }\n        }\n      }\n    }\n  }\n}\n","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}","urlObject":{"protocol":"{{PROTOCOL}}","path":["graphql","{{VERSION}}"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[{"id":"b3fa3437-8df6-45d1-86c3-b7d23ac898d6","name":"GraphQL scheme","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}"}],"body":{"mode":"graphql","graphql":{"query":"query IntrospectionQuery {\n  __schema {\n    queryType {\n      name\n    }\n    mutationType {\n      name\n    }\n    subscriptionType {\n      name\n    }\n    types {\n      ...FullType\n    }\n    directives {\n      name\n      description\n      locations\n      args(includeDeprecated: true) {\n        ...InputValue\n      }\n    }\n  }\n}\nfragment FullType on __Type {\n  kind\n  name\n  description\n  fields(includeDeprecated: true) {\n    name\n    description\n    args(includeDeprecated: true) {\n      ...InputValue\n    }\n    type {\n      ...TypeRef\n    }\n    isDeprecated\n    deprecationReason\n  }\n  inputFields(includeDeprecated: true) {\n    ...InputValue\n  }\n  interfaces {\n    ...TypeRef\n  }\n  enumValues(includeDeprecated: true) {\n    name\n    description\n    isDeprecated\n    deprecationReason\n  }\n  possibleTypes {\n    ...TypeRef\n  }\n}\nfragment InputValue on __InputValue {\n  name\n  description\n  type {\n    ...TypeRef\n  }\n  defaultValue\n  isDeprecated\n  deprecationReason\n}\nfragment TypeRef on __Type {\n  kind\n  name\n  ofType {\n    kind\n    name\n    ofType {\n      kind\n      name\n      ofType {\n        kind\n        name\n        ofType {\n          kind\n          name\n          ofType {\n            kind\n            name\n            ofType {\n              kind\n              name\n              ofType {\n                kind\n                name\n              }\n            }\n          }\n        }\n      }\n    }\n  }\n}\n","variables":""}},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/graphql/{{VERSION}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Server","value":"nginx/1.27.2"},{"key":"Date","value":"Thu, 29 Jan 2026 14:09:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"594629"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Origin, X-Requested-With, Content-Type, Accept, Authorization"},{"key":"cache-control","value":"no-store"},{"key":"ETag","value":"W/\"912c5-Zl0ZUd3yEh+/bqk/GItaPMIA1Sc\""},{"key":"Strict-Transport-Security","value":"max-age=15768000"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"__schema\": {\n            \"queryType\": {\n                \"name\": \"Query\"\n            },\n            \"mutationType\": {\n                \"name\": \"Mutation\"\n            },\n            \"subscriptionType\": null,\n            \"types\": [\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Query\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"locationTagId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"ID\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Location\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locations\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Location\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allLocations\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filterByOrgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Location\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allLocationsWithFavorites\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Location\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allLocationsWithPagination\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"LocationSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"LocationsFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Location\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Meter\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Meter\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"metersWithPagination\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeterFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeterSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Meter\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"measurements\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Measurement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"measurementsFilters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"MeasurementFilters\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"measurementsPage\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orderBy\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"reverseOrder\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeasurementsFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeasurementsSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Measurement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"measurementsOutOfRange\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Measurement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClasses\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"deleted\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"AssetClassFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassesWithPagination\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"deleted\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"AssetClassSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"AssetClassFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassFilters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClassFilters\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"preSelectAssetClassForImportTemplate\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"path\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"preSelectedAssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"preSelectAssetClassesForImportTemplate\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"path\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"preSelectedAssetClasses\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getAvailableAssetClasses\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"deleted\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"AssetClassFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"exceptOrgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Template\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orphaned\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"noCycles\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"rootTemplateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateInfo\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateFilters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplatesFilters\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"webTemplates\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orderBy\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"reverseOrder\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"TemplatesFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"TemplateSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"noCycles\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"rootTemplateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateInfo\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Job\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobs\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"locationId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"templateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"completed\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"vumarkGuid\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orderBy\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"reverseOrder\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"priority\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"JobsFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"parentJobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assignedUser\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"jobsIds\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Job\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobsPage\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"locationId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"templateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"completed\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"vumarkGuid\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"JobsFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"JobSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"priority\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"parentJobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assignedUser\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orderBy\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"reverseOrder\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"faultFlag\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"resolvedAllFaults\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"doCountAssets\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Job\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobFilters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"JobsFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"JobsFilters\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addJobModal\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"editorial\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"addJobModal\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetTagId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"ID\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Asset\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assets\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"locationId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"maintRequired\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"outOfToleranceRange\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"deleted\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"withoutOrgFilter\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetGroup\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"searchAssets\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"query\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Asset\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetFilters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"AssetsFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetsFilters\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"webAssets\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orderBy\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"reverseOrder\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"AssetsFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"AssetSearchInputType\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"jobsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"deleted\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Asset\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"qrCodes\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allAssetsWithPagination\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orderBy\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"reverseOrder\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"AssetsFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"AssetSearchInputType\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Asset\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"users\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"active\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"UserSearchInputType\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"UserFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"withDeleted\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"User\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usersWithPagination\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"active\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"UserSearchInputType\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"UserFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"User\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"user\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getUserById\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileId\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIds\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"entityType\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"contentTypes\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orphaned\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIdsArray\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"ids\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"SCALAR\",\n                                                \"name\": \"Int\",\n                                                \"ofType\": null\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"roles\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"RoleInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirement\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"MeterRequirement\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirements\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobStepId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"templateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"templateStepId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"meterId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"MeterRequirement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirementsWithPagination\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobStepId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"templateStepId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"templateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"meterId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeterRequirementFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeterRequirementSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"MeterRequirement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirementsByMeterId\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"meterId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"MeterRequirement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"workOrder\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"WorkOrder\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"workOrders\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"status\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"locationId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"WorkOrder\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"clientSettings\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"ClientSettings\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unit\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Unit\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"units\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Unit\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unitsWithPagination\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeterUnitSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeterUnitFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Unit\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassModel\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClassModel\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassModels\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClassModel\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"iotMappings\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"IotPiMapping\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"iotMapping\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"IotPiMapping\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"iotMappingsWithPagination\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"IoTMappingFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"IotPiMapping\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getMessages\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"chatId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Message\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getMessage\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"messageId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Message\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getChats\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Chat\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getChatsInfo\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"limit\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"isArchived\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"withoutOrgFilter\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ChatsInfo\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getChatInfo\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"limit\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"ChatsInfo\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getJobStep\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"JobStep\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"metersEvidenceReport\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeterEvidenceReportFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"MeterEvidenceReportSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"MeterEvidenceReportType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"metersEvidenceReportFilters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"MeterEvidenceReportFilters\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueListEvidencePage\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"ValueListEvidenceSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ValueListEvidenceType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueListEvidencePageByOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"ValueListEvidenceSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ValueListEvidenceTypeByOrg\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"singleValueListEvidence\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"ValueListEvidenceType\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"recentlyActivity\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"web\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"page\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"location_id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"limit\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"userId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"userIds\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"entity_type\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"ENUM\",\n                                        \"name\": \"EnumEntityType\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"work_type_filter\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"ENUM\",\n                                        \"name\": \"enum_work_type_filter\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"entity_type_list\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"RecentlyActivity\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"favoriteEntities\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"location_id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"entity_type\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"ENUM\",\n                                        \"name\": \"EnumFavoriteEntity\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FavoriteEntities\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"convertedFilesByFilesIds\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"filesIds\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"SCALAR\",\n                                                \"name\": \"Int\",\n                                                \"ofType\": null\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"ConvertedFiles\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getFaultById\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FaultData\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getFaults\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"FaultSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"FaultsFilterInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FaultData\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultFilters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"FaultsFilterInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FaultFilters\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getDeviceById\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Device\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getDevices\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Device\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getDeviceTypeById\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"DeviceType\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getDeviceTypes\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"DeviceType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allVersionsWithPagination\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orderBy\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"reverseOrder\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"TemplateVersionsFiltersInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"search\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"TemplateVersionSearchInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"noCycles\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"NoCyclesInputType\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateWithVersion\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateVersionById\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateWithVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateVersionFilters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateVersionsFilters\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateWithVersionByVersionName\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"templateWithVersionByVersionName\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateWithVersionByVersionNameInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateWithVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"globalSearch\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"searchTerm\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"searchEntities\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"EntityGlobalSearchInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": \"100\",\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": \"0\",\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"UNION\",\n                                    \"name\": \"GlobalSearchUnionEntities\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"org\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Org\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allOrgs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Org\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allOrgsHierarchy\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allOrgsHierarchyByUser\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgConfiguration\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"OrgConfiguration\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"activeInvitesForUser\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"email\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"OrgInvite\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"activeInvitesForOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"OrgInvite\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getInviteByToken\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"token\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"InviteByToken\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"logs\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"withoutOrgFilter\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"filters\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"LogsFiltersInputType\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"sort\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"SortInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Log\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"logsFilters\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"withoutOrgFilter\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"LogFilters\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateHighlightsByStepId\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"templateStepId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateHeighlight\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"folder\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Folder\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"folders\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"parentId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Folder\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Location\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"owner\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"address\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"latitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"longitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"altitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"secure\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"restrictedEvidences\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"forceOffline\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationTagId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFavorite\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentLocationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"associatedFiles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"childLocations\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Location\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelRotation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelScale\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"defaultLocation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"country\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"state\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"city\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"address_new\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"zip_code\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobsWithFaults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"JobWithFaults\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasJobsWithFault\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFromOnboarding\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetsWithAlerts\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetWithAlerts\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasAssetsWithAlerts\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOpenFaults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"SCALAR\",\n                    \"name\": \"Int\",\n                    \"description\": \"The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.\",\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"SCALAR\",\n                    \"name\": \"String\",\n                    \"description\": \"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.\",\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"SCALAR\",\n                    \"name\": \"Float\",\n                    \"description\": \"The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).\",\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"SCALAR\",\n                    \"name\": \"Boolean\",\n                    \"description\": \"The `Boolean` scalar type represents `true` or `false`.\",\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"SCALAR\",\n                    \"name\": \"ID\",\n                    \"description\": \"The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\\\"4\\\"`) or integer (such as `4`) input value will be accepted as an ID.\",\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"FileId\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"url\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"previewFileUrl\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"extension\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"originalName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useMethod\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"contentType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"convertedFiles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"entityType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDefault\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"JobWithFaults\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"priority\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"elapsedTime\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentJobId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"associatedGroupChatId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultFlag\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedAllFaults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetWithAlerts\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"serialNumber\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"internalId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"department\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"criticality\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"vumarkGuid\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"vumarkImage\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleted\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetTagId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"qrSize\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"latitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"longitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"altitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alignmentTag\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"LocationSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"address\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"defaultLocation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"LocationsFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"SortInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"propertyName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"reverse\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Meter\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deviceTypeId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unitName\",\n                            \"description\": \"Deprecated\",\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unitDescription\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unit\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Unit\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unitId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"minimumTolerance\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"maximumTolerance\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"latestMeasurement\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"LatestMeasurement\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetClass\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"make\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"model\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"models\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClassModel\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"website\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"thumbnails\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelsFiles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"documents\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"tagPosition\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"tagRotation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelRotation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelScale\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pedestalScale\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateCreated\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleted\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dimensions\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"frontFace\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"ENUM\",\n                                \"name\": \"frontFace\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faces\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClassFacesType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"UserAssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"UserAssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFavorite\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFromOnboarding\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"touchAlignmentData\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TouchAlignmentData\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pointCloud\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"PointCloud\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"org\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"orgAssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Org\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"canBeDeleted\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetClassModel\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDefault\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"disableLighting\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelRotation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelOffset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelScale\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pedestalScale\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lightIntensityHemisphere\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lightIntensityPoint\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelViews\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ModelView\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelFiles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"convertedFiles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"ConvertedFiles\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"animationNames\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelSetup\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelUnitScale\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"modelUnitScaleObject\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useRemoteRendering\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"remoteRenderingPerformance\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"ENUM\",\n                                \"name\": \"RemoteRenderingPerformance\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ModelView\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDefault\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"disableLighting\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelRotation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelOffset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelScale\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ConvertedFiles\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"model_id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"glb\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"gltf\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usdz\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"sourceFiles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deletedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"modelUnitScaleObject\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"coefficient\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"RemoteRenderingPerformance\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"Standard\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Premium\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"frontFace\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"front\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"back\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"left\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"right\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"top\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"bottom\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetClassFacesType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"face\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"ENUM\",\n                                \"name\": \"frontFace\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"file\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"UserAssetClass\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"firstName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"avatarDetails\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isOnline\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deletedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TouchAlignmentData\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"offset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotationOffset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"distances\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIdA\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIdB\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIdC\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIdMain\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"PointCloud\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"zeroPointPosition\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"associatedFile\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"SCALAR\",\n                    \"name\": \"JSON\",\n                    \"description\": \"The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).\",\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"orgAssetClass\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hierarchy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Org\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"level\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hierarchy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocatedFullLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocatedConnectLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocatedOperateLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"totalLicensesInChildOrgs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TotalLicensesInChildOrgsType\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usedFullLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usedConnectLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usedOperateLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isLicensesAllocated\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pullLicensesFrom\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"PullLicensesFromType\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"photoUrl\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userRole\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TotalLicensesInChildOrgsType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"allocatedFullLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocatedConnectLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocatedOperateLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usedFullLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usedConnectLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usedOperateLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"PullLicensesFromType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"level\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocatedFullLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocatedConnectLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocatedOperateLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usedFullLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usedConnectLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"usedOperateLicenses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"totalLicensesInChildOrgs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TotalLicensesInChildOrgsType\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isLicensesAllocated\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Unit\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"ENUM\",\n                                \"name\": \"UnitValueTypes\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"stateOptions\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"UnitValueTypes\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"Numeric\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Text\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"State\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"LatestMeasurement\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"value\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset_class\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter_name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unit_name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unit_description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"minimum_tolerance\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"maximum_tolerance\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Measurement\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Meter\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Asset\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deviceId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"value\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"acknowledged\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"source\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alert\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Asset\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"iotPiMapping\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"IotPiMapping\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"serialNumber\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"internalId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Location\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"department\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"criticality\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"measurements\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Measurement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"history\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Job\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Job\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"vumarkGuid\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"vumarkImage\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleted\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetTagId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"qrSize\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"latitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"longitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"altitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alignmentTag\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"UserAssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"UserAssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFavorite\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFromOnboarding\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"subscribedDevices\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Device\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"faultsList\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"canBeDeleted\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"org\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"org\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"IotPiMapping\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Meter\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"piPointId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Job\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Asset\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Location\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"priority\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateWithVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"creationDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completionDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"elapsedTime\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"activeTimerTimestamp\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"contributors\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"User\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUser\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserDetails\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"JobNote\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"steps\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"JobStep\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"vumarkGuid\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"workOrder\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"WorkOrder\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentJobId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completedStepPercent\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultFlag\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedAllFaults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOpenFaults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"teamSetupCompleted\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completed\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"associatedGroupChatId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ValueListEvidenceType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"canBeReassigned\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"JobSteps\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"JobStep\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Notes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Note\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"workItemType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"faultsList\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"newJobPromptCancelled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"handOffStatus\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"childJobs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ChildJobInJob\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobsWithNotActualTemplateVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ChildJobInJob\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pointCloud\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"PointCloud\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"org\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"orgJob\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplateWithVersion\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useGPS\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"author\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"steps\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateStep\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Location\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerLogo\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ValueListEvidenceType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"UserAssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"UserAssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFavorite\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"currentVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"newVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"actualVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versions\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateVersion\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pointCloud\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"PointCloud\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"scratchpad\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"thumbnailUrl\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"scenes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ProjectScene\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"User\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"firstName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fullName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastOnline\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastPlatform\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"twoFactorEnabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isCreator\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isInitiator\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isCompleter\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startContributionDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completedSteps\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"JobStep\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"avatarDetails\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"avatarUrl\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"diagnostics\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Diagnostics\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"optIn\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"OptIn\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"roles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"RoleInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"permissions\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Org\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"primaryOrg\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Org\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgsHierarchy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastLoginOrgId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isOnline\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isInSecureLocation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"enabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pushNotification\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"typeLicensePackage\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDeleted\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isAccountOwner\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"expireDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"sawOnboarding\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"connectStatus\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hideWelcomeMessage\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"eulaStatus\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"haveAcceptedMSA\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"JobStep\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"step\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completed\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"compliant\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"noteTypesOrder\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completionDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"elapsedTime\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirements\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"MeterRequirement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"highlights\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateHeighlight\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Note\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"repairer\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"repairerDetails\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"repairerInfo\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"evidences\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Note\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"requiredEvidence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"evidenceRequirements\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"distance\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"bearing\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"altitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUser\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"user\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"UserShortInfo\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userWasRemovedFromStep\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultFlag\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultDescription\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolveFault\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolveDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasUnresolvedFaultInEmbeddedJob\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"MeterRequirement\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"value\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"evaluationType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateStepId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"noteId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Meter\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplateHeighlight\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"data\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Note\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"text\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"thickness\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"order\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"color\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Color\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelIsHidden\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"actionType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"points\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateCreated\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"model\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClassModel\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelViewId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"comments\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Comment\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"choice_path\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Meter\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterEvidence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterEvidenceFault\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"shapeNote\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ShapeNote\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alignmentTagOffsets\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"alignmentTagOffsets\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"choiceNotes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"choiceNote\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"animationName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirements\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"MeterRequirement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidenceId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"date_created\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"date_modified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateInChoiceNote\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"markupModel\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"originPath\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Color\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"r\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"g\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"b\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"a\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Comment\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"text\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"author\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"UserShortInfo\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"creationDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"editDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"UserShortInfo\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"firstName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"twoFactorEnabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"avatarDetails\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FileId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"avatarUrl\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"roles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"RoleInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pushNotification\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"RoleInput\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ShapeNote\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"mode\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"color\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Color\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"mainPosition\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"mainRotation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"shapePosition\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"shapeScale\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"arrowHeadPosition\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"arrowTailScale\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"alignmentTagOffsets\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"positionOffset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotationOffset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"choiceNote\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateInChoiceNote\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplateInChoiceNote\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"actualVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplateVersion\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rootTemplateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"state\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"activities\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateVersionActivity\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateInVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplateVersionActivity\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"action\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"comment\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdByUser\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"UserAssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplateInVersion\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobsCount\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"actualVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"ActualVersionInTemplateInVersionType\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ActualVersionInTemplateInVersionType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rootTemplateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"state\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"activities\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateVersionActivity\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"repairerInfo\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"firstName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"avatarUrl\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Diagnostics\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"enabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"logsFile\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"frequency\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"entries\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"OptIn\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"emailCommunications\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"expertsSite\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"optInEmail\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"optInDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplateStep\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"step\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"noteTypesOrder\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"highlights\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateHeighlight\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Note\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirements\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"MeterRequirement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"distance\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"bearing\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"altitude\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"requiredEvidence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"evidenceRequirements\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ValueListEvidenceType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"states\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"used\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Template\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assets\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versions\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateVersion\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Template\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useGPS\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"steps\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateStep\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"author\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ValueListEvidenceForTemplateType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"UserAssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"UserAssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFavorite\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"currentVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"newVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFromOnboarding\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"actualVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"thumbnailUrl\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ValueListEvidenceForTemplateType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"states\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"used\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ProjectScene\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"videos\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ProjectVideo\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ProjectVideo\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"subtitles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"SubtitleSentence\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"SubtitleSentence\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"sentence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"start\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"end\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"JobNote\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"step\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"note\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Note\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"WorkOrder\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Asset\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Location\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Template\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completionDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"creationDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUser\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"author\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"faultsList\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdByUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedByUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStep\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"jobStepInFaultAssets\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"jobInFaultAssets\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"emergedJobs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"JobInAssetFaultsType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"jobStepInFaultAssets\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"step\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"jobInFaultAssets\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"JobInAssetFaultsType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Location\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"priority\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateWithVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"creationDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completionDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"elapsedTime\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"contributors\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"User\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUser\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserDetails\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"JobNote\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"steps\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"JobStep\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"vumarkGuid\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentJobId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completedStepPercent\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedAllFaults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"teamSetupCompleted\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completed\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"associatedGroupChatId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultFlag\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ValueListEvidenceType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"JobSteps\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"JobStep\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Notes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Note\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"workItemType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"newJobPromptCancelled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOpenFaults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"handOffStatus\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"childJobs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ChildJobInJob\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ChildJobInJob\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateWithVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"orgJob\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Device\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotation\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"measurements\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Measurement\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deviceTypeId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"org\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hierarchy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"MeasurementFilters\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"LocationType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Meter\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"RangeDate\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"source\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"serialNumber\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"LocationType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"RangeDate\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"from\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"to\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeasurementsFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"RangeDateInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"source\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alert\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"excludeDeletedAssets\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"RangeDateInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"from\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"to\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeasurementsSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"value\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetClassFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetClassSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgs\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"date_modified\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"make\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"model\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetClassFilters\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"preSelectedAssetClass\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"zipData\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"zipData\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"preSelectedAssetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"zipData\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateWithVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"preSelectedAssetClasses\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"templatesWithPreselectedAssetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"templatesWithPreselectedAssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"templatesWithPreselectedAssetClass\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"preSelectedAssetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplateInfo\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useGPS\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"author\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"steps\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateStep\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dateModified\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Location\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerLogo\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ValueListEvidenceType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"UserAssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"UserAssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFavorite\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"currentVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"newVersion\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplatesFilters\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"assetClasses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplatesFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"asset_class_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"onboarding\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job_type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"JobsFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"priority\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentJobId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versions\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultFlag\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedAllFaults\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startDate\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"RangeDateInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completionDate\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"RangeDateInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"onboarding\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"workItemType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOpenFaults\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"withSubJobsOnly\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasEvidence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"JobSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset_class\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgs\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job_type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assigned_user\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"priority\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset_tag_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"JobsFilters\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"LocationId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Asset\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClassId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"workTemplateWithVersion\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClassId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"priority\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUser\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"User\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"User\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultFlag\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedAllFaults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"RangeDate\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completionDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"RangeDate\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"workItemType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FaultData\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"LocationId\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetClassId\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"workTemplateWithVersion\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"workTemplate\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versions\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"workTemplateVersion\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"workTemplate\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"workTemplateVersion\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"state\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"FaultData\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"linePos\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdByUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedByUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Note\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Asset\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStep\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"JobStep\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"noteTypeSettings\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FaultNoteSettings\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"emergedJobs\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Job\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"FaultNoteSettings\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"availableNotes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"requiredNotes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"addJobModal\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"assetClasses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locations\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Location\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Template\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assets\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Asset\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUsers\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"User\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetGroup\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assets\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Asset\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetsFilters\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"locationName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClasses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"criticality\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueListEvidences\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ValueListEvidenceType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetsFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"locationName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"criticality\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueListEvidenceName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueListEvidenceId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetSearchInputType\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"serial_number\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"department\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"internal_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset_tag_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset_class\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"UserSearchInputType\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"UserFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"roles\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"enabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"primaryOrgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterRequirementFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"evaluationType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateStepId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterRequirementSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"value\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job_step_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template_step_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ClientSettings\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"subdomain\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"timeToReuseUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"sessionTimeout\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"twoFactorEnabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"securityRules\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"ClientSecuritySettings\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"qrSize\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"welcomeMessage\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allowUserToHideWelcomeMessage\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dismissEnabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"eulaText\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"eulaEnabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"eulaSkip\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fovmText\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fovmEnabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"idLogoFile\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"iotSettings\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"iotRefreshRate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"remoteConnection\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customRemoteOption\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ClientSecuritySettingsStunConfiguration\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rtcAdapterType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"targetBitrate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"quality\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msTenant\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msResource\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msClientId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msClientSecret\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msUserEmail\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msUserPassword\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"oauthProviders\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"OAuthProviders\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"azureRemoteRendering\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AzureRemoteRendering\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultNoteSettings\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FaultNoteSetting\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgConfiguration\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"orgConfiguration\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"supportContactEmail\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"supportContactTitle\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"supportContactName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ClientSecuritySettings\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"clientId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"minPasswordLength\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notContainUsername\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOneUppercaseLetter\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOneLowercaseLetter\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOneDigit\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOneNonAlphabeticCharacter\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"minChangeOfCharacters\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"numOfOldPasswordsToCompare\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"forceResetPasswordAfter\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ClientSecuritySettingsStunConfiguration\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"urls\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"username\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"credential\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"OAuthProviders\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"provider\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"appId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"appIdiOS\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"appSecret\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"tenant\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resource\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"redirectUri\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"national\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"flow\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AzureRemoteRendering\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"accountId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"accountKey\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"accountDomain\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"storageAccountName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"storageAccountKey\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"storageContainerName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isEnabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"FaultNoteSetting\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"availableNotes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"requiredNotes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"orgConfiguration\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterUnitSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"value_type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"state_option\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterUnitFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"valueType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"IoTMappingFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pi_point_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"ID\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Message\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"text\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"senderId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"date_created\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FileId\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"workingTogether\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"WorkingTogether\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"chatId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateWithVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Job\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"template_id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job_id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"working_together_id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"links\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"MessageLinkType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"WorkingTogether\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"handOffStatus\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"teamSetup\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"contributorsId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"contributors\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"User\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"invitedUser\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Job\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"associatedGroupChatId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"MessageLinkType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"url\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"messageId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deletedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Chat\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"user_one\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"user_two\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isArchived\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"group_chat_users_ids\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"messages\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Message\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"date_created\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFavorite\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"User\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ChatsInfo\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"user_one\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"user_two\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unread\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isArchived\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"messages\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Message\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"date_created\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"group_chat_users_ids\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Job\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isFavorite\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"MeterEvidenceReportType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStatus\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobPercent\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStartTime\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobEndTime\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepNumber\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterFlag\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterUnitName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterUnitId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterEvidence\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterOriginal\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isArchived\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedByUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedByUserName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedDate\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"timeOfRecording\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterEvidenceReportFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterUnitId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"issue\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"timeOfRecording\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"RangeDateInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isArchived\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterEvidenceReportSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterUnitId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterUnitName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterEvidence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterOriginal\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"MeterEvidenceReportFilters\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Asset\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Template\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"LocationTypeMeterEvidence\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Job\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"User\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterName\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Meter\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterUnitId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Unit\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"timeOfRecording\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"RangeDate\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"LocationTypeMeterEvidence\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ValueListEvidenceSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"ValueListEvidenceTypeByOrg\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"states\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"used\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faults\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assets\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versions\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateVersion\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"RecentlyActivity\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"message\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"action\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"User\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"time\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"entityId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Job\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Job\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateWithVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Asset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Asset\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"AssetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Location\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Location\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Measurement\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Measurement\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"MeterEvidenceReport\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"MeterEvidenceReportType\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Org\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Org\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"EnumEntityType\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"jobs\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assets\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset_classes\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locations\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"measurements\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meters_evidence_report\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"enum_work_type_filter\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"task\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"FavoriteEntities\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"Asset\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Asset\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"AssetClass\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetClass\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Template\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateWithVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Contact\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Chat\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Location\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Location\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"EnumFavoriteEntity\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"contacts\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assets\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locations\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"FaultSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdBy\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"asset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"FaultsFilterInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedAt\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"RangeDatef\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"RangeDatef\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolvedByUserId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdByUserId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isResolved\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"RangeDatef\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"from\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"to\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"FaultFilters\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"LocationTypeTest\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetTypeTest\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"LocationTypeTest\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetTypeTest\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"serialNumber\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"DeviceType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"make\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"configDefinition\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meters\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Meter\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"devices\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Device\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateVersionsFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"asset_class_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"onboarding\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueListEvidenceName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueListEvidenceId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateVersionSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClass\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"location\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"job_type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"all\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ownerName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versionName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"NoCyclesInputType\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"TemplateVersionsFilters\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"assetClasses\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"AssetClass\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueListEvidences\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"ValueListEvidenceType\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateWithVersionByVersionNameInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"rootTemplateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versionName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"UNION\",\n                    \"name\": \"GlobalSearchUnionEntities\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": [\n                        {\n                            \"kind\": \"OBJECT\",\n                            \"name\": \"AssetClass\",\n                            \"ofType\": null\n                        },\n                        {\n                            \"kind\": \"OBJECT\",\n                            \"name\": \"Asset\",\n                            \"ofType\": null\n                        },\n                        {\n                            \"kind\": \"OBJECT\",\n                            \"name\": \"Template\",\n                            \"ofType\": null\n                        },\n                        {\n                            \"kind\": \"OBJECT\",\n                            \"name\": \"User\",\n                            \"ofType\": null\n                        }\n                    ]\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"EntityGlobalSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"Asset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"AssetGlobalSearchInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Template\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"TemplateGlobalSearchInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"User\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"UserGlobalSearchInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"AssetClass\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"AssetClassGlobalSearchInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetGlobalSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"searchedFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"ENUM\",\n                                            \"name\": \"AssetGlobalSearchFieldsEnum\",\n                                            \"ofType\": null\n                                        }\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"filters\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"AssetsGlobalSearchFiltersInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"AssetGlobalSearchFieldsEnum\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"serialNumber\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"internalId\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetTagId\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassName\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetsGlobalSearchFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"locationName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"criticality\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateGlobalSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"searchedFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"ENUM\",\n                                            \"name\": \"TemplateGlobalSearchFieldsEnum\",\n                                            \"ofType\": null\n                                        }\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"filters\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"TemplatesGlobalSearchFiltersInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"TemplateGlobalSearchFieldsEnum\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplatesGlobalSearchFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"state\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"onboarding\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"UserGlobalSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"searchedFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"ENUM\",\n                                            \"name\": \"UserGlobalSearchFieldsEnum\",\n                                            \"ofType\": null\n                                        }\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"filters\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"UserGlobalSearchFiltersInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"UserGlobalSearchFieldsEnum\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"firstName\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastName\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"UserGlobalSearchFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetClassGlobalSearchInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"searchedFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"ENUM\",\n                                            \"name\": \"AssetClassGlobalSearchFieldsEnum\",\n                                            \"ofType\": null\n                                        }\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"filters\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"AssetClassGlobalSearchFiltersInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"AssetClassGlobalSearchFieldsEnum\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"make\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"model\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetClassGlobalSearchFiltersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"OrgConfiguration\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"licenseAllocationEnabled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"restrictAccessToConnectContactsByOrg\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"OrgInvite\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"role\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"token\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"org\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Org\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"invitedBy\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"InviteByToken\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"role\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"org\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Org\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Log\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"entityId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userEmail\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgIds\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"action\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"level\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"message\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meta\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"acknowledged\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parent\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deletedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"LogsFiltersInputType\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"level\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userEmail\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"action\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"RangeDateInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"LogFilters\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"level\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userEmail\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"action\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"RangeDate\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Folder\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createdAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedAt\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"user\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"User\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"childFolders\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Folder\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"TemplateWithVersion\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Mutation\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"addLocation\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"LocationInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateLocation\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"LocationInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteLocation\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"setFavoriteFlag\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"locationId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"isFavorite\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Boolean\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addMeter\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"MeterInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteMeter\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateMeterPosition\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"position\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Float\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"rotation\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Float\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateMeter\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"MeterInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addMeasurement\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"MeasurementInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateMeasurement\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"MeasurementUpdate\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Measurement\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteMeasurement\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addCustomMeasurements\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"MeasurementCustomInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"AssetClassInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addFileToAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"fileId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"isDefault\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addModelToAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"model\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"AssetClassModelInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"isDefault\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"disableLighting\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteFileFromAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"fileId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateAssetClassCommonInfo\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"AssetClassCommonInfoInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateTags\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"tagPosition\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Float\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"tagRotation\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Float\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateModel\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelScale\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelRotation\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Float\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelViews\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ModelViewUpdateInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelSetup\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"AssetClassInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"updateOrgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"unassign\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"restoreAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateAssetClassModelNew\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"name\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelScale\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelRotation\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Float\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelOffset\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Float\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pedestalScale\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"isDefault\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Boolean\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"disableLighting\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"lightIntensityPoint\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"lightIntensityHemisphere\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelFiles\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"ModelFilesInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelViews\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ModelViewUpdateInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelSetup\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelUnitScale\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"modelUnitScaleInputObject\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"useRemoteRendering\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"remoteRenderingPerformance\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"ENUM\",\n                                        \"name\": \"RemoteRenderingPerformance\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteModelFromAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"modelId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"forceDelete\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Templates\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"archiveAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unarchiveAssetClass\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addTemplate\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateTemplate\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateUpdateInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteTemplate\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"forceDeleteTemplate\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"copyTemplate\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"copyOf\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Template\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addTemplateNote\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateNoteInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"restoreTemplate\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateTemplateStep\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateStepUpdate\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateTheWholeTemplateStep\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateStepUpdate\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addJob\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"JobInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"workOrderId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"subJobsDetails\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"SubJobDetailsInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteJob\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addNote\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"JobNoteInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addNoteV2\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"JobNoteInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"JobNoteResponseType\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addNotes\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"notes\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"NON_NULL\",\n                                                \"name\": null,\n                                                \"ofType\": {\n                                                    \"kind\": \"INPUT_OBJECT\",\n                                                    \"name\": \"JobNoteInput\",\n                                                    \"ofType\": null\n                                                }\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteStepNote\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"noteId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignUser\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"userId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startJob\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"startJobStep\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"step\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completeJob\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"completeJobStep\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"step\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"completed\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"compliant\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"faultFlag\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"faultDescription\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"supportedEvidence\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteOperatorNote\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"noteId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"setElapsedTime\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"elapsedTime\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateJob\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"JobInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addNoteWithResponse\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"JobNoteInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"revokeUserAssignment\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addComment\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"CommentInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Comment\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"editComment\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"CommentInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Comment\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteComment\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"changeTeamSetupStatus\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"completed\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Boolean\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addTask\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"JobInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"workOrderId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"faultId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"cancelOldJobCreateNew\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"reopenTask\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"cancelJob\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"uncancelJob\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteJobNotes\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobNoteIds\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"NON_NULL\",\n                                                \"name\": null,\n                                                \"ofType\": {\n                                                    \"kind\": \"SCALAR\",\n                                                    \"name\": \"Int\",\n                                                    \"ofType\": null\n                                                }\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addAsset\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"AssetInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AssetId\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateAsset\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"AssetInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteAsset\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"restoreAsset\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"archiveAsset\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Archived\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unarchiveAsset\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Unarchived\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"moveAsset\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"usersWillBeAssignedToTheOrg\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Boolean\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addRoleToUser\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"userId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"roleId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeRoleFromUser\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"userId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"roleId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteUser\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteUsers\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"ids\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateUser\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"UpdateUserInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"selfUpdateUser\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"UpdateSelfUserInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"changeUserStatus\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"userId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"status\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allocatedLicenseOrgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateLastLoginOrgId\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteMakerUser\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteFileId\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addFileId\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"FileIdInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteFileFromStorage\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"filePath\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addMeterRequirement\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"MeterRequirementInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteMeterRequirement\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateMeterRequirement\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"MeterRequirementInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateWorkOrder\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"WorkOrderInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteWorkOrder\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addWorkOrder\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"WorkOrderInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateClientSettings\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ClientSettingsInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addFilesToModel\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"modelId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"files\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"INPUT_OBJECT\",\n                                                \"name\": \"ModelFilesInput\",\n                                                \"ofType\": null\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteFileFromModel\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"modelId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"fileId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"SCALAR\",\n                                                \"name\": \"Int\",\n                                                \"ofType\": null\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addUnit\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"UnitInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateUnit\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"UnitInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteUnit\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addIOTMapping\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"IotPIMappingInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateIOTMapping\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"IotPIMappingInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteIOTMapping\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createGroupChat\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ChatInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addUsersToGroupChat\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ChatInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeUsersFromGroupChat\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ChatInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateChat\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ChatInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createMessage\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"ChatMessageInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteMessage\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"message_id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"chat_id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"setStatus\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"setStatuses\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"ids\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"SCALAR\",\n                                                \"name\": \"Int\",\n                                                \"ofType\": null\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"readAll\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"chatId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateJobStep\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"JobStepInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolveFault\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"step\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeResolvedFault\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"step\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"setFaultToStep\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"step\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"faultDescription\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeFaultFromStep\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"jobId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"step\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addValueListEvidence\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ValueListEvidenceInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateValueListEvidence\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ValueListEvidenceInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteValueListEvidence\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateRequiredEvidenceList\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"EvidenceRequiredListUpdate\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateTemplateStepHighlights\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateHighLightsUpdate\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"copyTemplateStepHighlights\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateHeighlightCopy\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"archiveMeterEvidenceReport\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolveMeterEvidenceReport\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unarchiveMeterEvidenceReport\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addFavoriteEntity\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"contactId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"templateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeFavoriteEntity\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"contactId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"templateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"logAddingTemplateNotes\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"templateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"newNotes\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"newEvidenceRequirements\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateTouchAlignmentData\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TouchAlignmentDataInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addTouchAlignmentData\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TouchAlignmentDataInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteTouchAlignmentData\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"assetClassId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addFault\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"FaultInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateFault\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"UpdateFaultInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resolveFaultById\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"reopenFault\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateFaultNoteSettings\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"FaultNoteSettingInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addDevice\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"deviceTypeId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"DeviceInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateDevice\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"DeviceInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeDevice\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addSubscriber\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"deviceId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeSubscriber\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"deviceId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addDeviceType\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"DeviceTypeInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateDeviceType\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"DeviceTypeInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeDeviceType\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createTemplateWithVersion\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateWithVersionInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createNewDraft\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"NewDraftInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updatedVersionState\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"INPUT_OBJECT\",\n                                        \"name\": \"TemplateVersionSetStateInput\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateTemplateWithVersion\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"TemplateVersionUpdateInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteDraft\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"copyTemplateWithVersion\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"templateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"versionName\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"TemplateVersion\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"importZip\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ImportZipInputType\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"importZipWithMultiplePreselectedAssetClasses\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ImportZipMultipleAssetClassesInputType\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"exportZip\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"ExportZipInputType\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"addOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"parentId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"name\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"description\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"photoUrl\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgType\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"String\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Org\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"name\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"description\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"photoUrl\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Org\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignUsersToOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"usersId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignAssetClassesToOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"assetClassIds\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocateOrgLicenses\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"OrgLicenseAllocationInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateOrgConfiguration\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"licenseAllocationEnabled\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Boolean\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"restrictAccessToConnectContactsByOrg\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Boolean\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"inviteUsersToOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"invites\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"NON_NULL\",\n                                                \"name\": null,\n                                                \"ofType\": {\n                                                    \"kind\": \"INPUT_OBJECT\",\n                                                    \"name\": \"OrgInviteInput\",\n                                                    \"ofType\": null\n                                                }\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"InviteUsersToOrgResponse\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"cancelOrgInvite\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"inviteId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resendOrgInvite\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"inviteId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"allAvailableOrgs\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"OrgInvite\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"acceptOrgInvite\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"token\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"userId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"AcceptOrgInviteResponse\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteTeamOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"removeUserFromTeam\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"userId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"leaveTeam\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateUserRoleInOrg\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"userId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"role\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"String\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"signUp\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"SignUpInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"SignUp\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"signIn\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"SignInInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"LIST\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"SignIn\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteLogs\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"ids\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"SCALAR\",\n                                                \"name\": \"Int\",\n                                                \"ofType\": null\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"force\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"restoreLogs\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"ids\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"SCALAR\",\n                                                \"name\": \"Int\",\n                                                \"ofType\": null\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateNote\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"NoteInputWithId\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createFolder\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"FolderInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Folder\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"updateFolder\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"data\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"INPUT_OBJECT\",\n                                            \"name\": \"FolderInput\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Folder\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deleteFolder\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"id\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"moveFolder\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"folderId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"newParentId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Folder\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"moveTemplate\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"templateId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"targetFolderId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"moveTemplates\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"templateIds\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"LIST\",\n                                            \"name\": null,\n                                            \"ofType\": {\n                                                \"kind\": \"NON_NULL\",\n                                                \"name\": null,\n                                                \"ofType\": {\n                                                    \"kind\": \"SCALAR\",\n                                                    \"name\": \"Int\",\n                                                    \"ofType\": null\n                                                }\n                                            }\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"targetFolderId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"getFoldersWithInfo\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"parentId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"orgId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"itemsPerPage\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                },\n                                {\n                                    \"name\": \"pageNumber\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"FolderWithInfo\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"createLiveKitToken\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"chatId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"LiveKitTokenResponse\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"endLiveKitCall\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"chatId\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"SCALAR\",\n                                            \"name\": \"Int\",\n                                            \"ofType\": null\n                                        }\n                                    },\n                                    \"defaultValue\": null,\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"LocationInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"owner\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"address\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"latitude\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"longitude\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"altitude\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentLocationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"associatedFiles\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelRotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelScale\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationTagId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"defaultLocation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"secure\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"restrictedEvidences\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"forceOffline\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"country\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"state\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"city\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"address_new\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"zip_code\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unitName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unitDescription\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"unitId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"minimumTolerance\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"maximumTolerance\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeasurementInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"value\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"source\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"acknowledged\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeasurementUpdate\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"value\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"source\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"acknowledged\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeasurementCustomInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"ErrorCode\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"IsSuccessful\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"DataType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"IncidentId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"CRC\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"VitalDetailsInfo\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"VitalDetailsInfo\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"VitalDetailsInfo\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"DataCaptureTimeUtc\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Vitals\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"Vital\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"Vital\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"Name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Value\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Measurement\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Code\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Source\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"Alert\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetClassInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"make\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"model\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"website\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"tagPosition\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"tagRotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelRotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelScale\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pedestalScale\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dimensions\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"frontFace\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faces\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"AssetClassFacesTypeInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetClassFacesTypeInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"face\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"ENUM\",\n                                    \"name\": \"frontFace\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"imageFileId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetClassModelInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelRotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelScale\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pedestalScale\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelOffset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDefault\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lightIntensityHemisphere\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lightIntensityPoint\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelFiles\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ModelFilesInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelViews\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ModelViewInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useRemoteRendering\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"remoteRenderingPerformance\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"ENUM\",\n                                \"name\": \"RemoteRenderingPerformance\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ModelFilesInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ModelViewInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"modelId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDefault\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"disableLighting\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelRotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelOffset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelScale\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetClassCommonInfoInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"make\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"website\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ModelViewUpdateInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDefault\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"disableLighting\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelRotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelOffset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelScale\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"modelUnitScaleInputObject\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"coefficient\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Templates\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useGPS\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"steps\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"TemplateStepInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateStepInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"step\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"highlights\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"TemplateHeighlightInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"noteTypesOrder\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"NoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirements\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"MeterRequirementInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"requiredEvidence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"evidenceRequirements\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"distance\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"bearing\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"altitude\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateHeighlightInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"data\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"NoteInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"text\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"order\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"thickness\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"color\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"ColorInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"points\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"model\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"NoteModelInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelViewId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelIsHidden\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"actionType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"choice_path\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"shapeNote\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ShapeNoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alignmentTagOffsets\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"alignmentTagOffsetsInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"choiceNotes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"choiceNoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"animationName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirements\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"MeterRequirementInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidenceId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"markupModel\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"originPath\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ColorInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"r\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"g\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"b\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"a\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"NoteModelInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ShapeNoteInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"mode\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"color\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"ColorInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"mainPosition\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"mainRotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"shapePosition\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"shapeScale\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"arrowHeadPosition\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"arrowTailScale\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"alignmentTagOffsetsInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"positionOffset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotationOffset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"choiceNoteInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"MeterRequirementInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"value\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"evaluationType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateStepId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateUpdateInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"steps\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"TemplateStepInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useGPS\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateNoteInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"stepId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"step\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"text\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"thickness\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"color\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"ColorInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"points\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"shapeNote\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ShapeNoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"actionType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alignmentTagOffsets\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"alignmentTagOffsetsInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"choiceNotes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"choiceNoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"animationName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateStepUpdate\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"step\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"highlights\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"TemplateHeighlightInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"noteTypesOrder\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"NoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirements\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"MeterRequirementInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"requiredEvidence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"evidenceRequirements\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"distance\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"bearing\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"altitude\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"newNotes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"JobInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"priority\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobTemplate\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentJobId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUserId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueListEvidences\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"faultId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"newJobPromptCancelled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"SubJobDetailsInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentTemplateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"embeddedTemplateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"stepOrder\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"JobNoteInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"step\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"text\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"thickness\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"color\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"ColorInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"points\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterEvidence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fault\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterOriginal\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alignmentTagOffsets\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"alignmentTagOffsetsInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"shapeNote\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ShapeNoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"choiceNoteId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidenceId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"JobNoteResponseType\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobNoteId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"CommentInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"text\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AssetId\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasVumark\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"AssetInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"serialNumber\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"internalId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"department\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"criticality\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetTagId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"latitude\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"longitude\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"altitude\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alignmentTag\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Archived\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"archived\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobsNeedToBeCancelled\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Job\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"Unarchived\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"success\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"UpdateUserInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"firstName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"avatar\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"twoFactorEnabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"password\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"passwordCheck\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"roles\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isOnline\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isInSecureLocation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"enabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"diagnosticsEnabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"diagnosticsFrequency\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"emailCommunications\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"expertsSite\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"optInEmail\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"optInDate\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pushNotification\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"typeLicensePackage\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"needSecurityRole\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastLoginOrgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allocatedLicenseOrgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hideWelcomeMessage\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"UpdateSelfUserInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"firstName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"avatar\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isOnline\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"enabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"emailCommunications\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"expertsSite\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"optInEmail\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"optInDate\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"pushNotification\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastLoginOrgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hideWelcomeMessage\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"FileIdInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"fileType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"url\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"originalName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useMethod\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"contentType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"entityType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"WorkOrderInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"externalId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assignedUser\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ClientSettingsInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"timeToReuseUserId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"subdomain\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"sessionTimeout\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"twoFactorEnabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"securityRules\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"ClientSecuritySettingsInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"qrSize\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"welcomeMessage\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"allowUserToHideWelcomeMessage\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"eulaText\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"eulaEnabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"eulaSkip\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fovmText\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fovmEnabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"dismissEnabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"iotSettings\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"iotRefreshRate\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"idLogoFile\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"remoteConnection\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customRemoteOption\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ClientSecuritySettingsStunConfigurationInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rtcAdapterType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"targetBitrate\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"quality\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msTenant\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msResource\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msClientId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msClientSecret\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msUserEmail\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msUserPassword\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"oauthProviders\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"OAuthProvidersInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"supportContactEmail\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"supportContactTitle\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"supportContactName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"azureRemoteRendering\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"azureRemoteRendering\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ClientSecuritySettingsInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"minPasswordLength\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notContainUsername\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOneUppercaseLetter\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOneLowercaseLetter\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOneDigit\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"hasOneNonAlphabeticCharacter\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"minChangeOfCharacters\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"numOfOldPasswordsToCompare\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"forceResetPasswordAfter\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ClientSecuritySettingsStunConfigurationInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"urls\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"username\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"credential\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"OAuthProvidersInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"provider\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"appId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"appIdiOS\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"appSecret\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"tenant\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"resource\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"redirectUri\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"national\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"flow\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"azureRemoteRendering\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"accountDomain\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"accountId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"accountKey\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"storageAccountKey\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"storageAccountName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"storageContainerName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isEnabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"UnitInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"valueType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"ENUM\",\n                                    \"name\": \"UnitValueTypes\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"stateOptions\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"IotPIMappingInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"piPointId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ChatInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"chat_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"users_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"associatedJobId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ChatMessageInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"body\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"chat_id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIds\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"workingTogether\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"WorkingTogetherInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"WorkingTogetherInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"jobId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"handOffStatus\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"teamSetup\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"contributorsId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"invitedUser\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"JobStepInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assigned_user\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ValueListEvidenceInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"states\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"EvidenceRequiredListUpdate\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"evidenceRequirements\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"newEvidenceRequirements\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateHighLightsUpdate\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"highlights\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"TemplateHeighlightInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateStepId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateHeighlightCopy\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"templateStepsIds\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Int\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"highlights\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"TemplateHeighlightInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TouchAlignmentDataInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"offset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotationOffset\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"distances\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIdA\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIdB\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIdC\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fileIdMain\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"FaultInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"linePos\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"jobStepId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"NoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"discoveredAt\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"UpdateFaultInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"linePos\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"notes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"NoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"FaultNoteSettingInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"availableNotes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"requiredNotes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"DeviceInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deviceTypeId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"status\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"position\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rotation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Float\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"DeviceTypeInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"make\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"configDefinition\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateWithVersionInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versionName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useGPS\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"steps\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"TemplateStepInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"scratchpad\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"scenes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ProjectSceneInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"folderId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ProjectSceneInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"NormalizedID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"videos\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ProjectVideoInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"SCALAR\",\n                    \"name\": \"NormalizedID\",\n                    \"description\": \"A custom scalar that normalizes ID values to lowercase\",\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ProjectVideoInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"NormalizedID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"sceneId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"NormalizedID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"subtitles\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"SubtitleSentenceInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"SubtitleSentenceInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"NormalizedID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"sentence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"start\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"end\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"videoId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"NormalizedID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"NewDraftInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"versionName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rootTemplateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateVersionSetStateInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"versionId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"comment\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"action\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"ENUM\",\n                                \"name\": \"ActivityEnum\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versionName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"ActivityEnum\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"created_draft\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"submitted\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"approved\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"rejected\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"returned_to_draft\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"permissions_moved\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"published\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"archived\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"restored\",\n                            \"description\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"TemplateVersionUpdateInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locationId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"steps\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"TemplateStepInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"useGPS\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidence\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"versionName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"scratchpad\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"scenes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ProjectSceneInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"folderId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ImportZipInputType\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"path\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ImportZipMultipleAssetClassesInputType\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"path\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassesId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"ExportZipInputType\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"OrgLicenseAllocationInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"allocation\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"InviteUsersToOrgResponse\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"message\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"OrgInviteInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"role\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"AcceptOrgInviteResponse\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"message\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"org\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"Org\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"SignUp\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"success\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"user\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"UserSignUp\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"UserSignUp\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"SignUpInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"password\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"passwordCheck\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"typeLicensePackage\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"currentUserId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"creatorUserEmail\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"needSecurityRole\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"firstName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"lastName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"twoFactorEnabled\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"msGuid\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"avatar\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"ID\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"additionalFields\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"roles\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"SignIn\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"token\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"roles\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"RoleInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"SignInInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"email\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"password\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"NoteInputWithId\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"userId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"text\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"order\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"autoplay\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"thickness\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Float\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"color\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"ColorInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"points\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Float\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"files\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"model\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"NoteModelInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelViewId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meter\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"modelIsHidden\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"actionType\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"choice_path\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"assetClassId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templateId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"shapeNote\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"ShapeNoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"alignmentTagOffsets\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"INPUT_OBJECT\",\n                                \"name\": \"alignmentTagOffsetsInput\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"choiceNotes\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"choiceNoteInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"animationName\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"meterRequirements\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"INPUT_OBJECT\",\n                                    \"name\": \"MeterRequirementInput\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"customEvidenceId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"markupModel\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"JSON\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"originPath\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"INPUT_OBJECT\",\n                    \"name\": \"FolderInput\",\n                    \"description\": null,\n                    \"fields\": null,\n                    \"inputFields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"parentId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"orgId\",\n                            \"description\": null,\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Int\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"interfaces\": null,\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"FolderWithInfo\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"title\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"folders\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"FolderItem\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templates\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"Template\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"FolderItem\",\n                    \"description\": null,\n                    \"fields\": [\n                        {\n                            \"name\": \"id\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"templatesCount\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Int\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"thumbnails\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"LiveKitTokenResponse\",\n                    \"description\": \"Response containing LiveKit JWT token and WebSocket URL\",\n                    \"fields\": [\n                        {\n                            \"name\": \"token\",\n                            \"description\": \"JWT token for LiveKit room connection\",\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"wsUrl\",\n                            \"description\": \"WebSocket URL for LiveKit server connection\",\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"__Schema\",\n                    \"description\": \"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.\",\n                    \"fields\": [\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"types\",\n                            \"description\": \"A list of all types supported by this server.\",\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"OBJECT\",\n                                            \"name\": \"__Type\",\n                                            \"ofType\": null\n                                        }\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"queryType\",\n                            \"description\": \"The type that query operations will be rooted at.\",\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"__Type\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"mutationType\",\n                            \"description\": \"If this server supports mutation, the type that mutation operations will be rooted at.\",\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"__Type\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"subscriptionType\",\n                            \"description\": \"If this server support subscription, the type that subscription operations will be rooted at.\",\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"__Type\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"directives\",\n                            \"description\": \"A list of all directives supported by this server.\",\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"OBJECT\",\n                                            \"name\": \"__Directive\",\n                                            \"ofType\": null\n                                        }\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"__Type\",\n                    \"description\": \"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\\n\\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.\",\n                    \"fields\": [\n                        {\n                            \"name\": \"kind\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"ENUM\",\n                                    \"name\": \"__TypeKind\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"specifiedByURL\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"fields\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"includeDeprecated\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": \"false\",\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"NON_NULL\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"OBJECT\",\n                                        \"name\": \"__Field\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"interfaces\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"NON_NULL\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"OBJECT\",\n                                        \"name\": \"__Type\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"possibleTypes\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"NON_NULL\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"OBJECT\",\n                                        \"name\": \"__Type\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"enumValues\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"includeDeprecated\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": \"false\",\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"NON_NULL\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"OBJECT\",\n                                        \"name\": \"__EnumValue\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"inputFields\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"includeDeprecated\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": \"false\",\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"LIST\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"NON_NULL\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"OBJECT\",\n                                        \"name\": \"__InputValue\",\n                                        \"ofType\": null\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ofType\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"OBJECT\",\n                                \"name\": \"__Type\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isOneOf\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"Boolean\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"__TypeKind\",\n                    \"description\": \"An enum describing what kind of type a given `__Type` is.\",\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"SCALAR\",\n                            \"description\": \"Indicates this type is a scalar.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"OBJECT\",\n                            \"description\": \"Indicates this type is an object. `fields` and `interfaces` are valid fields.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"INTERFACE\",\n                            \"description\": \"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"UNION\",\n                            \"description\": \"Indicates this type is a union. `possibleTypes` is a valid field.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ENUM\",\n                            \"description\": \"Indicates this type is an enum. `enumValues` is a valid field.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"INPUT_OBJECT\",\n                            \"description\": \"Indicates this type is an input object. `inputFields` is a valid field.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"LIST\",\n                            \"description\": \"Indicates this type is a list. `ofType` is a valid field.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"NON_NULL\",\n                            \"description\": \"Indicates this type is a non-null. `ofType` is a valid field.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"__Field\",\n                    \"description\": \"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.\",\n                    \"fields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"args\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"includeDeprecated\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": \"false\",\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"OBJECT\",\n                                            \"name\": \"__InputValue\",\n                                            \"ofType\": null\n                                        }\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"__Type\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDeprecated\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deprecationReason\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"__InputValue\",\n                    \"description\": \"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.\",\n                    \"fields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"type\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"OBJECT\",\n                                    \"name\": \"__Type\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"defaultValue\",\n                            \"description\": \"A GraphQL-formatted string representing the default value for this input value.\",\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDeprecated\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deprecationReason\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"__EnumValue\",\n                    \"description\": \"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.\",\n                    \"fields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isDeprecated\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"deprecationReason\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"OBJECT\",\n                    \"name\": \"__Directive\",\n                    \"description\": \"A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\\n\\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.\",\n                    \"fields\": [\n                        {\n                            \"name\": \"name\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"description\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"isRepeatable\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"locations\",\n                            \"description\": null,\n                            \"args\": [],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"ENUM\",\n                                            \"name\": \"__DirectiveLocation\",\n                                            \"ofType\": null\n                                        }\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"args\",\n                            \"description\": null,\n                            \"args\": [\n                                {\n                                    \"name\": \"includeDeprecated\",\n                                    \"description\": null,\n                                    \"type\": {\n                                        \"kind\": \"SCALAR\",\n                                        \"name\": \"Boolean\",\n                                        \"ofType\": null\n                                    },\n                                    \"defaultValue\": \"false\",\n                                    \"isDeprecated\": false,\n                                    \"deprecationReason\": null\n                                }\n                            ],\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"LIST\",\n                                    \"name\": null,\n                                    \"ofType\": {\n                                        \"kind\": \"NON_NULL\",\n                                        \"name\": null,\n                                        \"ofType\": {\n                                            \"kind\": \"OBJECT\",\n                                            \"name\": \"__InputValue\",\n                                            \"ofType\": null\n                                        }\n                                    }\n                                }\n                            },\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"inputFields\": null,\n                    \"interfaces\": [],\n                    \"enumValues\": null,\n                    \"possibleTypes\": null\n                },\n                {\n                    \"kind\": \"ENUM\",\n                    \"name\": \"__DirectiveLocation\",\n                    \"description\": \"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.\",\n                    \"fields\": null,\n                    \"inputFields\": null,\n                    \"interfaces\": null,\n                    \"enumValues\": [\n                        {\n                            \"name\": \"QUERY\",\n                            \"description\": \"Location adjacent to a query operation.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"MUTATION\",\n                            \"description\": \"Location adjacent to a mutation operation.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"SUBSCRIPTION\",\n                            \"description\": \"Location adjacent to a subscription operation.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"FIELD\",\n                            \"description\": \"Location adjacent to a field.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"FRAGMENT_DEFINITION\",\n                            \"description\": \"Location adjacent to a fragment definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"FRAGMENT_SPREAD\",\n                            \"description\": \"Location adjacent to a fragment spread.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"INLINE_FRAGMENT\",\n                            \"description\": \"Location adjacent to an inline fragment.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"VARIABLE_DEFINITION\",\n                            \"description\": \"Location adjacent to a variable definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"SCHEMA\",\n                            \"description\": \"Location adjacent to a schema definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"SCALAR\",\n                            \"description\": \"Location adjacent to a scalar definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"OBJECT\",\n                            \"description\": \"Location adjacent to an object type definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"FIELD_DEFINITION\",\n                            \"description\": \"Location adjacent to a field definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ARGUMENT_DEFINITION\",\n                            \"description\": \"Location adjacent to an argument definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"INTERFACE\",\n                            \"description\": \"Location adjacent to an interface definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"UNION\",\n                            \"description\": \"Location adjacent to a union definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ENUM\",\n                            \"description\": \"Location adjacent to an enum definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"ENUM_VALUE\",\n                            \"description\": \"Location adjacent to an enum value definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"INPUT_OBJECT\",\n                            \"description\": \"Location adjacent to an input object type definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        },\n                        {\n                            \"name\": \"INPUT_FIELD_DEFINITION\",\n                            \"description\": \"Location adjacent to an input object field definition.\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ],\n                    \"possibleTypes\": null\n                }\n            ],\n            \"directives\": [\n                {\n                    \"name\": \"include\",\n                    \"description\": \"Directs the executor to include this field or fragment only when the `if` argument is true.\",\n                    \"locations\": [\n                        \"FIELD\",\n                        \"FRAGMENT_SPREAD\",\n                        \"INLINE_FRAGMENT\"\n                    ],\n                    \"args\": [\n                        {\n                            \"name\": \"if\",\n                            \"description\": \"Included when true.\",\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"skip\",\n                    \"description\": \"Directs the executor to skip this field or fragment when the `if` argument is true.\",\n                    \"locations\": [\n                        \"FIELD\",\n                        \"FRAGMENT_SPREAD\",\n                        \"INLINE_FRAGMENT\"\n                    ],\n                    \"args\": [\n                        {\n                            \"name\": \"if\",\n                            \"description\": \"Skipped when true.\",\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"Boolean\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"deprecated\",\n                    \"description\": \"Marks an element of a GraphQL schema as no longer supported.\",\n                    \"locations\": [\n                        \"FIELD_DEFINITION\",\n                        \"ARGUMENT_DEFINITION\",\n                        \"INPUT_FIELD_DEFINITION\",\n                        \"ENUM_VALUE\"\n                    ],\n                    \"args\": [\n                        {\n                            \"name\": \"reason\",\n                            \"description\": \"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).\",\n                            \"type\": {\n                                \"kind\": \"SCALAR\",\n                                \"name\": \"String\",\n                                \"ofType\": null\n                            },\n                            \"defaultValue\": \"\\\"No longer supported\\\"\",\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"specifiedBy\",\n                    \"description\": \"Exposes a URL that specifies the behavior of this scalar.\",\n                    \"locations\": [\n                        \"SCALAR\"\n                    ],\n                    \"args\": [\n                        {\n                            \"name\": \"url\",\n                            \"description\": \"The URL that specifies the behavior of this scalar.\",\n                            \"type\": {\n                                \"kind\": \"NON_NULL\",\n                                \"name\": null,\n                                \"ofType\": {\n                                    \"kind\": \"SCALAR\",\n                                    \"name\": \"String\",\n                                    \"ofType\": null\n                                }\n                            },\n                            \"defaultValue\": null,\n                            \"isDeprecated\": false,\n                            \"deprecationReason\": null\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"oneOf\",\n                    \"description\": \"Indicates exactly one field must be supplied and this field must not be `null`.\",\n                    \"locations\": [\n                        \"INPUT_OBJECT\"\n                    ],\n                    \"args\": []\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"bdc64d82-73d5-43c9-9096-0031535eeb0d"},{"name":"Import MS Guides","event":[{"listen":"prerequest","script":{"id":"9f1bea33-418b-4a93-85e3-10c4b1204352","exec":[""],"type":"text/javascript","packages":{}}}],"id":"fd4bfef0-6527-45d0-a4cf-8c1d3f294386","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{AUTH_TOKEN}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","fileNotInWorkingDirectoryWarning":"This file isn't in your working directory. Teammates you share this request with won't be able to use this file. To make collaboration easier you can setup your working directory in Settings.","filesNotInWorkingDirectory":["/Users/mac/Desktop/Fresenius-guides 11.29.14 AM/01+-+Setup+PAED+CVVHD-2024-11-07.guide"],"src":"/Users/mac/Desktop/Fresenius-guides 11.29.14 AM/01+-+Setup+PAED+CVVHD-2024-11-07.guide"},{"key":"asset_class_name","value":"AssetClass","type":"text"},{"key":"asset_class_model","value":"model","type":"text"},{"key":"asset_serial_number","value":"1111","type":"text"},{"key":"asset_tag","value":"1111","type":"text"},{"key":"asset_class_id","value":"","type":"text","disabled":true}]},"url":"{{PROTOCOL}}://{{SUBDOMAIN}}.{{BASE_URL}}/rest/import-ms-guide","description":"<h3 id=\"import-ms-guide\">Import MS Guide</h3>\n<p>This endpoint allows you to import MS guide data.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>asset_class_name</code> (text): Description of the asset class.</p>\n</li>\n<li><p><code>asset_class_model</code> (text): Model of the asset class.</p>\n</li>\n<li><p><code>asset_serial_number</code> (text): Serial number of the asset.</p>\n</li>\n<li><p><code>asset_tag</code> (text): Tag associated with the asset.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response for this request can be represented as a JSON schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"object\",\n    \"properties\": {\n        \"message\": {\n            \"type\": \"string\"\n        }\n    }\n}\n\n</code></pre>\n","urlObject":{"protocol":"{{PROTOCOL}}","path":["rest","import-ms-guide"],"host":["{{SUBDOMAIN}}","{{BASE_URL}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd4bfef0-6527-45d0-a4cf-8c1d3f294386"}],"event":[{"listen":"prerequest","script":{"id":"354499e4-905e-4250-b795-63244fcb1b74","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"492300ec-5a46-4779-a153-ac30009744af","type":"text/javascript","exec":[""]}}],"variable":[{"key":"client","value":""},{"key":"newCategoryId","value":""},{"key":"newWordId","value":""}]}