Data from https://hicdex.com/
⚫⚪
query HicAllObjkts {
hic_et_nunc_token(order_by: {id: asc}) {
id
title
supply
}
}
query HicTopObjkts {
hic_et_nunc_token(order_by: {id: asc}) {
id
title
supply
}
}
query HicProfile {
hic_et_nunc_token(where: {creator: {address: {_eq: "$0"}}, supply: {_gt: 0}}, order_by: {id: asc}) {
id
}
hic_et_nunc_holder(where: {address: {_eq: "$0"}}) {
name
address
}
}
query HicFavoriteProfiles {
hic_et_nunc_holder(where: {address: {_in: [$0]}}) {
name
address
}
}
query HicSearchUsers {
hic_et_nunc_holder(where: $0) {
address
name
}
}
query HicCollection {
hic_et_nunc_token_holder(where: {token: {creator: {address: {_neq: "$0"}}}, holder_id: {_eq: "$0"}}, order_by: {token_id: desc}) {
token {
id
}
}
hic_et_nunc_holder(where: {address: {_eq: "$0"}}) {
name
address
metadata
}
}
query HicRandomObjkts {
hic_et_nunc_token(where: {swaps: {status: {_neq: 2}, price: {_gte: $0, _lte: $1}}}) {
id
creator {
address
name
}
royalties
description
display_uri
artifact_uri
mime
timestamp
swaps(order_by: {timestamp: asc}) {
price
amount_left
amount
status
creator {
name
address
}
}
}
}
query HicObjkts {
hic_et_nunc_token(where: {id: {_in: [$0]}}, order_by: {id: desc}) {
id
creator {
address
name
}
royalties
description
display_uri
artifact_uri
mime
timestamp
swaps(order_by: {timestamp: asc}) {
price
amount_left
amount
status
creator {
name
address
}
}
token_tags {
tag {
tag
}
}
}
}
query HicObjkt {
hic_et_nunc_token(where: {id: {_eq: $0}}) {
id
creator {
address
name
}
royalties
display_uri
artifact_uri
mime
timestamp
swaps(order_by: {timestamp: asc}) {
price
amount_left
amount
status
creator {
name
address
}
}
token_tags {
tag {
tag
}
}
}
hic_et_nunc_trade(where: {token_id: {_eq: $0}}, order_by: {swap: {price: desc}}) {
timestamp
seller {
name
address
}
buyer {
name
address
}
swap {
price
}
}
}
query HicTopObjkt {
hic_et_nunc_token(where: {id: {_eq: $0}}) {
id
creator {
address
name
}
royalties
display_uri
artifact_uri
mime
timestamp
swaps(order_by: {timestamp: asc}) {
price
amount_left
amount
status
creator {
name
address
}
}
token_tags {
tag {
tag
}
}
}
}
query HicTag {
hic_et_nunc_tag(where: {tag: {_in: $0 }}) {
tag_tokens {
token_id
}
}
}
query HicUndiscoveredCreators {
hic_et_nunc_swap(where: {status: {_neq:2}}, limit: 20000) {
creator {
address
name
}
amount
amount_left
token {
creator {
address
name
}
}
}
}
query HicUndiscoveredCreators {
hic_et_nunc_trade(distinct_on: seller_id, where: {seller_id: {_nlike: "KT%"}}) {
seller_id
}
}