add unauthenticated message on wallet page

This commit is contained in:
João Geonizeli
2021-08-13 19:37:37 -03:00
parent 4672804212
commit edf4094e2f
15 changed files with 545 additions and 128 deletions

View File

@@ -11,12 +11,7 @@ type BalanceConnection {
"""
A list of edges.
"""
edges: [BalanceEdge]
"""
A list of nodes.
"""
nodes: [Balance]
edges: [BalanceEdge!]!
"""
Information to aid in pagination.
@@ -36,7 +31,7 @@ type BalanceEdge {
"""
The item at the end of the edge.
"""
node: Balance
node: Balance!
}
type Currency implements Node {
@@ -59,12 +54,7 @@ type FiatBalanceConnection {
"""
A list of edges.
"""
edges: [FiatBalanceEdge]
"""
A list of nodes.
"""
nodes: [FiatBalance]
edges: [FiatBalanceEdge!]!
"""
Information to aid in pagination.
@@ -84,7 +74,7 @@ type FiatBalanceEdge {
"""
The item at the end of the edge.
"""
node: FiatBalance
node: FiatBalance!
}
"""