initial work

This commit is contained in:
Belén Curcio
2018-09-24 19:52:08 -03:00
parent 65156c0528
commit ff0f00a486
16 changed files with 232 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
enum View {
MODERATE
}
type Local {
view: View!
}
extend type Query {
local: Local!
}