From c517d347d407f90da6cde5838175ac2e4821512b Mon Sep 17 00:00:00 2001
From: librelois <elois@ifee.fr>
Date: Sun, 10 Feb 2019 16:03:23 +0100
Subject: [PATCH] [fix] rfc gva: schema: add raw field for each document

---
 appendices/0003_RFC/schema.gql | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/appendices/0003_RFC/schema.gql b/appendices/0003_RFC/schema.gql
index 39570f0..b765efd 100644
--- a/appendices/0003_RFC/schema.gql
+++ b/appendices/0003_RFC/schema.gql
@@ -160,7 +160,8 @@ type Membership {
   membershipType: MembershipType!
   idtyUsername: String!
   idtyBlockstamp: Blockstamp!
-  signature: String! 
+  signature: String!
+  raw: String!
   written: Boolean!
 }
 
@@ -175,6 +176,7 @@ type Certification {
 	idtyBlockstamp: Blockstamp!
 	idtySig: String!
   signature: String!
+  raw: String!
   written: Boolean!
 }
 
@@ -187,6 +189,7 @@ type Revocation {
 	idtyBlockstamp: Blockstamp!
 	idtySig: String!
   signature: String!
+  raw: String!
   written: Boolean!
 }
 
@@ -198,6 +201,7 @@ type Identity {
   blockstamp: Blockstamp!
   usernameID: String!
   signature: String! 
+  raw: String!
 	written: Boolean!
   membership: Membership
   # Received certifications
@@ -258,6 +262,7 @@ type Transaction {
   comment: String!
   signatures: [String!]!
   hash: String!
+  raw: String!
 	written: Boolean!
 }
 
-- 
GitLab