diff options
| author | Max Audron <audron@cocaine.farm> | 2022-06-07 12:28:18 +0200 |
|---|---|---|
| committer | Maximilian Manz <maximilian.manz@de.clara.net> | 2022-06-20 11:33:04 +0200 |
| commit | f869c7f52d8fd1f1ef61e218bbec4d0dac27673d (patch) | |
| tree | 8029b33976fc897a4ae81785e622a7e61ad2eb67 /graphql/projects_schema.graphql | |
init
Diffstat (limited to 'graphql/projects_schema.graphql')
| -rw-r--r-- | graphql/projects_schema.graphql | 9 |
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 +} |
