aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/operations.graphql
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-12-23 17:55:41 +0100
committerMichael Muré <batolettre@gmail.com>2018-12-23 17:55:41 +0100
commit0d5bd6b18afde898e610746657a87080235f6222 (patch)
treebe714ae264bcda3aff003c4e4080687e628aeec3 /graphql/operations.graphql
parent1410a1af75b1ab9ea3f980a7e372728f9a123abf (diff)
downloadgit-bug-0d5bd6b18afde898e610746657a87080235f6222.tar.gz
graphql: now that it's possible, split the schema for clarity
Diffstat (limited to 'graphql/operations.graphql')
-rw-r--r--graphql/operations.graphql100
1 files changed, 100 insertions, 0 deletions
diff --git a/graphql/operations.graphql b/graphql/operations.graphql
new file mode 100644
index 00000000..420a9e12
--- /dev/null
+++ b/graphql/operations.graphql
@@ -0,0 +1,100 @@
+"""An operation applied to a bug."""
+interface Operation {
+ """The hash of the operation"""
+ hash: Hash!
+ """The operations author."""
+ author: Person!
+ """The datetime when this operation was issued."""
+ date: Time!
+}
+
+# Connection
+
+"""The connection type for an Operation"""
+type OperationConnection {
+ edges: [OperationEdge!]!
+ nodes: [Operation!]!
+ pageInfo: PageInfo!
+ totalCount: Int!
+}
+
+"""Represent an Operation"""
+type OperationEdge {
+ cursor: String!
+ node: Operation!
+}
+
+# Operations
+
+type CreateOperation implements Operation & Authored {
+ """The hash of the operation"""
+ hash: Hash!
+ """The author of this object."""
+ author: Person!
+ """The datetime when this operation was issued."""
+ date: Time!
+
+ title: String!
+ message: String!
+ files: [Hash!]!
+}
+
+type SetTitleOperation implements Operation & Authored {
+ """The hash of the operation"""
+ hash: Hash!
+ """The author of this object."""
+ author: Person!
+ """The datetime when this operation was issued."""
+ date: Time!
+
+ title: String!
+ was: String!
+}
+
+type AddCommentOperation implements Operation & Authored {
+ """The hash of the operation"""
+ hash: Hash!
+ """The author of this object."""
+ author: Person!
+ """The datetime when this operation was issued."""
+ date: Time!
+
+ message: String!
+ files: [Hash!]!
+}
+
+type EditCommentOperation implements Operation & Authored {
+ """The hash of the operation"""
+ hash: Hash!
+ """The author of this object."""
+ author: Person!
+ """The datetime when this operation was issued."""
+ date: Time!
+
+ target: Hash!
+ message: String!
+ files: [Hash!]!
+}
+
+type SetStatusOperation implements Operation & Authored {
+ """The hash of the operation"""
+ hash: Hash!
+ """The author of this object."""
+ author: Person!
+ """The datetime when this operation was issued."""
+ date: Time!
+
+ status: Status!
+}
+
+type LabelChangeOperation implements Operation & Authored {
+ """The hash of the operation"""
+ hash: Hash!
+ """The author of this object."""
+ author: Person!
+ """The datetime when this operation was issued."""
+ date: Time!
+
+ added: [Label!]!
+ removed: [Label!]!
+} \ No newline at end of file