getAccountOwnedTokens constant

String const getAccountOwnedTokens

Implementation

static const String getAccountOwnedTokens =
    r'''query getAccountOwnedTokens($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
}
}''' +
        currentTokenOwnershipFieldsFragmentDoc;