> ## Documentation Index
> Fetch the complete documentation index at: https://docs.codex.io/llms.txt
> Use this file to discover all available pages before exploring further.

# getParallelCardChanges

> Returns changes made to Parallel card metadata over time.

<div data-generated>
  ## GraphQL

  ```
  type Query {
    getParallelCardChanges(
      tokenId: String
      timestamp: ParallelCardChangeQueryTimestampInput
      cursor: String
      limit: Int
    ): ParallelCardChangesConnection
  }

  type ParallelCardChangeFields {
    parallelId: String
    rarity: String
    class: String
    supply: String
    parallel: String
    cost: String
    attack: String
    health: String
    cardType: String
    subtype: String
    functionText: String
    passiveAbility: String
    flavourText: String
    expansion: String
    paraset: String
    artist: String
  }

  type ParallelCardChangeDiff {
    old: ParallelCardChangeFields!
    new: ParallelCardChangeFields!
  }

  type ParallelCardChange {
    tokenId: String!
    timestamp: Int!
    diff: ParallelCardChangeDiff!
  }

  type ParallelCardChangesConnection {
    cursor: String
    items: [ParallelCardChange]
  }

  input ParallelCardChangeQueryTimestampInput {
    from: Int
    to: Int
  }
  ```
</div>
