30 lines
447 B
GraphQL
30 lines
447 B
GraphQL
#
|
|
# Copyright 2020 DxOS.org
|
|
#
|
|
|
|
# TODO(burdon): Replace generic results with schema.
|
|
type JSONResult {
|
|
timestamp: String!
|
|
json: String!
|
|
}
|
|
|
|
#
|
|
# Schema
|
|
#
|
|
|
|
type Query {
|
|
app_swarm_log: JSONResult!
|
|
ipfs_log: JSONResult!
|
|
ipfs_status: JSONResult!
|
|
ipfs_swarm_log: JSONResult!
|
|
signal_status: JSONResult!
|
|
signal_swarm_log: JSONResult!
|
|
system_status: JSONResult!
|
|
wns_status: JSONResult!
|
|
wns_log: JSONResult!
|
|
}
|
|
|
|
schema {
|
|
query: Query
|
|
}
|