Files
talk/src/core/client/stream/local/local.graphql
T
2018-08-08 01:04:25 +02:00

29 lines
348 B
GraphQL

# Extend graph with local types
type Network {
isOffline: Boolean!
}
enum View {
SIGN_UP
SIGN_IN
FORGOT_PASSWORD
}
type AuthPopup {
open: Boolean!
focus: Boolean!
view: View
}
type Local {
network: Network!
assetID: String
assetURL: String
commentID: String
authPopup: AuthPopup!
}
extend type Query {
local: Local!
}