Skip to content

Commit

Permalink
[accounts query] update query (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-diamond authored Feb 9, 2024
1 parent cacc0fa commit 8d972c8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/graphql/subgraph/vault/vaultQuery.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,11 @@ query Vault($address: ID!) {
blocklistManager
weeklyApy
}
privateVaultAccounts(
where: { vault: $address }
) {
privateVaultAccounts(where: { vault: $address }, first: 1000) {
createdAt
address
}
vaultBlockedAccounts(where: { vault: $address }) {
vaultBlockedAccounts(where: { vault: $address }, first: 1000) {
createdAt
address
}
Expand Down

0 comments on commit 8d972c8

Please sign in to comment.