Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
doc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
nodes
common
doc
Merge requests
!3
WIP: RFC 3 : GraphQL API for Duniter Client
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
WIP: RFC 3 : GraphQL API for Duniter Client
graphql_api_rfc
into
master
Overview
23
Commits
25
Changes
6
Open
nanocryk
requested to merge
graphql_api_rfc
into
master
7 years ago
Overview
23
Commits
25
Changes
6
Expand
TODO
0
0
Merge request reports
Compare
master
version 21
42b0e234
5 years ago
version 20
4d268155
5 years ago
version 19
0c93e571
5 years ago
version 18
cb670c9c
6 years ago
version 17
55682095
6 years ago
version 16
9805ca10
6 years ago
version 15
8ca8ff02
6 years ago
version 14
c517d347
6 years ago
version 13
6e86e218
6 years ago
version 12
87c74f65
6 years ago
version 11
cdc067d0
6 years ago
version 10
8d89ee60
6 years ago
version 9
ea46dea6
6 years ago
version 8
63ae6a08
6 years ago
version 7
316ba078
6 years ago
version 6
3e2e6528
6 years ago
version 5
b2dfce26
6 years ago
version 4
e93b9407
6 years ago
version 3
58074aa3
6 years ago
version 2
65502aab
7 years ago
version 1
27b8b75b
7 years ago
master (base)
and
latest version
latest version
42b0e234
25 commits,
5 years ago
version 21
42b0e234
25 commits,
5 years ago
version 20
4d268155
24 commits,
5 years ago
version 19
0c93e571
22 commits,
5 years ago
version 18
cb670c9c
21 commits,
6 years ago
version 17
55682095
20 commits,
6 years ago
version 16
9805ca10
19 commits,
6 years ago
version 15
8ca8ff02
18 commits,
6 years ago
version 14
c517d347
17 commits,
6 years ago
version 13
6e86e218
16 commits,
6 years ago
version 12
87c74f65
15 commits,
6 years ago
version 11
cdc067d0
14 commits,
6 years ago
version 10
8d89ee60
13 commits,
6 years ago
version 9
ea46dea6
12 commits,
6 years ago
version 8
63ae6a08
11 commits,
6 years ago
version 7
316ba078
10 commits,
6 years ago
version 6
3e2e6528
9 commits,
6 years ago
version 5
b2dfce26
8 commits,
6 years ago
version 4
e93b9407
7 commits,
6 years ago
version 3
58074aa3
6 commits,
6 years ago
version 2
65502aab
5 commits,
7 years ago
version 1
27b8b75b
4 commits,
7 years ago
6 files
+
923
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
appendices/0003_RFC/model.puml
0 → 100644
+
60
−
0
Options
@startuml
class BlockNumberAndHash {
number: Int!
hash: String!
}
class Block {
version: Int!
type: String!
currency: String!
issuer: String!
number: Int!
powMin: Int!
time: String!
mediantime: String!
membersCount: Int!
monetaryMass: Int!
unitBase: Int!
issuersCount: Int!
issuersFrame: Int!
issuersFrameVar: Int!
parameters: String
previousHash: String
dividend: Int
identities: [Identity!]!
joiners: [Membership!]!
actives: [Membership!]!
leavers: [Membership!]!
revoked: [CompactRevocation!]!
excluded: [String!]!
certifications: [CompactCertification!]!
transactions: [Transaction!]!
innerHash: String!
nonce: String!
signature: String!
hash: String!
raw: String!
}
class Transaction {
version: Int!
type: String!
currency: String!
issuers: [String!]!
blockNumberAndHash: BlockNumberAndHash!
locktime: Int!
inputs: [CoinSource!]!
unlocks: [TxUnlock!]!
outputs: [TxOuput!]!
comment: String!
signatures: [String!]!
hash: String!
raw: String!
written_on: BlockNumberAndHash
}
Block --> Transaction
@enduml
Loading