mirror of
https://github.com/wassname/talk.git
synced 2026-07-21 12:51:03 +08:00
14 lines
121 B
GraphQL
14 lines
121 B
GraphQL
enum View {
|
|
SIGN_UP
|
|
SIGN_IN
|
|
FORGOT_PASSWORD
|
|
}
|
|
|
|
type Local {
|
|
view: View!
|
|
}
|
|
|
|
extend type Query {
|
|
local: Local!
|
|
}
|