mutation StartJob($fileId: String!, $deviceIds: [String!]!, $arguments: [ArgumentInput!]!) {
startJob(
fileId: $fileId,
#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.
deviceIds: $deviceIds,
#optional device tags (can be used to run a group of scripts against a set of devices with these tags at time of execution)
#ANY/ALL (i.e. or/and), when tags are used, operator should accompany
#tagFilter: {operator: ANY, values:["reboot"]},
arguments: $arguments
)
}