Skip to content
Snippets Groups Projects
Commit c517d347 authored by Éloïs's avatar Éloïs
Browse files

[fix] rfc gva: schema: add raw field for each document

parent 6e86e218
Branches
No related tags found
1 merge request!3WIP: RFC 3 : GraphQL API for Duniter Client
...@@ -161,6 +161,7 @@ type Membership { ...@@ -161,6 +161,7 @@ type Membership {
idtyUsername: String! idtyUsername: String!
idtyBlockstamp: Blockstamp! idtyBlockstamp: Blockstamp!
signature: String! signature: String!
raw: String!
written: Boolean! written: Boolean!
} }
...@@ -175,6 +176,7 @@ type Certification { ...@@ -175,6 +176,7 @@ type Certification {
idtyBlockstamp: Blockstamp! idtyBlockstamp: Blockstamp!
idtySig: String! idtySig: String!
signature: String! signature: String!
raw: String!
written: Boolean! written: Boolean!
} }
...@@ -187,6 +189,7 @@ type Revocation { ...@@ -187,6 +189,7 @@ type Revocation {
idtyBlockstamp: Blockstamp! idtyBlockstamp: Blockstamp!
idtySig: String! idtySig: String!
signature: String! signature: String!
raw: String!
written: Boolean! written: Boolean!
} }
...@@ -198,6 +201,7 @@ type Identity { ...@@ -198,6 +201,7 @@ type Identity {
blockstamp: Blockstamp! blockstamp: Blockstamp!
usernameID: String! usernameID: String!
signature: String! signature: String!
raw: String!
written: Boolean! written: Boolean!
membership: Membership membership: Membership
# Received certifications # Received certifications
...@@ -258,6 +262,7 @@ type Transaction { ...@@ -258,6 +262,7 @@ type Transaction {
comment: String! comment: String!
signatures: [String!]! signatures: [String!]!
hash: String! hash: String!
raw: String!
written: Boolean! written: Boolean!
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment