File tree Expand file tree Collapse file tree 1 file changed +9
-19
lines changed Expand file tree Collapse file tree 1 file changed +9
-19
lines changed Original file line number Diff line number Diff line change @@ -300,43 +300,33 @@ Request the current status of a time machine and its operator.
300
300
This operation retrieves the latest information about a specific time machine,
301
301
including its model, last maintenance date, and the operator currently assigned.
302
302
303
- You can also check the status for a particular year, to see if the time machine
304
- was scheduled for travel or maintenance at that time.
303
+ You can also check the status for a particular year.
304
+
305
+ **Warning:** certain years may trigger an anomaly in the space-time continuum. Use with caution!
305
306
"""
306
307
query GetTimeMachineStatus (
307
308
"The unique serial number of the time machine to inspect."
308
309
$machineId : ID !
309
-
310
- """
311
- The year to check the status for.
312
- **Warning:** Requesting status information for certain years may trigger an anomaly in the space-time continuum.
313
- """
310
+ "The year to check the status for."
314
311
$year : Int
315
312
) {
316
313
timeMachine (id : $machineId ) {
317
314
... TimeMachineDetails
318
- operator {
319
- ... OperatorDetails
320
- }
321
315
status (year : $year )
322
316
}
323
317
}
324
318
325
319
"""
326
- Time machine details .
320
+ Details about a time machine and its operator .
327
321
"""
328
322
fragment TimeMachineDetails on TimeMachine {
329
323
id
330
324
model
331
325
lastMaintenance
332
- }
333
-
334
- """
335
- Basic information about a time machine operator.
336
- """
337
- fragment OperatorDetails on Operator {
338
- name
339
- licenseLevel
326
+ operator {
327
+ name
328
+ licenseLevel
329
+ }
340
330
}
341
331
```
342
332
You can’t perform that action at this time.
0 commit comments