Skip to content

Commit

Permalink
Fix staging
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-mysten committed Nov 19, 2024
1 parent 2cf6f86 commit 47bb848
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
8 changes: 4 additions & 4 deletions crates/sui-graphql-rpc/staging.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3400,10 +3400,10 @@ type Query {
- `author` is the address of the signer of the transaction or personal msg.
"""
verifyZkloginSignature(bytes: Base64!, signature: Base64!, intentScope: ZkLoginIntentScope!, author: SuiAddress!): ZkLoginVerifyResult!
"""
Fetch a list of objects by their IDs and versions.
"""
multiGetObjects(keys: [ObjectKey!]!): [Object!]!
"""
Fetch a list of objects by their IDs and versions.
"""
multiGetObjects(objectKeys: [ObjectKey!]!): [Object!]!
}

type RandomnessStateCreateTransaction {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2884,7 +2884,8 @@ input ObjectFilter {
"""
objectIds: [SuiAddress!]
"""
Filter for live or potentially historical objects by their ID and version.
Filter for live objects by their ID and version.
For historical versions, use multiGetObjects query instead.
"""
objectKeys: [ObjectKey!]
}
Expand Down Expand Up @@ -3403,6 +3404,10 @@ type Query {
- `author` is the address of the signer of the transaction or personal msg.
"""
verifyZkloginSignature(bytes: Base64!, signature: Base64!, intentScope: ZkLoginIntentScope!, author: SuiAddress!): ZkLoginVerifyResult!
"""
Fetch a list of objects by their IDs and versions.
"""
multiGetObjects(objectKeys: [ObjectKey!]!): [Object!]!
}
type RandomnessStateCreateTransaction {
Expand Down Expand Up @@ -3583,6 +3588,10 @@ type ServiceConfig {
"""
maxTransactionIds: Int!
"""
Maximum number of keys that can be passed to a `multiGetObjects` query.
"""
maxMultiGetObjectsKeys: Int!
"""
Maximum number of candidates to scan when gathering a page of results.
"""
maxScanLimit: Int!
Expand Down

0 comments on commit 47bb848

Please sign in to comment.