mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 18:03:12 +00:00
25 lines
340 B
GraphQL
25 lines
340 B
GraphQL
|
query BackupConfiguration {
|
||
|
backup {
|
||
|
configuration {
|
||
|
autobackupPeriod
|
||
|
encryptionKey
|
||
|
isInitialized
|
||
|
locationId
|
||
|
locationName
|
||
|
provider
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
query AllBackupSnapshots {
|
||
|
backup {
|
||
|
allSnapshots {
|
||
|
...backupSnapshotFields
|
||
|
service {
|
||
|
displayName
|
||
|
id
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|