plugins/graphql: fix schema packaging

This commit is contained in:
Patrik Oldsberg
2020-08-02 19:29:21 +02:00
parent 7994c64c54
commit 650830cf4f
3 changed files with 8 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
type CatalogEntity {
id: String
}
type CatalogQuery {
list: [CatalogEntity!]!
}
type Query {
catalog: CatalogQuery!
}