mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 23:51:28 +08:00
12 lines
94 B
GraphQL
12 lines
94 B
GraphQL
enum View {
|
|
MODERATE
|
|
}
|
|
|
|
type Local {
|
|
view: View!
|
|
}
|
|
|
|
extend type Query {
|
|
local: Local!
|
|
}
|