pub const QUERY: &str = "mutation StartJob($fileId: String!, $deviceIds: [String!]!, $arguments: [ArgumentInput!]) {\n startJob(\n fileId: $fileId,\n #Device IDs OR Tags are used to identify the devices for the job. If both device IDs and tags are passed, device Ids will be used.\n deviceIds: $deviceIds,\n #optional device tags (can be used to run a group of scripts against a set of devices with these tags at time of execution)\n #ANY/ALL (i.e. or/and), when tags are used, operator should accompany\n #tagFilter: {operator: ANY, values:[\"reboot\"]},\n arguments: $arguments\n )\n}";