mirror of
https://github.com/wassname/talk.git
synced 2026-08-17 11:27:52 +08:00
12 lines
94 B
GraphQL
12 lines
94 B
GraphQL
enum View {
|
|
MODERATE
|
|
}
|
|
|
|
type Local {
|
|
view: View!
|
|
}
|
|
|
|
extend type Query {
|
|
local: Local!
|
|
}
|