Skip to content

Commit

Permalink
add indexer query getAccountOwnedTokensByTokenId
Browse files Browse the repository at this point in the history
  • Loading branch information
Jin committed Oct 12, 2023
1 parent f8e25b4 commit a149154
Show file tree
Hide file tree
Showing 4 changed files with 3,309 additions and 3,146 deletions.
11 changes: 11 additions & 0 deletions src/internal/queries/getAccountOwnedTokensByTokenId.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#import "./CurrentTokenOwnershipFieldsFragment";
query getOwnedTokensByTokenData(
$where_condition: current_token_ownerships_v2_bool_exp!
$offset: Int
$limit: Int
$order_by: [current_token_ownerships_v2_order_by!]
) {
current_token_ownerships_v2(where: $where_condition, offset: $offset, limit: $limit, order_by: $order_by) {
...CurrentTokenOwnershipFields
}
}
Loading

0 comments on commit a149154

Please sign in to comment.