19 lines
469 B
GraphQL
19 lines
469 B
GraphQL
mutation UpdateSystemTimeSettings($input: UpdateSystemTimeSettingsInput!) {
|
|
updateSystemTimeSettings(input: $input) {
|
|
query {
|
|
systemTime {
|
|
hours
|
|
seconds
|
|
minutes
|
|
year
|
|
month
|
|
day
|
|
synchronizedWith
|
|
isSynchronizeEnabled
|
|
isDaylightSavingChangeEnabled
|
|
timezone
|
|
}
|
|
}
|
|
}
|
|
}
|