aboutsummaryrefslogtreecommitdiff
path: root/graphql/projects_schema.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'graphql/projects_schema.graphql')
-rw-r--r--graphql/projects_schema.graphql9
1 files changed, 9 insertions, 0 deletions
diff --git a/graphql/projects_schema.graphql b/graphql/projects_schema.graphql
new file mode 100644
index 0000000..b2be43a
--- /dev/null
+++ b/graphql/projects_schema.graphql
@@ -0,0 +1,9 @@
+type Query {
+ projects(path: String!): [Project]
+}
+
+type Project {
+ id: String
+ name: String
+ fullPath: String
+}