Skip to content

Commit

Permalink
Migrate to Lens v3
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoginth committed Dec 13, 2024
1 parent a1743ff commit 9470a21
Show file tree
Hide file tree
Showing 3 changed files with 348 additions and 357 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
query AccountsBulk($request: AccountsBulkRequest!) {
accountsBulk(request: $request) {
...AccountFields
}
}
18 changes: 6 additions & 12 deletions packages/indexer/documents/queries/account/StaffPicks.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,13 @@ query StaffPicks(
$batch2: [EvmAddress!]
$batch3: [EvmAddress!]
) {
batch1: accounts(request: { addresses: $batch1 }) {
items {
...AccountFields
}
batch1: accountsBulk(request: { addresses: $batch1 }) {
...AccountFields
}
batch2: accounts(request: { addresses: $batch2 }) {
items {
...AccountFields
}
batch2: accountsBulk(request: { addresses: $batch2 }) {
...AccountFields
}
batch3: accounts(request: { addresses: $batch3 }) {
items {
...AccountFields
}
batch3: accountsBulk(request: { addresses: $batch3 }) {
...AccountFields
}
}
Loading

0 comments on commit 9470a21

Please sign in to comment.