summaryrefslogtreecommitdiffstats
path: root/project.graphcool
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2017-08-08 22:09:05 -0400
committerWes Bos <wesbos@gmail.com>2017-08-08 22:09:05 -0400
commit222ab374d53a206332b1ab51c7c43f6d5dc7a31e (patch)
tree2b446d96bfc6c7efab07f3d0fbb84d96ecb1253b /project.graphcool
yep
Diffstat (limited to 'project.graphcool')
-rw-r--r--project.graphcool27
1 files changed, 27 insertions, 0 deletions
diff --git a/project.graphcool b/project.graphcool
new file mode 100644
index 0000000..459a65d
--- /dev/null
+++ b/project.graphcool
@@ -0,0 +1,27 @@
+# project: cj5xz8szs28930145gct82bdj
+# version: 8
+
+type File implements Node {
+ contentType: String!
+ createdAt: DateTime!
+ id: ID! @isUnique
+ name: String!
+ secret: String! @isUnique
+ size: Int!
+ updatedAt: DateTime!
+ url: String! @isUnique
+}
+
+type Item implements Node {
+ createdAt: DateTime!
+ description: String!
+ id: ID! @isUnique
+ title: String!
+ updatedAt: DateTime!
+}
+
+type User implements Node {
+ createdAt: DateTime!
+ id: ID! @isUnique
+ updatedAt: DateTime!
+} \ No newline at end of file