summaryrefslogtreecommitdiffstats
path: root/project.graphcool
diff options
context:
space:
mode:
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