Skip to content

Commit

Permalink
Address some graphql issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuDutSik committed Dec 6, 2024
1 parent be71395 commit ce70607
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions linera-service-graphql-client/gql/service_schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,14 @@ A block height to identify blocks in a chain
scalar BlockHeight


type BucketQueueView_BlockHeight_e824a938 {
entries(count: Int): [BlockHeight!]!
}

type BucketQueueView_TimestampedBundleInInbox_5a630c55 {
entries(count: Int): [TimestampedBundleInInbox!]!
}

"""
An origin and cursor of a unskippable bundle that is no longer in our inbox.
"""
Expand Down Expand Up @@ -213,7 +221,7 @@ type ChainStateExtendedView {
"""
A queue of unskippable bundles, with the timestamp when we added them to the inbox.
"""
unskippableBundles: QueueView_TimestampedBundleInInbox_5a630c55!
unskippableBundles: BucketQueueView_TimestampedBundleInInbox_5a630c55!
"""
Unskippable bundles that have been removed but are still in the queue.
"""
Expand Down Expand Up @@ -742,7 +750,7 @@ type OutboxStateView {
Keep sending these certified blocks of ours until they are acknowledged by
receivers.
"""
queue: QueueView_BlockHeight_e824a938!
queue: BucketQueueView_BlockHeight_e824a938!
}

"""
Expand Down Expand Up @@ -827,18 +835,10 @@ type QueryRoot {
version: VersionInfo!
}

type QueueView_BlockHeight_e824a938 {
entries(count: Int): [BlockHeight!]!
}

type QueueView_MessageBundle_f4399f0b {
entries(count: Int): [MessageBundle!]!
}

type QueueView_TimestampedBundleInInbox_5a630c55 {
entries(count: Int): [TimestampedBundleInInbox!]!
}

"""
The recipient of a transfer
"""
Expand Down

0 comments on commit ce70607

Please sign in to comment.