laconic-console/packages/console-server/src/gql/api.graphql

30 lines
447 B
GraphQL
Raw Normal View History

2020-05-23 20:16:35 +00:00
#
2020-05-25 22:32:45 +00:00
# Copyright 2020 DxOS.org
2020-05-23 20:16:35 +00:00
#
2020-05-28 02:35:37 +00:00
# TODO(burdon): Replace generic results with schema.
type JSONResult {
timestamp: String!
json: String!
}
2020-05-24 13:55:36 +00:00
#
# Schema
#
type Query {
2020-06-10 20:36:54 +00:00
app_swarm_log: JSONResult!
ipfs_log: JSONResult!
2020-05-25 22:32:45 +00:00
ipfs_status: JSONResult!
2020-06-10 20:36:54 +00:00
ipfs_swarm_log: JSONResult!
signal_status: JSONResult!
signal_swarm_log: JSONResult!
system_status: JSONResult!
2020-05-25 22:32:45 +00:00
wns_status: JSONResult!
2020-06-10 20:36:54 +00:00
wns_log: JSONResult!
2020-05-24 13:55:36 +00:00
}
2020-05-24 02:37:52 +00:00
schema {
query: Query
}