Skip to content
Snippets Groups Projects

Gva: add query current_ud

Closed jm requested to merge ji_emme/rml14 into dev
6 files
+ 181
0
Compare changes
  • Side-by-side
  • Inline
Files
6
@@ -15,6 +15,7 @@ type Query {
@@ -15,6 +15,7 @@ type Query {
step: Int = 1,
step: Int = 1,
sortOrder: SortOrder = ASC
sortOrder: SortOrder = ASC
): BlocksPage! @juniper(ownership: "owned")
): BlocksPage! @juniper(ownership: "owned")
 
currentUd: CurrentUd @juniper(ownership: "owned")
}
}
type Mutation {
type Mutation {
@@ -93,3 +94,16 @@ type Block {
@@ -93,3 +94,16 @@ type Block {
#################################
#################################
scalar DateTimeUtc @juniper(with_time_zone: false)
scalar DateTimeUtc @juniper(with_time_zone: false)
 
 
#################################
 
# CurrentUd types
 
#################################
 
 
type CurrentUd {
 
amount: Int!
 
base: Int!
 
blockNumber: Int!
 
commonTime: DateTimeUtc!
 
membersCount: Int!
 
monetaryMass: Int!
 
}
 
\ No newline at end of file
Loading