Returns changes made to Parallel card metadata over time.
Endpoint: getParallelCardChanges
Method: POST
Arguments
Name | Type | Description |
---|---|---|
cursor | String | The cursor to use for pagination. |
limit | Int | The maximum number of Parallel card changes to return. |
timestamp | ParallelCardChangeQueryTimestampInput | The time frame to request card changes. |
tokenId | String | The token ID for a Parallel asset. |
Response
Name | Type | Description |
---|---|---|
cursor | String | A cursor for use in pagination. |
items | [ParallelCardChange] | A list of tracked changes made to a Parallel card. |
Name | Type | Description |
---|---|---|
diff | ParallelCardChangeDiff! | The Parallel card metadata before and after the card change. |
timestamp | Int! | The unix timestamp for the card change. |
tokenId | String! | The token ID of the Parallel asset. |
Example
Recent Card Change Query
Use this query to find recent metadata changes (before and after) to any Parallel card.
{
getParallelCardChanges {
items {
tokenId
timestamp
diff {
old {
parallelId
rarity
class
supply
parallel
cost
attack
health
cardType
subtype
functionText
passiveAbility
flavourText
expansion
paraset
artist
}
new {
parallelId
rarity
class
supply
parallel
cost
attack
health
cardType
subtype
functionText
passiveAbility
flavourText
expansion
paraset
artist
}
}
}
cursor
}
}
{
"data": {
"filterNftParallelAssets": {
"count": 1,
"results": [
{
"tokenId": "10656",
"timestamp": 1676525755,
"diff": {
"old": {
"parallelId": null,
"rarity": null,
"class": null,
"supply": null,
"parallel": null,
"cost": null,
"attack": null,
"health": null,
"cardType": null,
"subtype": null,
"functionText": null,
"passiveAbility": null,
"flavourText": null,
"expansion": null,
"paraset": null,
"artist": null
},
"new": {
"parallelId": "2426",
"rarity": "Rare",
"class": "SE",
"supply": "500",
"parallel": "Kathari",
"cost": "8",
"attack": "4",
"health": "4",
"cardType": "Unit",
"subtype": null,
"functionText": "*Muster*: Play a copy of a revealed card in the enemy’s *Bank* and waste the banked Card.\n\nThis Unit gains +1/+1 for each revealed card in the enemy’s *Bank*. ",
"passiveAbility": null,
"flavourText": "“Just as we must be the water that flows over and around any obstacle, so too should we embody the immovable rock, defiant and resolute.” - Eighth teaching of Galli",
"expansion": "Base Set",
"paraset": "Pack Drop 4 [SE]",
"artist": "Dhenzel Obeng"
}
}
}
]
}
}
}
Explore
Ask questions, share what you're working on and request new features 👬👭