Skip to content

Instantly share code, notes, and snippets.

@GlenDC
Last active November 13, 2019 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GlenDC/13e60383dd82a682a0af4d770f0873f5 to your computer and use it in GitHub Desktop.
Save GlenDC/13e60383dd82a682a0af4d770f0873f5 to your computer and use it in GitHub Desktop.
Rivine Query Examples (v2)

Make sure to read the GraphQL API Rivine Documentation as well (if not first).

The docs can be found in the playground as well as in the generated markdown document that you can find also at https://github.com/threefoldtech/rivine/blob/feat/graphql-phase1/modules/explorergraphql/schema.md.

More information about GraphQL can be found at https://graphql.org/learn/. This is especially recommended if you are new to GraphQL.

Examples

You can also get a wallet or contract as object. There also exists a query to get a contract directly, similar to how you can query a wallet directly.

block by position (e.g. height)

REMARK: Currently on http://explorer.rnd.threefoldtoken.com/explorer/graphql this is still done as follows:

Query:

query($ref: ReferencePoint!) {
  block(reference: $ref) {
  	Header {
      ID
      ParentID
      Parent {
        Header {
          ID
          BlockHeight
      		BlockTime
        }
      }
      Child {
        Header {
          ID
          BlockHeight
      		BlockTime
        }
      }
      BlockHeight
      BlockTime
      Payouts {
        Output {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
        }
        Type
      }
    }
    Transactions {
      ID
      Version
      ParentBlock {
        Height
        Timestamp
        TransactionOrder
        SiblingTransactions {
          ID
        }
      }
      ... on StandardTransaction {
        BlockStakeInputs {
          ID
          ParentOutput {
            ID
            Value
            
          }
          Fulfillment {
            Version
            ... on SingleSignatureFulfillment {
              PublicKey
              Signature
            }
          }
        }
        BlockStakeOutputs {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
          ChildInput {
            ID
            Fulfillment {
              Version
              ... on SingleSignatureFulfillment {
                PublicKey
                Signature
              }
            }
          }
        }
      }
    }
  }
}

variables

{
  "ref": 1
}

Query:

query($position: Int) {
  blockAt(position: $position) {
    Header {
      ID
      ParentID
      Parent {
        Header {
          ID
          BlockHeight
      		BlockTime
        }
      }
      Child {
        Header {
          ID
          BlockHeight
      		BlockTime
        }
      }
      BlockHeight
      BlockTime
      # receive only block creation payouts,
      # you can also omit it to query all possible payouts,
      # or filter on any other type
      Payouts(type: BLOCK_REWARD) {
        Output {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
        }
        Type
      }
    }
    Transactions {
      ID
      Version
      ParentBlock {
        Height
        Timestamp
        TransactionOrder
        SiblingTransactions {
          ID
        }
      }
      ... on StandardTransaction {
        BlockStakeInputs {
          ID
          ParentOutput {
            ID
            Value
            
          }
          Fulfillment {
            Version
            ... on SingleSignatureFulfillment {
              PublicKey
              Signature
            }
          }
        }
        BlockStakeOutputs {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
          ChildInput {
            ID
            Fulfillment {
              Version
              ... on SingleSignatureFulfillment {
                PublicKey
                Signature
              }
            }
          }
        }
      }
    }
  }
}

variables

{
  "position": 1
}

Note that you can also define a negative position, in which case you request a block at a given position starting from the last block instead of the first block.

block by hash

Query:

query($ID: Hash) {
  block(id: $ID) {
    Header {
      ID
      ParentID
      BlockHeight
      BlockTime
      Payouts {
        Output {
          ID
          Value
          Condition {
            __typename
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
            ... on MultiSignatureCondition {
              Owners {
                UnlockHash
                PublicKey
              }
            }
            ... on LockTimeCondition {
              LockType
              LockValue
            }
          }
        }
        Type
      }
    }
    Transactions {
      ID
      Version
      ParentBlock {
        Height
        Timestamp
        TransactionOrder
        SiblingTransactions {
          ID
        }
      }
      ... on StandardTransaction {
        BlockStakeInputs {
          ID
          ParentOutput {
            ID
            Value
            
          }
          Fulfillment {
            Version
            ... on SingleSignatureFulfillment {
              PublicKey
              Signature
            }
          }
        }
        BlockStakeOutputs {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
          ChildInput {
            ID
            Fulfillment {
              Version
              ... on SingleSignatureFulfillment {
                PublicKey
                Signature
              }
            }
          }
        }
      }
    }
  }
}

variables

{
  "ID": "cf6675998c8a994b1eba5dab3d007f306447192079142e2dbd47b2043947e382",
}

Query latest block

Query:

{
  block {
    Header {
      ID
      ParentID
      Parent {
        Header {
          BlockHeight
      		BlockTime
        }
      }
      Child { #will always be null,as this is latest block but nice to confirm anyhow
        Header {
          BlockHeight
      		BlockTime
        }
      }
      BlockHeight
      BlockTime
      Payouts {
        Output {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
            ... on LockTimeCondition {
              LockType
              LockValue
              Condition {
               	UnlockHash
                ... on UnlockHashCondition {
                  PublicKey
                }
              }
            }
          }
        }
        Type
      }
    }
    Transactions {
      ID
      Version
      ParentBlock {
        Height
        Timestamp
        TransactionOrder
        SiblingTransactions {
          ID
        }
      }
      ... on StandardTransaction {
        BlockStakeInputs {
          ID
          ParentOutput {
            ID
            Value
            
          }
          Fulfillment {
            Version
            ... on SingleSignatureFulfillment {
              PublicKey
              Signature
            }
          }
        }
        BlockStakeOutputs {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
          ChildInput {
            ID
            Fulfillment {
              Version
              ... on SingleSignatureFulfillment {
                PublicKey
                Signature
              }
            }
          }
        }
      }
    }
  }
}

Get Genesis Block

Query:

query($height: BlockHeight = 0) {
  blockAt(height: $height) {
    Header {
      ID
      ParentID
      BlockHeight
      BlockTime
    }
    Transactions {
      ID
      Version
      ParentBlock {
        TransactionOrder
      }
      ... on StandardTransaction {
        CoinOutputs {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
          ChildInput {
            ID
            Fulfillment {
              Version
              ... on SingleSignatureFulfillment {
                PublicKey
                Signature
              }
            }
          }
        }
        BlockStakeOutputs {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
          ChildInput {
            ID
            Fulfillment {
              Version
              ... on SingleSignatureFulfillment {
                PublicKey
                Signature
              }
            }
          }
        }
      }
    }
  }
}

Transaction

Query:

query($ID: Hash!) {
  transaction(id: $ID) {
    ID
    Version
    ParentBlock {
      ID
      Height
      Timestamp
      TransactionOrder
      SiblingTransactions {
        ID
      }
    }
    ... on StandardTransaction {
      BlockStakeInputs {
        ID
        ParentOutput {
          ID
          Value

        }
        Fulfillment {
          Version
          ... on SingleSignatureFulfillment {
            PublicKey
            Signature
          }
        }
      }
      BlockStakeOutputs {
        ID
        Value
        Condition {
          UnlockHash
          ... on UnlockHashCondition {
            PublicKey
          }
        }
        ChildInput {
          ID
          Fulfillment {
            Version
            ... on SingleSignatureFulfillment {
              PublicKey
              Signature
            }
          }
        }
      }
    }
    FeePayouts {
      Value
      BlockPayout {
        Output {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
        }
        Type
      }
    }
  }
}

Variables:

{
  "ID": "42e921547428a96b065c167c9b95668b6a87b83d2afabd7bf49addebe3af3f0d"
}

Query Output

Query:

query($ID: Hash!) {
  output(id: $ID) {
    ID
    Value
    Type
    Condition {
      Version
      UnlockHash
      ... on UnlockHashCondition {
        PublicKey
      }
    }
    ChildInput {
      Fulfillment {
        Version
        ... on SingleSignatureFulfillment {
          PublicKey
          Signature
        }
      }
    }
    Parent {
      __typename
    	... on StandardTransaction {
        ID
      }
      ... on Block {
        Header {
          ID
        }
      }
    }
  }
}

Variables:

{
	"ID": "bcf8dc8856b0682f333588e04113e38f3cc68fb6deb46dd653956cb135e422aa"
}

Query Block (As Object)

Query:

query($ID: ObjectID) {
  object(id: $ID) {
    __typename
    ... on Block {
      Header {
        ID
        ParentID
        Parent {
          Header {
            ID
            BlockHeight
            BlockTime
          }
        }
        Child {
          Header {
            ID
            BlockHeight
            BlockTime
          }
        }
        BlockHeight
        BlockTime
        Payouts {
          Output {
            ID
            Value
            Condition {
              UnlockHash
              ... on UnlockHashCondition {
                PublicKey
              }
            }
          }
          Type
        }
      }
      Transactions {
        ID
        Version
        ParentBlock {
          Height
          Timestamp
          TransactionOrder
          SiblingTransactions {
            ID
          }
        }
        ... on StandardTransaction {
          BlockStakeInputs {
            ID
            ParentOutput {
              ID
              Value

            }
            Fulfillment {
              Version
              ... on SingleSignatureFulfillment {
                PublicKey
                Signature
              }
            }
          }
          BlockStakeOutputs {
            ID
            Value
            Condition {
              UnlockHash
              ... on UnlockHashCondition {
                PublicKey
              }
            }
            ChildInput {
              ID
              Fulfillment {
                Version
                ... on SingleSignatureFulfillment {
                  PublicKey
                  Signature
                }
              }
            }
          }
        }
      }
    }
  }
}

Variables:

{
  "ID": "a41c6cb6cd93522f26431a058cabc8a593a2338594b95834da7e73d7a23ed6df"
}

Query Transaction (As Object)

Query:

query($ID: ObjectID) {
  object(id: $ID) {
    __typename
    ... on Transaction {
      ID
      Version
      ParentBlock {
        ID
        Height
        Timestamp
        TransactionOrder
        SiblingTransactions {
          ID
        }
      }
      ... on StandardTransaction {
        BlockStakeInputs {
          ID
          ParentOutput {
            ID
            Value

          }
          Fulfillment {
            Version
            ... on SingleSignatureFulfillment {
              PublicKey
              Signature
            }
          }
        }
        BlockStakeOutputs {
          ID
          Value
          Condition {
            UnlockHash
            ... on UnlockHashCondition {
              PublicKey
            }
          }
          ChildInput {
            ID
            Fulfillment {
              Version
              ... on SingleSignatureFulfillment {
                PublicKey
                Signature
              }
            }
          }
        }
      }
      FeePayouts {
        Value
        BlockPayout {
          Output {
            ID
            Value
            Condition {
              UnlockHash
              ... on UnlockHashCondition {
                PublicKey
              }
            }
          }
          Type
        }
      }
    }
  }
}

Variables:

{
  "ID": "7ddace3a757c533f6415d8ec6b7148b88bc16475cba897ec7010384e88aa948a"
}

Query Output (As Object)

Query:

query($ID: ObjectID) {
  object(id: $ID) {
    __typename
    ... on Output {
      ID
      Value
      Type
      Condition {
        Version
        UnlockHash
        ... on UnlockHashCondition {
          PublicKey
        }
        ... on LockTimeCondition {
          LockType
          LockValue
          Condition {
            ... on UnlockHashCondition {
              PublicKey
            }
          }
        }
      }
      ChildInput {
        Fulfillment {
          Version
          ... on SingleSignatureFulfillment {
            PublicKey
            Signature
          }
        }
      }
      ParentID
      Parent {
        __typename
        ... on Transaction {
          ID
          Version
          ParentBlock {
            ID
            Height
            Timestamp
            TransactionOrder
            SiblingTransactions {
              ID
            }
          }
        }
      }
    }
  }
}

Variables:

{
  "ID": "d5b813eb7627ff8009308326947d95af1ba6f9162e675cb5c59ce610b84d1749"
}

Query Chain Facts

{
  chain {
    Constants {
      Name
      NetworkName
      CoinUnit
      CoinPecision
      ChainVersion
      DefaultTransactionVersion
      GatewayProtocolVersion
      ConsensusPlugins
      GenesisTimestamp
      BlockSizeLimitInBytes
      AverageBlockCreationTimeInSeconds
      GenesisTotalBlockStakes
      BlockStakeAging
      BlockCreatorFee
      MinimumTransactionFee
      TransactionFeeBeneficiary {
        UnlockHash
      }
      PayoutMaturityDelay
    }
    Aggregated {
      TotalCoins
      TotalLockedCoins
      TotalBlockStakes
      TotalLockedBlockStakes
      EstimatedActiveBlockStakes
    }
    LastBlock {
      Header {
        ... blockHeaderFields
        Parent {
          Header {
            ... blockHeaderFields
            Parent {
              Header {
                ... blockHeaderFields
              }
              ... blockFields
            }
          }
          ... blockFields
        }
      }
      ... blockFields
    }
  }
}

fragment blockHeaderFields on BlockHeader {
  	ID
    BlockHeight
    BlockTime
  	Payouts {
      Output {
        ID
      }
    }
}

fragment blockFields on Block {
  Transactions {
    ID
    Version
  }
}

Query Wallet

Query:

query($unlockhash: UnlockHash!) {
  wallet(unlockhash: $unlockhash) {
    CoinBalance {
      Unlocked
      Locked
    }
    CoinOutputs {
      ID
      Value
    }
  }
}

Variables:

{
  "unlockhash": "015a080a9259b9d4aaa550e2156f49b1a79a64c7ea463d810d4493e8242e6791584fbdac553e6f"
}

Intro

See "Get all blocks, using no filters" Example for a generic into to blocks querying.

Query Example

In this example we want to show a complex query, where we only care about blocks that have at least 2 tranctions, as to only give us so called value-blocks, for which we only want to return coin-transfer transactions.

Query

{
  blocks(filter: {TransactionLength: {GreaterThanOrEqualTo: 2}}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
        Payouts(type: BLOCK_REWARD) {
          Output {
            Condition {
              UnlockHash
            }
          }
        }
      }
      Facts {
        ChainSnapshot {
          TotalCoins
          TotalLockedCoins
        }
      }
      Transactions(filter: {Versions: [0, 1], CoinOutputValue: {GreaterThan: 0}}) {
        ID
        Version
        CoinOutputs {
          ID
          Value
          Type
          Condition {
            UnlockHash
          }
        }
      }
    }
    NextCursor
  }
}

Response

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "273570cc3e21f56c008bafdb3cdaf4465043ceeb343b4e8b29bcb30f1808192b",
            "BlockHeight": 3219,
            "BlockTime": 1573635458,
            "Payouts": [
              {
                "Output": {
                  "Condition": {
                    "UnlockHash": "015a080a9259b9d4aaa550e2156f49b1a79a64c7ea463d810d4493e8242e6791584fbdac553e6f"
                  }
                }
              }
            ]
          },
          "Facts": {
            "ChainSnapshot": {
              "TotalCoins": 503219000000000,
              "TotalLockedCoins": 10000000000
            }
          },
          "Transactions": null
        },
        {
          "Header": {
            "ID": "5f88069711b34175d48ca1b2cf523f98423af0c348e864fd4db9a73e22ceccef",
            "BlockHeight": 3222,
            "BlockTime": 1573635489,
            "Payouts": [
              {
                "Output": {
                  "Condition": {
                    "UnlockHash": "015a080a9259b9d4aaa550e2156f49b1a79a64c7ea463d810d4493e8242e6791584fbdac553e6f"
                  }
                }
              }
            ]
          },
          "Facts": {
            "ChainSnapshot": {
              "TotalCoins": 503222000000000,
              "TotalLockedCoins": 10100000000
            }
          },
          "Transactions": [
            {
              "ID": "62f6dcbbe567b4ef9520ab0de0ecf6978e42cf72488abd76700748ff02adc3d8",
              "Version": 1,
              "CoinOutputs": [
                {
                  "ID": "8457d09218d4dcffc2bbfcd8ff2adbe0bb4fdf8ed80d27d8c1268fbce0392f85",
                  "Value": 10000000000,
                  "Type": "COIN",
                  "Condition": {
                    "UnlockHash": "01f68299b26a89efdb4351a61c3a062321d23edbc1399c8499947c1313375609adbbcd3977363c"
                  }
                },
                {
                  "ID": "db61b2f020a0ff8fb0809f966e0a90a3fe9886edbe9102ccf85326a3ee2a0768",
                  "Value": 499989900000000,
                  "Type": "COIN",
                  "Condition": {
                    "UnlockHash": "015a080a9259b9d4aaa550e2156f49b1a79a64c7ea463d810d4493e8242e6791584fbdac553e6f"
                  }
                }
              ]
            }
          ]
        }
      ],
      "NextCursor": null
    }
  }
}

Intro

See "Get all blocks, using no filters" Example for an intro.

Query for last 5 blocks

Query:

{
  blocks(filter: {Height: {After: -6}}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "28b176b2875d7cadba89745b0b1ee24e069d665f52226466545a984d6c8f12a9",
            "BlockHeight": 2455,
            "BlockTime": 1573229350
          },
          "Facts": {
            "Target": "00023b330a0f767270130874c443f237d92e50a5c202c05b4d6c5480b5d97cbd",
            "Difficulty": 29371
          }
        },
        {
          "Header": {
            "ID": "71297b609a314351be2c3b07178548e34656635a3191400f1221d0d9d53c9ac6",
            "BlockHeight": 2456,
            "BlockTime": 1573229362
          },
          "Facts": {
            "Target": "00023b330a0f767270130874c443f237d92e50a5c202c05b4d6c5480b5d97cbd",
            "Difficulty": 29371
          }
        },
        {
          "Header": {
            "ID": "f834a994664fbfed4746b9398155236ac585aea27f80cff1926b190cacfe4f4b",
            "BlockHeight": 2457,
            "BlockTime": 1573229380
          },
          "Facts": {
            "Target": "00023b330a0f767270130874c443f237d92e50a5c202c05b4d6c5480b5d97cbd",
            "Difficulty": 29371
          }
        },
        {
          "Header": {
            "ID": "9f37a1d42f2f99d32f4a1f6e3ab9e531e4875d7e5ebcddc1accc7fc853fe3283",
            "BlockHeight": 2458,
            "BlockTime": 1573229392
          },
          "Facts": {
            "Target": "00023b330a0f767270130874c443f237d92e50a5c202c05b4d6c5480b5d97cbd",
            "Difficulty": 29371
          }
        },
        {
          "Header": {
            "ID": "880595ed3ea29065e9f0292b04f2287434a2b00faa992b803468c128669ac802",
            "BlockHeight": 2459,
            "BlockTime": 1573229405
          },
          "Facts": {
            "Target": "00023b330a0f767270130874c443f237d92e50a5c202c05b4d6c5480b5d97cbd",
            "Difficulty": 29371
          }
        }
      ],
      "NextCursor": null
    }
  }
}

Same Query but using Between

{
  blocks(filter: {Height: {Between: {Start: -5}}}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Note that we give -5 instead of -6, as Between works inclusive, while After works exclusive.

Intro

See "Get all blocks, using no filters" Example for a generic into to blocks querying.

When filtering by heights and timestamps you can choose between filtering on:

  • before a given height/timestamp
  • after a given height/timestamp
  • between one or two (inclusive) height(s) / timestamp(s)

You can however give no more than one of these options.

In case you give none of the 3 fields, it is considered the same as not giving a heights/timestamps filter at all.

Queries

First

Query:

{
  blocks(filter: {Height: {Before: -20}, Timestamp: {Between: {Start: 1573047690, End: 1573047766}}, Limit: 4}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "94a4d4f04c1e4917ce64917dc472bc5ec51bf2b81f56e9b060cf73d48f509c16",
            "BlockHeight": 8,
            "BlockTime": 1573047706
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "eeb9e1e58e7241538cd10cb44ae199f58edb1ff50fe078321e3f44c1b53e1400",
            "BlockHeight": 9,
            "BlockTime": 1573047708
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "4816224610a24f3844b1dce30fba7f95a27813e9a2e70384fa1146636fba3c98",
            "BlockHeight": 10,
            "BlockTime": 1573047717
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "42161793f787f3fe3cbd465ea78480da8c62a8f5b018d96fb3d99f8f4a6f5705",
            "BlockHeight": 11,
            "BlockTime": 1573047727
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        }
      ],
      "NextCursor": "0c"
    }
  }
}

Second

Query:

{
  blocks(filter: {Height: {Before: -20}, Timestamp: {Between: {Start: 1573047690, End: 1573047766}}, Cursor: "0c", Limit: 4}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "01e38c21d74564315c35dce83cf995142e5c5afb046756fc05c95086ed9c5be0",
            "BlockHeight": 12,
            "BlockTime": 1573047742
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        },
        {
          "Header": {
            "ID": "e1f88eda1951dc0b95967da6001e13b066c6431a35beea140e45060b8c36591a",
            "BlockHeight": 13,
            "BlockTime": 1573047746
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        },
        {
          "Header": {
            "ID": "46407b88f2adb87a4ad86e97feb6bc810c29b1d043686e92259f36b8534f6791",
            "BlockHeight": 14,
            "BlockTime": 1573047756
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        }
      ],
      "NextCursor": null
    }
  }
}

Intro

See "Get all blocks, using no filters" Example for a generic into to blocks querying.

When filtering by time you can choose between filtering on:

  • before a given timestamp
  • after a given timestamp
  • between one or two (inclusive) timestamp(s)

You can however give no more than one of these options.

In case you give none of the 3 fields, it is considered the same as not giving a time filter at all.

Between Query

Query:

{
  blocks(filter: {Timestamp: {Between: {Start: 1573129971, End: 1573130009}}}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "4e4f34c675d76d18d2e5ad36de64b00ff6b5324e9212cc737919c6a84708cfcd",
            "BlockHeight": 27,
            "BlockTime": 1573129971
          },
          "Facts": {
            "Target": "00029f16b11c6d1e108c3f3e0370cdc8754f3775b8130164840e1719f7f8ca80",
            "Difficulty": 25000
          }
        },
        {
          "Header": {
            "ID": "da31780904d8f2a6ad129376e80f672778c703a8478c2095ce718af06a33de2c",
            "BlockHeight": 28,
            "BlockTime": 1573129981
          },
          "Facts": {
            "Target": "00029f16b11c6d1e108c3f3e0370cdc8754f3775b8130164840e1719f7f8ca80",
            "Difficulty": 25000
          }
        },
        {
          "Header": {
            "ID": "39b6e7cea2ce9a07316e3917237f2b85ca7fb7e056c838826b68d937f28f4483",
            "BlockHeight": 29,
            "BlockTime": 1573129986
          },
          "Facts": {
            "Target": "00029f16b11c6d1e108c3f3e0370cdc8754f3775b8130164840e1719f7f8ca80",
            "Difficulty": 25000
          }
        },
        {
          "Header": {
            "ID": "5de201d198af3da7daccc7b758aafe37190648f8e701acf6b4f2959297ec9210",
            "BlockHeight": 30,
            "BlockTime": 1573129994
          },
          "Facts": {
            "Target": "00029f16b11c6d1e108c3f3e0370cdc8754f3775b8130164840e1719f7f8ca80",
            "Difficulty": 25000
          }
        },
        {
          "Header": {
            "ID": "a7f94bf2de82c4222c6812f612bed6e84361d6c2d2552561110298bcf87f4dba",
            "BlockHeight": 31,
            "BlockTime": 1573130006
          },
          "Facts": {
            "Target": "0003254e6e221c8a7a41e57d9dba908a265f0f5a1016ce789e774eebf65dbfcc",
            "Difficulty": 20833
          }
        },
        {
          "Header": {
            "ID": "a56427da909f5feb40e8129cc6e59b980888fb5131ce4e658136b965d8006944",
            "BlockHeight": 32,
            "BlockTime": 1573130007
          },
          "Facts": {
            "Target": "0003254e6e221c8a7a41e57d9dba908a265f0f5a1016ce789e774eebf65dbfcc",
            "Difficulty": 20833
          }
        }
      ],
      "NextCursor": null
    }
  }
}

Between Query with only start and limit

Query:

{
  blocks(filter: {Timestamp: {Between: {Start: 1573129973}}, Limit: 3}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "da31780904d8f2a6ad129376e80f672778c703a8478c2095ce718af06a33de2c",
            "BlockHeight": 28,
            "BlockTime": 1573129981
          },
          "Facts": {
            "Target": "00029f16b11c6d1e108c3f3e0370cdc8754f3775b8130164840e1719f7f8ca80",
            "Difficulty": 25000
          }
        },
        {
          "Header": {
            "ID": "39b6e7cea2ce9a07316e3917237f2b85ca7fb7e056c838826b68d937f28f4483",
            "BlockHeight": 29,
            "BlockTime": 1573129986
          },
          "Facts": {
            "Target": "00029f16b11c6d1e108c3f3e0370cdc8754f3775b8130164840e1719f7f8ca80",
            "Difficulty": 25000
          }
        },
        {
          "Header": {
            "ID": "5de201d198af3da7daccc7b758aafe37190648f8e701acf6b4f2959297ec9210",
            "BlockHeight": 30,
            "BlockTime": 1573129994
          },
          "Facts": {
            "Target": "00029f16b11c6d1e108c3f3e0370cdc8754f3775b8130164840e1719f7f8ca80",
            "Difficulty": 25000
          }
        }
      ],
      "NextCursor": "1f"
    }
  }
}

Query before a timestamp

Queries

First

Query:

{
  blocks(filter: {Timestamp: {Before: 1573129973}, Limit: 3}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "422aea8bb2ff9dcbab7f47602668b30575574260db024e58c54c957061e537f9",
            "BlockHeight": 0,
            "BlockTime": 1571229355
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "2fb1ba645d49677c7874a41f98989d8ebcb63de7d9c926ee321ab7f14204260e",
            "BlockHeight": 1,
            "BlockTime": 1573047634
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "3470528d84408beef445da4e3ce7fa37ce26146878320e018e113d04405fa6b6",
            "BlockHeight": 2,
            "BlockTime": 1573047638
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        }
      ],
      "NextCursor": "03"
    }
  }
}

Second

Query:

{
  blocks(filter: {Timestamp: {Before: 1573129973}, Cursor: "03", Limit: 3}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "2d6c5a786836fdf4d8ab54d5fe2c1e92707b97f799a7ff97298a589642803912",
            "BlockHeight": 3,
            "BlockTime": 1573047645
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "212c5edcc6cdc14211906c7ae81c45c727c36d111dfcab0ad4c9fc3f8ecdb57c",
            "BlockHeight": 4,
            "BlockTime": 1573047656
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "a41c6cb6cd93522f26431a058cabc8a593a2338594b95834da7e73d7a23ed6df",
            "BlockHeight": 5,
            "BlockTime": 1573047667
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        }
      ],
      "NextCursor": "06"
    }
  }
}

Third

Query:

{
  blocks(filter: {Timestamp: {Before: 1573129973}, Cursor: "06", Limit: 3}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "96a0032db1e7eda882c0cc63849abe8bf982bddf3cef863d9c05a9ea48b32bfb",
            "BlockHeight": 6,
            "BlockTime": 1573047683
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "a594d1eb94c9f2d348c3e6331a711b88621ba68a39ec1e338cbfb82bc6a4c0b9",
            "BlockHeight": 7,
            "BlockTime": 1573047689
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "94a4d4f04c1e4917ce64917dc472bc5ec51bf2b81f56e9b060cf73d48f509c16",
            "BlockHeight": 8,
            "BlockTime": 1573047706
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        }
      ],
      "NextCursor": "09"
    }
  }
}

Fourth

Query:

{
  blocks(filter: {Timestamp: {Before: 1573129973}, Cursor: "09", Limit: 3}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "eeb9e1e58e7241538cd10cb44ae199f58edb1ff50fe078321e3f44c1b53e1400",
            "BlockHeight": 9,
            "BlockTime": 1573047708
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "4816224610a24f3844b1dce30fba7f95a27813e9a2e70384fa1146636fba3c98",
            "BlockHeight": 10,
            "BlockTime": 1573047717
          },
          "Facts": {
            "Target": "0001d208a5a912e319b6ba23f42ac7cb35053bd8dc46164ce9ed57275dfafe68",
            "Difficulty": 36000
          }
        },
        {
          "Header": {
            "ID": "42161793f787f3fe3cbd465ea78480da8c62a8f5b018d96fb3d99f8f4a6f5705",
            "BlockHeight": 11,
            "BlockTime": 1573047727
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        }
      ],
      "NextCursor": "0c"
    }
  }
}

Fifth

Query:

{
  blocks(filter: {Timestamp: {Before: 1573129973}, Cursor: "0f", Limit: 3}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "1393db9a75dce63858ca91d60b3667532df5adae67bcf76550ee095ea9030a02",
            "BlockHeight": 15,
            "BlockTime": 1573047767
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        },
        {
          "Header": {
            "ID": "6d1725a9f39f5fbf873bd61fc61b0d80dc4276466a452e27d795361f1180de9a",
            "BlockHeight": 16,
            "BlockTime": 1573047777
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        },
        {
          "Header": {
            "ID": "b707ccdd1db13c3ce41b07dae8929a8a90763708e151eca29e42ed266400ea79",
            "BlockHeight": 17,
            "BlockTime": 1573047801
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        }
      ],
      "NextCursor": "12"
    }
  }
}

Sixth

Query:

{
  blocks(filter: {Timestamp: {Before: 1573129973}, Cursor: "12", Limit: 3}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
      Facts {
        Target
        Difficulty
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "517f44f4ce569ef6a48dd78d5a071bdc47071a4aeca5763ee1830e3606148a50",
            "BlockHeight": 18,
            "BlockTime": 1573047803
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        },
        {
          "Header": {
            "ID": "b22a272d121b683036ca400717793ed6a6781914f5dd33d4d00a0f1af70d3f2f",
            "BlockHeight": 19,
            "BlockTime": 1573047823
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        },
        {
          "Header": {
            "ID": "6646bf9c8cf51c0d7aaa5e6e5287e242c84848aaa5bf6e1555ce0df1c91ff97b",
            "BlockHeight": 20,
            "BlockTime": 1573047838
          },
          "Facts": {
            "Target": "00022f3d9397b043b874df5e583356270c6cae376eba812918b66895a3f9fe16",
            "Difficulty": 30000
          }
        }
      ],
      "NextCursor": "15"
    }
  }
}

And so on...

Intro

See "Get all blocks, using no filters" Example for a generic into to blocks querying.

When filtering by heights you can choose between filtering on:

  • before a given height
  • after a given height
  • between one or two (inclusive) height(s)

You can however give no more than one of these options.

In case you give none of the 3 fields, it is considered the same as not giving a heights filter at all.

Queries

First

Query:

{
  blocks(filter: {Height: {Between: {Start: 100, End: 115}}}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "a697cbe4a2eacd48fd5f1b04ec0e30afab2313d1b13509e86d5bf1daa2637c5c",
            "BlockHeight": 100,
            "BlockTime": 1573130793
          }
        },
        {
          "Header": {
            "ID": "d9fe3a84634ff9d41c3ef64e44d1149272c55df05f6560f7179f0b2e83ab6228",
            "BlockHeight": 101,
            "BlockTime": 1573130801
          }
        },
        {
          "Header": {
            "ID": "f3fc95949e2c5950bdaeb632022709792760dd911141d12447b558b49b80b16d",
            "BlockHeight": 102,
            "BlockTime": 1573130814
          }
        },
        {
          "Header": {
            "ID": "7e4a037a8b2e39b6517b055ef2ccef9b79067a540d1d3cdd049be31038294451",
            "BlockHeight": 103,
            "BlockTime": 1573130818
          }
        },
        {
          "Header": {
            "ID": "636c23a620bb6f2e90fc2cda08cb098fd6a7130c8febf40f3388d662d9dabd0e",
            "BlockHeight": 104,
            "BlockTime": 1573130836
          }
        },
        {
          "Header": {
            "ID": "dfecb6f220004e31beeb7070bc2ef1662fd95387ec5c4f73b2c1c6d2288e34b4",
            "BlockHeight": 105,
            "BlockTime": 1573130844
          }
        },
        {
          "Header": {
            "ID": "899dcf5bd786a789d2a23cefee2d002f5614c3b2e579006b5c29a3705cbd4bd6",
            "BlockHeight": 106,
            "BlockTime": 1573130848
          }
        },
        {
          "Header": {
            "ID": "e965e2707951df6afc0d66b202afa2fb9cbc8f4865f06c64c1843d47dbadb38f",
            "BlockHeight": 107,
            "BlockTime": 1573130858
          }
        },
        {
          "Header": {
            "ID": "ff11a8bba77fb17b2a7c60f0e7a53ecf4415a9c6bbc4437451c72fb7378be14e",
            "BlockHeight": 108,
            "BlockTime": 1573130866
          }
        },
        {
          "Header": {
            "ID": "8008be4f1859c24995240c791681225e929c1afeff958954ce112afe64e084b3",
            "BlockHeight": 109,
            "BlockTime": 1573130870
          }
        }
      ],
      "NextCursor": "6e"
    }
  }
}

Second

Query:

{
  blocks(filter: {Height: {Between: {Start: 100, End: 115}}, Cursor: "6e"}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "21f7426e6075d3eb9160b4418c413979650e24f86170affcbdd7f4e0fabb32ea",
            "BlockHeight": 110,
            "BlockTime": 1573130881
          }
        },
        {
          "Header": {
            "ID": "a984fdb128444f884a367178af6045982c15c2134c604cc58f05ba13092cf11e",
            "BlockHeight": 111,
            "BlockTime": 1573130921
          }
        },
        {
          "Header": {
            "ID": "d54840a8136350c7e42216fc699d290a5be1bf18c2ee33fa732781b104138824",
            "BlockHeight": 112,
            "BlockTime": 1573130934
          }
        },
        {
          "Header": {
            "ID": "1148d6b4d004865e77e8594e3ab0d7bb25faa6c72d00acc3109aeb91fa4f0f2b",
            "BlockHeight": 113,
            "BlockTime": 1573130948
          }
        },
        {
          "Header": {
            "ID": "a2b25a5bdd36cbbceaebcece4cc7a68214b337745326240fe765b19a28b3dbbe",
            "BlockHeight": 114,
            "BlockTime": 1573130967
          }
        },
        {
          "Header": {
            "ID": "2c084655ab611e6e3b14aba7a3650f8eaa9c91c80881bd6de323aaedb47748b7",
            "BlockHeight": 115,
            "BlockTime": 1573130967
          }
        }
      ],
      "NextCursor": null
    }
  }
}

Intro

When querying multiple items there is always an upper limit, this is defined by the DB implementation and cannot be overreached. You can however define a limit lower then the upper limit. When you specify a limit higher than the upper limit, it will be clamped to the upper limit. When you specify a negative or zero limit, no items will be returned.

When more items can be found for the same query (using the same filters, and as such the same dataset), a (non-null) NextCursor is returned. If a null NextCursor (equivalent to no NextCursor) than it can be assumed that for the specified filters (or no filters) all items have been returned, and no items remain according to the know state during the processing of that call.

Queries

First

Query:

{
  blocks {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "422aea8bb2ff9dcbab7f47602668b30575574260db024e58c54c957061e537f9",
            "BlockHeight": 0,
            "BlockTime": 1571229355
          }
        },
        {
          "Header": {
            "ID": "2fb1ba645d49677c7874a41f98989d8ebcb63de7d9c926ee321ab7f14204260e",
            "BlockHeight": 1,
            "BlockTime": 1573047634
          }
        },
        {
          "Header": {
            "ID": "3470528d84408beef445da4e3ce7fa37ce26146878320e018e113d04405fa6b6",
            "BlockHeight": 2,
            "BlockTime": 1573047638
          }
        },
        {
          "Header": {
            "ID": "2d6c5a786836fdf4d8ab54d5fe2c1e92707b97f799a7ff97298a589642803912",
            "BlockHeight": 3,
            "BlockTime": 1573047645
          }
        },
        {
          "Header": {
            "ID": "212c5edcc6cdc14211906c7ae81c45c727c36d111dfcab0ad4c9fc3f8ecdb57c",
            "BlockHeight": 4,
            "BlockTime": 1573047656
          }
        },
        {
          "Header": {
            "ID": "a41c6cb6cd93522f26431a058cabc8a593a2338594b95834da7e73d7a23ed6df",
            "BlockHeight": 5,
            "BlockTime": 1573047667
          }
        },
        {
          "Header": {
            "ID": "96a0032db1e7eda882c0cc63849abe8bf982bddf3cef863d9c05a9ea48b32bfb",
            "BlockHeight": 6,
            "BlockTime": 1573047683
          }
        },
        {
          "Header": {
            "ID": "a594d1eb94c9f2d348c3e6331a711b88621ba68a39ec1e338cbfb82bc6a4c0b9",
            "BlockHeight": 7,
            "BlockTime": 1573047689
          }
        },
        {
          "Header": {
            "ID": "94a4d4f04c1e4917ce64917dc472bc5ec51bf2b81f56e9b060cf73d48f509c16",
            "BlockHeight": 8,
            "BlockTime": 1573047706
          }
        },
        {
          "Header": {
            "ID": "eeb9e1e58e7241538cd10cb44ae199f58edb1ff50fe078321e3f44c1b53e1400",
            "BlockHeight": 9,
            "BlockTime": 1573047708
          }
        }
      ],
      "NextCursor": "0a"
    }
  }
}

Second

Query:

{
  blocks(filter: {Cursor: "0a"}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "4816224610a24f3844b1dce30fba7f95a27813e9a2e70384fa1146636fba3c98",
            "BlockHeight": 10,
            "BlockTime": 1573047717
          }
        },
        {
          "Header": {
            "ID": "42161793f787f3fe3cbd465ea78480da8c62a8f5b018d96fb3d99f8f4a6f5705",
            "BlockHeight": 11,
            "BlockTime": 1573047727
          }
        },
        {
          "Header": {
            "ID": "01e38c21d74564315c35dce83cf995142e5c5afb046756fc05c95086ed9c5be0",
            "BlockHeight": 12,
            "BlockTime": 1573047742
          }
        },
        {
          "Header": {
            "ID": "e1f88eda1951dc0b95967da6001e13b066c6431a35beea140e45060b8c36591a",
            "BlockHeight": 13,
            "BlockTime": 1573047746
          }
        },
        {
          "Header": {
            "ID": "46407b88f2adb87a4ad86e97feb6bc810c29b1d043686e92259f36b8534f6791",
            "BlockHeight": 14,
            "BlockTime": 1573047756
          }
        },
        {
          "Header": {
            "ID": "1393db9a75dce63858ca91d60b3667532df5adae67bcf76550ee095ea9030a02",
            "BlockHeight": 15,
            "BlockTime": 1573047767
          }
        },
        {
          "Header": {
            "ID": "6d1725a9f39f5fbf873bd61fc61b0d80dc4276466a452e27d795361f1180de9a",
            "BlockHeight": 16,
            "BlockTime": 1573047777
          }
        },
        {
          "Header": {
            "ID": "b707ccdd1db13c3ce41b07dae8929a8a90763708e151eca29e42ed266400ea79",
            "BlockHeight": 17,
            "BlockTime": 1573047801
          }
        },
        {
          "Header": {
            "ID": "517f44f4ce569ef6a48dd78d5a071bdc47071a4aeca5763ee1830e3606148a50",
            "BlockHeight": 18,
            "BlockTime": 1573047803
          }
        },
        {
          "Header": {
            "ID": "b22a272d121b683036ca400717793ed6a6781914f5dd33d4d00a0f1af70d3f2f",
            "BlockHeight": 19,
            "BlockTime": 1573047823
          }
        }
      ],
      "NextCursor": "14"
    }
  }
}

Third

Query:

{
  blocks(filter: {Cursor: "14", Limit: 100}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "6646bf9c8cf51c0d7aaa5e6e5287e242c84848aaa5bf6e1555ce0df1c91ff97b",
            "BlockHeight": 20,
            "BlockTime": 1573047838
          }
        },
        {
          "Header": {
            "ID": "f3550eb9efd8c6620d55054a857e106500ae2f305c57378bc19c01e8274fc8d5",
            "BlockHeight": 21,
            "BlockTime": 1573047844
          }
        },
        {
          "Header": {
            "ID": "9b32d630815de6ca2cf67e831d35a4f16a82aca2e72639cba8d983ab0826c53e",
            "BlockHeight": 22,
            "BlockTime": 1573047855
          }
        },
        {
          "Header": {
            "ID": "5e0fb640b5c948dcf6cec072a47fb3e73bf0b879ded8c123e0d5bd75333d438f",
            "BlockHeight": 23,
            "BlockTime": 1573047879
          }
        },
        {
          "Header": {
            "ID": "772ec493821c4bb232afba3d568e047b2a5aeeb4cfcc7ea59924a05a28ec0ea2",
            "BlockHeight": 24,
            "BlockTime": 1573047891
          }
        },
        {
          "Header": {
            "ID": "f4470961690e463aa584d93cd8bedc4c7dff027a96c548991c62232f42916db5",
            "BlockHeight": 25,
            "BlockTime": 1573047905
          }
        },
        {
          "Header": {
            "ID": "b194d0e5cff7b950bc74d5bcc2b6925b418ae25035ac02e0436645e470057070",
            "BlockHeight": 26,
            "BlockTime": 1573129955
          }
        },
        {
          "Header": {
            "ID": "4e4f34c675d76d18d2e5ad36de64b00ff6b5324e9212cc737919c6a84708cfcd",
            "BlockHeight": 27,
            "BlockTime": 1573129971
          }
        },
        {
          "Header": {
            "ID": "da31780904d8f2a6ad129376e80f672778c703a8478c2095ce718af06a33de2c",
            "BlockHeight": 28,
            "BlockTime": 1573129981
          }
        },
        {
          "Header": {
            "ID": "39b6e7cea2ce9a07316e3917237f2b85ca7fb7e056c838826b68d937f28f4483",
            "BlockHeight": 29,
            "BlockTime": 1573129986
          }
        },
        {
          "Header": {
            "ID": "5de201d198af3da7daccc7b758aafe37190648f8e701acf6b4f2959297ec9210",
            "BlockHeight": 30,
            "BlockTime": 1573129994
          }
        },
        {
          "Header": {
            "ID": "a7f94bf2de82c4222c6812f612bed6e84361d6c2d2552561110298bcf87f4dba",
            "BlockHeight": 31,
            "BlockTime": 1573130006
          }
        },
        {
          "Header": {
            "ID": "a56427da909f5feb40e8129cc6e59b980888fb5131ce4e658136b965d8006944",
            "BlockHeight": 32,
            "BlockTime": 1573130007
          }
        },
        {
          "Header": {
            "ID": "c34883b50f8cf0b50eb8aa0247dab7ce30358703aa6ed76f31437b390948e112",
            "BlockHeight": 33,
            "BlockTime": 1573130029
          }
        },
        {
          "Header": {
            "ID": "19101fab56fb22bff0fc020d0b1e773455f9e67cf289e2ec195c8f6aebc50fd0",
            "BlockHeight": 34,
            "BlockTime": 1573130037
          }
        },
        {
          "Header": {
            "ID": "5072117bc87547e7a4a835929695126604c5eeb69d2abf3fbe07f17148e66abe",
            "BlockHeight": 35,
            "BlockTime": 1573130046
          }
        },
        {
          "Header": {
            "ID": "8922eb71dee8c55c1dcb1c40a902a6aa5129dfa001974f3c221736a80704b474",
            "BlockHeight": 36,
            "BlockTime": 1573130074
          }
        },
        {
          "Header": {
            "ID": "7d1f9e9a14f41d07ae11d39e51491a4c3d33494018f7a27fa98a75daebd273e0",
            "BlockHeight": 37,
            "BlockTime": 1573130089
          }
        },
        {
          "Header": {
            "ID": "b6f7d528ec4569ff91607a73ada9ac47c1f956f7ed4ed496174c7517c9247d4e",
            "BlockHeight": 38,
            "BlockTime": 1573130103
          }
        },
        {
          "Header": {
            "ID": "d6253cf9c494ebc737a4bbbc4f1a4877b59e447e0d164ac309c9cb67dc828131",
            "BlockHeight": 39,
            "BlockTime": 1573130104
          }
        },
        {
          "Header": {
            "ID": "0012a731653a41ef1d6e42289a006dd26ca4590eab3e560b8b50c5fe8bd1c0ff",
            "BlockHeight": 40,
            "BlockTime": 1573130122
          }
        },
        {
          "Header": {
            "ID": "15c3d1ada3f8b634b5570c60da49789674c07fbe5b2afeac97e44c8cb54426a0",
            "BlockHeight": 41,
            "BlockTime": 1573130130
          }
        },
        {
          "Header": {
            "ID": "8700f2d5e7420cd6b14272096db72bd6be98f77b50d911de5b08012c9865e731",
            "BlockHeight": 42,
            "BlockTime": 1573130141
          }
        },
        {
          "Header": {
            "ID": "fb46874e8d3a80af292d208605cf5ad4a90d585422e7175503b2d1b78eb63f66",
            "BlockHeight": 43,
            "BlockTime": 1573130147
          }
        },
        {
          "Header": {
            "ID": "32ed95c524f80012e3ccf8c58c2cf23a7562507dd5da49d89b238dcd387c7ffe",
            "BlockHeight": 44,
            "BlockTime": 1573130152
          }
        },
        {
          "Header": {
            "ID": "0b3f557a09e740521ddd7174246e717ee7d4a5ac78dcf7dcc1fe2e4e0574a6d0",
            "BlockHeight": 45,
            "BlockTime": 1573130168
          }
        },
        {
          "Header": {
            "ID": "6e478f1d8b27f2a34bc7958096a3223f30308cef3e28db7aaf029022150c54fc",
            "BlockHeight": 46,
            "BlockTime": 1573130169
          }
        },
        {
          "Header": {
            "ID": "c2b3c987194cdcbdac5dcfd7ca9414f3ce8ee423296a12feab73e5249cf9b25f",
            "BlockHeight": 47,
            "BlockTime": 1573130186
          }
        },
        {
          "Header": {
            "ID": "c3440fddfa8ba6a1cc31cd100ec2d8953f7700a6678e2cfaef020db0056ba159",
            "BlockHeight": 48,
            "BlockTime": 1573130198
          }
        },
        {
          "Header": {
            "ID": "304617f83b67942a5ebfdfda2913090b7905b9baba16e8e777ac5b61793c959e",
            "BlockHeight": 49,
            "BlockTime": 1573130210
          }
        },
        {
          "Header": {
            "ID": "0f567c3b462acd5bc75f66755495f7a7b12a0476c1f52fcfe1aad084794721d8",
            "BlockHeight": 50,
            "BlockTime": 1573130232
          }
        },
        {
          "Header": {
            "ID": "37131a5c8d1d2e8825cad534b607aeb3d94d123c5a2a9fa595072ec6f3af96d7",
            "BlockHeight": 51,
            "BlockTime": 1573130235
          }
        },
        {
          "Header": {
            "ID": "c2d3a6609250b81e44fd671cf5b927e436f8eb662a46da02a160446230db8710",
            "BlockHeight": 52,
            "BlockTime": 1573130259
          }
        },
        {
          "Header": {
            "ID": "29e05e26e56a61dfe65c68702ce8e30563168c0bb6e919b391e0a5887b832046",
            "BlockHeight": 53,
            "BlockTime": 1573130266
          }
        },
        {
          "Header": {
            "ID": "e46f923bbf5e6a9e29daac97fc54f2b5ba58435ec11aee8449a0e43a4e5ab558",
            "BlockHeight": 54,
            "BlockTime": 1573130278
          }
        },
        {
          "Header": {
            "ID": "21d7d867e94190bc8ae9f4efba20c4f0c4211bba6ecae3ee56573e4f4bcf2d1b",
            "BlockHeight": 55,
            "BlockTime": 1573130284
          }
        },
        {
          "Header": {
            "ID": "f9c1e1ac7773742fa09eb7d774293c42fd5cc2a5d22fea507bd5ba1e0005415f",
            "BlockHeight": 56,
            "BlockTime": 1573130290
          }
        },
        {
          "Header": {
            "ID": "a72950ebe760aa9513d85de2b488afb47f3728414d50c15ea4ea078e27187d52",
            "BlockHeight": 57,
            "BlockTime": 1573130306
          }
        },
        {
          "Header": {
            "ID": "ee91d746b4ee2c30273fe422badfa26addada80e2dc89695f91c395044202149",
            "BlockHeight": 58,
            "BlockTime": 1573130307
          }
        },
        {
          "Header": {
            "ID": "825f50ff15a3b522d1e90b4a5773ab8db596a08ce3d0813be95efc2d9cfdfe46",
            "BlockHeight": 59,
            "BlockTime": 1573130313
          }
        },
        {
          "Header": {
            "ID": "f7029f386bcbb9fdba544b5f30d40e6ad238cfb3ffb5fc6892b7433477726569",
            "BlockHeight": 60,
            "BlockTime": 1573130323
          }
        },
        {
          "Header": {
            "ID": "7add70bc78d07c0c0362733e71ff6593c68adf06fe983d06e582592b73c7de10",
            "BlockHeight": 61,
            "BlockTime": 1573130348
          }
        },
        {
          "Header": {
            "ID": "6957b130a26c449609aa6a76fcc304ce1f64ad89cae0dc1ae231b68a47bd0625",
            "BlockHeight": 62,
            "BlockTime": 1573130370
          }
        },
        {
          "Header": {
            "ID": "e4c0989662552fa843a0589a8ab5019b01e2d0ed31dd8f94824db707605dbdec",
            "BlockHeight": 63,
            "BlockTime": 1573130374
          }
        },
        {
          "Header": {
            "ID": "5df42136727e20afa505ad450621f63d8268c93ed12eb82f9bdb5bdad5208fe8",
            "BlockHeight": 64,
            "BlockTime": 1573130378
          }
        },
        {
          "Header": {
            "ID": "a7769bd51c6d06762a5a58268136a62bb8dae8ef0bfc501f22286d45acf8f101",
            "BlockHeight": 65,
            "BlockTime": 1573130387
          }
        },
        {
          "Header": {
            "ID": "9d05dcf4f811586765ce50ebd714723d0716a984892c55583bd4fa544fe0f9ad",
            "BlockHeight": 66,
            "BlockTime": 1573130406
          }
        },
        {
          "Header": {
            "ID": "b217919f23d711103643e179888b5d65fbea128179b3bcb99d230dfd5b08d050",
            "BlockHeight": 67,
            "BlockTime": 1573130415
          }
        },
        {
          "Header": {
            "ID": "c030f88ae718ced14f5abfaba5566c146a20a9a18251969e68b55b12a69699fe",
            "BlockHeight": 68,
            "BlockTime": 1573130420
          }
        },
        {
          "Header": {
            "ID": "2cd054337674181d06ffc1765c9e8bc3fcf1f222cb029814fd8ca5d50ab28112",
            "BlockHeight": 69,
            "BlockTime": 1573130438
          }
        },
        {
          "Header": {
            "ID": "93c0c84f116524384651fcfb2562c42ae63cd3b902c23879ef5749cc28058dbc",
            "BlockHeight": 70,
            "BlockTime": 1573130448
          }
        },
        {
          "Header": {
            "ID": "0fe376bbba6fbe2f70e6957f7126f7955e3f1f90898e15aacc55bc672443c5f1",
            "BlockHeight": 71,
            "BlockTime": 1573130453
          }
        },
        {
          "Header": {
            "ID": "b25ccc817d6d6c4c1c135a970ece489892e137ce6de3fec654df695aefde5e6d",
            "BlockHeight": 72,
            "BlockTime": 1573130472
          }
        },
        {
          "Header": {
            "ID": "107083956548117c7acd1fa191f389c12791b92f6f3d2f711007cdffb12bde8a",
            "BlockHeight": 73,
            "BlockTime": 1573130497
          }
        },
        {
          "Header": {
            "ID": "7adce5cff9aa7e594f1a299f76d83a7ac269eb1c80dda8a667629be78dbbe404",
            "BlockHeight": 74,
            "BlockTime": 1573130504
          }
        },
        {
          "Header": {
            "ID": "4761cb68be34f763b98c6420429035207f9a3da5a0602322321ce4d27e4c7066",
            "BlockHeight": 75,
            "BlockTime": 1573130508
          }
        },
        {
          "Header": {
            "ID": "45bc51bf1de370bde1478e13bf5ffbadf94db682b338571d275aa44cc62719fa",
            "BlockHeight": 76,
            "BlockTime": 1573130515
          }
        },
        {
          "Header": {
            "ID": "3c2cbbc1894fa3d41d5cd73f6bf3caeee8780edc26342d3296e9ee232354d1d6",
            "BlockHeight": 77,
            "BlockTime": 1573130523
          }
        },
        {
          "Header": {
            "ID": "dc5f254ec7a84178269eafa31c784c311ad7541b2b87282a69db22ac00de773e",
            "BlockHeight": 78,
            "BlockTime": 1573130556
          }
        },
        {
          "Header": {
            "ID": "b90c299bc6ba369ed12e439140f5540d868a0d0c6909c2bef99fde94bdf55e61",
            "BlockHeight": 79,
            "BlockTime": 1573130558
          }
        },
        {
          "Header": {
            "ID": "ead61ab958be64a06427df7b9492ba66b19d90be6c1c4b673c3dd5cbc63b50d0",
            "BlockHeight": 80,
            "BlockTime": 1573130583
          }
        },
        {
          "Header": {
            "ID": "0fb3b26178c0f2b937882325e28e63766bdfaa8e4fd1f90b62967b6b08c000ff",
            "BlockHeight": 81,
            "BlockTime": 1573130588
          }
        },
        {
          "Header": {
            "ID": "e4618b2e636151b33399df24dedd150dcaad46e8f9bf00941d7d89a0b3821904",
            "BlockHeight": 82,
            "BlockTime": 1573130602
          }
        },
        {
          "Header": {
            "ID": "2943c06b329d3f86e0d4f751a9022fba73fc29f687fcecd444f81eee30d8b643",
            "BlockHeight": 83,
            "BlockTime": 1573130609
          }
        },
        {
          "Header": {
            "ID": "e0c382067cc2fb17f21dd17ec565ca7a3da6f493929e3710e3ce2cf7b524e8bb",
            "BlockHeight": 84,
            "BlockTime": 1573130615
          }
        },
        {
          "Header": {
            "ID": "227f6439cf322ff9167ba5b17e7d9730878c663a751620a0db302d4f9e88951c",
            "BlockHeight": 85,
            "BlockTime": 1573130621
          }
        },
        {
          "Header": {
            "ID": "eaa844a7a4122489d484670f8ae4538b96c0e62e5be2e5c52cb5474a7193613d",
            "BlockHeight": 86,
            "BlockTime": 1573130636
          }
        },
        {
          "Header": {
            "ID": "6ddbbafaea3a2222c22703171603e520493880b1823348b449c22e823ba5aa0e",
            "BlockHeight": 87,
            "BlockTime": 1573130657
          }
        },
        {
          "Header": {
            "ID": "2d09783bf700d19105b4a74e3f22afc7685553398d91bd9bd26844a0e22a53b1",
            "BlockHeight": 88,
            "BlockTime": 1573130680
          }
        },
        {
          "Header": {
            "ID": "86fa370e0fe62b9c51976e7c2bf5170f8acb3cef29aeea50ab566fe9340bc4c8",
            "BlockHeight": 89,
            "BlockTime": 1573130685
          }
        },
        {
          "Header": {
            "ID": "6a849b3527d01d171b3f3f1b41ebee7a97cfdcca0081195406a974ea37047974",
            "BlockHeight": 90,
            "BlockTime": 1573130694
          }
        },
        {
          "Header": {
            "ID": "3aabb3dd13c911f1a5d79a7abdd2cabb3cabc6263c05582c1ce2c8d96c2cb878",
            "BlockHeight": 91,
            "BlockTime": 1573130705
          }
        },
        {
          "Header": {
            "ID": "4964fc336fd81f53ddc5d1b9614768d639ab03d00ed09c5af3a036950494c7f5",
            "BlockHeight": 92,
            "BlockTime": 1573130709
          }
        },
        {
          "Header": {
            "ID": "62116cb6774ad0c1496de1f0b6bc4a5807468534f8ae9e49c43964139927a920",
            "BlockHeight": 93,
            "BlockTime": 1573130718
          }
        },
        {
          "Header": {
            "ID": "663753a8f33d36df61873238e1f005dda716bafce120a182643eabd86e260b01",
            "BlockHeight": 94,
            "BlockTime": 1573130727
          }
        },
        {
          "Header": {
            "ID": "9f816e2c3ed45cc6ca0e2ff387c610a58725c78a9ffde576dfdb38e50eea2899",
            "BlockHeight": 95,
            "BlockTime": 1573130734
          }
        },
        {
          "Header": {
            "ID": "56550a6e8fa7445a3b772f02d542061a4a17aec8d5a7b461838595d440787075",
            "BlockHeight": 96,
            "BlockTime": 1573130741
          }
        },
        {
          "Header": {
            "ID": "f36a701673155b2700815b50af5a0b61e754f8b7775a2b3e8b77c908a6a0e950",
            "BlockHeight": 97,
            "BlockTime": 1573130753
          }
        },
        {
          "Header": {
            "ID": "467f2e8ffc7008b09b4178430b2523f898c7998b995f81e05f298a38bb495080",
            "BlockHeight": 98,
            "BlockTime": 1573130781
          }
        },
        {
          "Header": {
            "ID": "9eb6911cf8ac42c4f41fdd9e1731b549159f2e89996b0cdd69350897ef4bff0d",
            "BlockHeight": 99,
            "BlockTime": 1573130785
          }
        },
        {
          "Header": {
            "ID": "a697cbe4a2eacd48fd5f1b04ec0e30afab2313d1b13509e86d5bf1daa2637c5c",
            "BlockHeight": 100,
            "BlockTime": 1573130793
          }
        },
        {
          "Header": {
            "ID": "d9fe3a84634ff9d41c3ef64e44d1149272c55df05f6560f7179f0b2e83ab6228",
            "BlockHeight": 101,
            "BlockTime": 1573130801
          }
        },
        {
          "Header": {
            "ID": "f3fc95949e2c5950bdaeb632022709792760dd911141d12447b558b49b80b16d",
            "BlockHeight": 102,
            "BlockTime": 1573130814
          }
        },
        {
          "Header": {
            "ID": "7e4a037a8b2e39b6517b055ef2ccef9b79067a540d1d3cdd049be31038294451",
            "BlockHeight": 103,
            "BlockTime": 1573130818
          }
        },
        {
          "Header": {
            "ID": "636c23a620bb6f2e90fc2cda08cb098fd6a7130c8febf40f3388d662d9dabd0e",
            "BlockHeight": 104,
            "BlockTime": 1573130836
          }
        },
        {
          "Header": {
            "ID": "dfecb6f220004e31beeb7070bc2ef1662fd95387ec5c4f73b2c1c6d2288e34b4",
            "BlockHeight": 105,
            "BlockTime": 1573130844
          }
        },
        {
          "Header": {
            "ID": "899dcf5bd786a789d2a23cefee2d002f5614c3b2e579006b5c29a3705cbd4bd6",
            "BlockHeight": 106,
            "BlockTime": 1573130848
          }
        },
        {
          "Header": {
            "ID": "e965e2707951df6afc0d66b202afa2fb9cbc8f4865f06c64c1843d47dbadb38f",
            "BlockHeight": 107,
            "BlockTime": 1573130858
          }
        },
        {
          "Header": {
            "ID": "ff11a8bba77fb17b2a7c60f0e7a53ecf4415a9c6bbc4437451c72fb7378be14e",
            "BlockHeight": 108,
            "BlockTime": 1573130866
          }
        },
        {
          "Header": {
            "ID": "8008be4f1859c24995240c791681225e929c1afeff958954ce112afe64e084b3",
            "BlockHeight": 109,
            "BlockTime": 1573130870
          }
        },
        {
          "Header": {
            "ID": "21f7426e6075d3eb9160b4418c413979650e24f86170affcbdd7f4e0fabb32ea",
            "BlockHeight": 110,
            "BlockTime": 1573130881
          }
        },
        {
          "Header": {
            "ID": "a984fdb128444f884a367178af6045982c15c2134c604cc58f05ba13092cf11e",
            "BlockHeight": 111,
            "BlockTime": 1573130921
          }
        },
        {
          "Header": {
            "ID": "d54840a8136350c7e42216fc699d290a5be1bf18c2ee33fa732781b104138824",
            "BlockHeight": 112,
            "BlockTime": 1573130934
          }
        },
        {
          "Header": {
            "ID": "1148d6b4d004865e77e8594e3ab0d7bb25faa6c72d00acc3109aeb91fa4f0f2b",
            "BlockHeight": 113,
            "BlockTime": 1573130948
          }
        },
        {
          "Header": {
            "ID": "a2b25a5bdd36cbbceaebcece4cc7a68214b337745326240fe765b19a28b3dbbe",
            "BlockHeight": 114,
            "BlockTime": 1573130967
          }
        },
        {
          "Header": {
            "ID": "2c084655ab611e6e3b14aba7a3650f8eaa9c91c80881bd6de323aaedb47748b7",
            "BlockHeight": 115,
            "BlockTime": 1573130967
          }
        },
        {
          "Header": {
            "ID": "07dbbf9e494fdbec6df84c75947fe24f3cd13bb072b0b3a0d85c9ffd5cedeb9a",
            "BlockHeight": 116,
            "BlockTime": 1573130986
          }
        },
        {
          "Header": {
            "ID": "ca0e40b98edc799b8e3e7b11bab2a48f41e34a3ceadb51ac0460399b7af03775",
            "BlockHeight": 117,
            "BlockTime": 1573130992
          }
        },
        {
          "Header": {
            "ID": "13bf0e0f1bbff7e4644357094834dbbcb220879ba2463e6abce7a61ac32c4813",
            "BlockHeight": 118,
            "BlockTime": 1573131002
          }
        },
        {
          "Header": {
            "ID": "92f1db29af78a162b8ad1d0fa23864df8048e1fac9383ebab18ee94da4808a4a",
            "BlockHeight": 119,
            "BlockTime": 1573131016
          }
        }
      ],
      "NextCursor": "78"
    }
  }
}

Fourth

Query:

{
  blocks(filter: {Cursor: "78", Limit: 200}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "304c104412d041ab055652a9672386dec96e3d06aa6de1f1ab21566094b28504",
            "BlockHeight": 120,
            "BlockTime": 1573131030
          }
        },
        {
          "Header": {
            "ID": "373747a07db1ba313d027bee9a61f3eadea495182b9efe48866609d02468b4f8",
            "BlockHeight": 121,
            "BlockTime": 1573131046
          }
        },
        {
          "Header": {
            "ID": "eb3a293cba03ed764d22b9237de64b324132d36f58354c343e6f827bce2ab695",
            "BlockHeight": 122,
            "BlockTime": 1573131051
          }
        },
        {
          "Header": {
            "ID": "176f6db1f3301c068e50e617d5b2517bc7cd74972521606d93505181aa7264e9",
            "BlockHeight": 123,
            "BlockTime": 1573131063
          }
        },
        {
          "Header": {
            "ID": "852073dbf3c68d3a5c82fc164877152f74882d1598c0cf08f5ab6220af48c220",
            "BlockHeight": 124,
            "BlockTime": 1573131065
          }
        },
        {
          "Header": {
            "ID": "b4123224020aaadbed1d759191b4e65404d549811be710db36ebfdbb9e4729aa",
            "BlockHeight": 125,
            "BlockTime": 1573131077
          }
        },
        {
          "Header": {
            "ID": "395b74d4916859a74aa5011fddd460805a38ecb37a652bfc7c460d91bd47f1d5",
            "BlockHeight": 126,
            "BlockTime": 1573131082
          }
        },
        {
          "Header": {
            "ID": "8318afe9ce0af02bb0f5da922ceef561b487f9fe7a5f8f02f5db97ce678e3f69",
            "BlockHeight": 127,
            "BlockTime": 1573131093
          }
        },
        {
          "Header": {
            "ID": "677a3a16f4668068655e41f90d9b6b3a9511b2e63368061af033096c51164b7b",
            "BlockHeight": 128,
            "BlockTime": 1573131097
          }
        },
        {
          "Header": {
            "ID": "254325111244bbb3024d0b8a2b7397c9e259c96a2fd42087bf767bef91a36e7d",
            "BlockHeight": 129,
            "BlockTime": 1573131105
          }
        },
        {
          "Header": {
            "ID": "476312a9293bc9b3746f206fb0b4c9ecee783603981265ecf1b74d5bf505b595",
            "BlockHeight": 130,
            "BlockTime": 1573131112
          }
        },
        {
          "Header": {
            "ID": "87b8185f7ee11d7fe52fc705c96b695fea25e63f567d6ce6b19f237c18606ce1",
            "BlockHeight": 131,
            "BlockTime": 1573131130
          }
        },
        {
          "Header": {
            "ID": "267ede4395ea91a1c044d1b4ba939106e8bbee78202eab23987a868f5480ea2c",
            "BlockHeight": 132,
            "BlockTime": 1573131131
          }
        },
        {
          "Header": {
            "ID": "c469d4f6d0494f517716aed72288d01d740afb038fae33b3634a4f22ce890529",
            "BlockHeight": 133,
            "BlockTime": 1573131152
          }
        },
        {
          "Header": {
            "ID": "1167e636c92f717a581b03886c11fab441c846c7be85a839947934c2ab3c6559",
            "BlockHeight": 134,
            "BlockTime": 1573131160
          }
        },
        {
          "Header": {
            "ID": "9e0bfb3e953cb1a273fef19b6443ccfee0a6054f9c3baf1828fc7aa04a97c807",
            "BlockHeight": 135,
            "BlockTime": 1573131167
          }
        },
        {
          "Header": {
            "ID": "23cab10bd7de2e166ed367307f39f94108382de37eb322060beb1fcce5e8827e",
            "BlockHeight": 136,
            "BlockTime": 1573131186
          }
        },
        {
          "Header": {
            "ID": "ac218c6523eb48fa42dfbbf65bc7584fbc865711235acc766c678fa0c9975f98",
            "BlockHeight": 137,
            "BlockTime": 1573131198
          }
        },
        {
          "Header": {
            "ID": "ca1b6f06ea1a3c651d03ddd9508ac9653f40b7518fd5c045e9a7230b5f06161b",
            "BlockHeight": 138,
            "BlockTime": 1573131213
          }
        },
        {
          "Header": {
            "ID": "3b7a403b81bf9692da4c3b8cd9e0088852c1d846148a34eee67a4f1294586238",
            "BlockHeight": 139,
            "BlockTime": 1573131219
          }
        },
        {
          "Header": {
            "ID": "93ce35ba4d57b36820fb24d69294aa9dd88a0ad825fcc340341a1bbb911b9545",
            "BlockHeight": 140,
            "BlockTime": 1573131243
          }
        },
        {
          "Header": {
            "ID": "8099d94571c729ec873a25dccb7e4ff93e2ba55eb58b818aa9c3911d8034ec75",
            "BlockHeight": 141,
            "BlockTime": 1573131261
          }
        },
        {
          "Header": {
            "ID": "9965263fc227cca04c9f2c6f9c40a6aad6c1916429a04df8ea2980bf6fd47f45",
            "BlockHeight": 142,
            "BlockTime": 1573131268
          }
        },
        {
          "Header": {
            "ID": "e6477246f546d1877d2c1d4d932c4062295973c6b93c99565838ee47670eb630",
            "BlockHeight": 143,
            "BlockTime": 1573131289
          }
        },
        {
          "Header": {
            "ID": "23a1971fb0aa83e4669c7412b9bb35eac633ea7fe30e2eda54a3d2ceac8a18e7",
            "BlockHeight": 144,
            "BlockTime": 1573131295
          }
        },
        {
          "Header": {
            "ID": "bc4abdf16d16ab7dfd269ceee53535e7921904b605387677e639eaf2342e7759",
            "BlockHeight": 145,
            "BlockTime": 1573131315
          }
        },
        {
          "Header": {
            "ID": "801e9715aa39ba9833f92a53c062e3c31267c3a83c64f2f6de989712d46faa5d",
            "BlockHeight": 146,
            "BlockTime": 1573131321
          }
        },
        {
          "Header": {
            "ID": "cbdb9f2a4e55b6880005caa8966599a3353a17f81fb628f9923f3cd7c2a8cbb5",
            "BlockHeight": 147,
            "BlockTime": 1573131322
          }
        },
        {
          "Header": {
            "ID": "d28b1ccfbee14f182431ed2c42a69d8d246151f0cb95fd2acf34a8fa15027136",
            "BlockHeight": 148,
            "BlockTime": 1573131340
          }
        },
        {
          "Header": {
            "ID": "3ac47cbbf0564a8834723793b83be686277aaec1bd2c7c52ccd23bc75a16da1b",
            "BlockHeight": 149,
            "BlockTime": 1573131360
          }
        },
        {
          "Header": {
            "ID": "bf40a24111988dd81a3fad239559d318a0e9c2f2193dca9f740c1d5052fadd99",
            "BlockHeight": 150,
            "BlockTime": 1573131373
          }
        },
        {
          "Header": {
            "ID": "df2e04ae6275f4024dc1c25afb5fee3a151600299070960d21421a2f1812353f",
            "BlockHeight": 151,
            "BlockTime": 1573131383
          }
        },
        {
          "Header": {
            "ID": "263527b7f2f62e1161dd02407f2746b9c0330a15bab8e4cf064953ac81387f2f",
            "BlockHeight": 152,
            "BlockTime": 1573131390
          }
        },
        {
          "Header": {
            "ID": "601461b5380db21b99042cafe44ea7c5cec23aa38b71c80072bcba6a00abe550",
            "BlockHeight": 153,
            "BlockTime": 1573131425
          }
        },
        {
          "Header": {
            "ID": "8bcdf9312afc9613e3b69d629918f3d8c546c467f09e7d1fe956e87ed011008d",
            "BlockHeight": 154,
            "BlockTime": 1573131464
          }
        },
        {
          "Header": {
            "ID": "7dcc3124be825f30b23a9bf356649076558a4f5904fdc065c59d6fadeced705d",
            "BlockHeight": 155,
            "BlockTime": 1573131482
          }
        },
        {
          "Header": {
            "ID": "abdccab4f31ac4e8bfaed231440c63d2c35e2900a4ebf69a18f605c22702c1f6",
            "BlockHeight": 156,
            "BlockTime": 1573131483
          }
        },
        {
          "Header": {
            "ID": "13f13edc6ae63692f41ed6afc75398dac78407eedae6c4e8b44e2bd7a9367b54",
            "BlockHeight": 157,
            "BlockTime": 1573131502
          }
        },
        {
          "Header": {
            "ID": "0b22420e2694e35a983e81618bbd5f2a1db1087aef4c33ec869d76fef8c5b79a",
            "BlockHeight": 158,
            "BlockTime": 1573131514
          }
        },
        {
          "Header": {
            "ID": "82652b6273f631f182dadc4eb7906b590775321210a1799e99b25359b7b8813b",
            "BlockHeight": 159,
            "BlockTime": 1573131519
          }
        },
        {
          "Header": {
            "ID": "e64692d335dfc068e2c63db9f5ec36ffa76169c507875cd22b2ac65779c7e66c",
            "BlockHeight": 160,
            "BlockTime": 1573131523
          }
        },
        {
          "Header": {
            "ID": "413c15f162fe941deb246c1fdd73861f0ff21a37ee492e0d83e8b8482df0bd5c",
            "BlockHeight": 161,
            "BlockTime": 1573131537
          }
        },
        {
          "Header": {
            "ID": "59efcc1d4b4bed2b7ebf643e34af10d82352a8692c93b619616558289f7c195a",
            "BlockHeight": 162,
            "BlockTime": 1573131548
          }
        },
        {
          "Header": {
            "ID": "2ee71a0f07d4c3d84d9703157c9d1e9d8fd6992e66458a5a3bad11419ecd507e",
            "BlockHeight": 163,
            "BlockTime": 1573131553
          }
        },
        {
          "Header": {
            "ID": "5132850070f90efdfa5eafe3e8c9fefd205acdc229cf1bbb67ce844ddfc8d34b",
            "BlockHeight": 164,
            "BlockTime": 1573131565
          }
        },
        {
          "Header": {
            "ID": "09fc5df94aac654f97da39e5e214d378057b6e9b36e193c8e8a02d40972360e8",
            "BlockHeight": 165,
            "BlockTime": 1573131576
          }
        },
        {
          "Header": {
            "ID": "9e3ef46d947708c27b52c266ec734d77f5234e4709a0daafc121ea9c2119157a",
            "BlockHeight": 166,
            "BlockTime": 1573131595
          }
        },
        {
          "Header": {
            "ID": "50a0771f0ba1cdd9912f42c5823981554a62698cf457daa61620152206fb3c52",
            "BlockHeight": 167,
            "BlockTime": 1573131602
          }
        },
        {
          "Header": {
            "ID": "8c32af5176f7d4cbca96bd897d02675fb19a0bb98b470bc34fdb4a6153508698",
            "BlockHeight": 168,
            "BlockTime": 1573131616
          }
        },
        {
          "Header": {
            "ID": "9a8d1aa2b083c68fa4dc25d244326c92e5337cb36d0822861f3d0b6c9789b1dd",
            "BlockHeight": 169,
            "BlockTime": 1573131628
          }
        },
        {
          "Header": {
            "ID": "ddf0549b2b6feba24e9600eaf15a24f2d047a5968ac59a5df33060bcc5a73923",
            "BlockHeight": 170,
            "BlockTime": 1573131631
          }
        },
        {
          "Header": {
            "ID": "e69897a18604f6935c76d8bbcdade8998507317a030cf5c54340f69f1493baed",
            "BlockHeight": 171,
            "BlockTime": 1573131644
          }
        },
        {
          "Header": {
            "ID": "bebc43d819364e8a7bd22f6b45cae8720f8623e385490eddfe0e5f39a2af63a3",
            "BlockHeight": 172,
            "BlockTime": 1573131646
          }
        },
        {
          "Header": {
            "ID": "068f3196dbf1f01de08949ddb04b6fbaf5bc4801bc4996a4b1a1116209874f5d",
            "BlockHeight": 173,
            "BlockTime": 1573131662
          }
        },
        {
          "Header": {
            "ID": "ad13792a3a27f175c7349cbaebb418fea62355ab2abc123bed7ca8df47d5ebc1",
            "BlockHeight": 174,
            "BlockTime": 1573131664
          }
        },
        {
          "Header": {
            "ID": "74608b6e4fac64205d493200da9d1e564e9a2896e3d22e1ebe862243148409e7",
            "BlockHeight": 175,
            "BlockTime": 1573131675
          }
        },
        {
          "Header": {
            "ID": "60a4984ed06219412de3265bc48abd78e8de6f7b68cada9675113d49669519d4",
            "BlockHeight": 176,
            "BlockTime": 1573131692
          }
        },
        {
          "Header": {
            "ID": "6238e5e3d31b24966fb996b7bd0bcf8050e8b3688774819a2d3f563620377230",
            "BlockHeight": 177,
            "BlockTime": 1573131693
          }
        },
        {
          "Header": {
            "ID": "9218d3251cbb333028634c25fb7f5c86d0dfdae6157f9856fccc4cf1cfec2c27",
            "BlockHeight": 178,
            "BlockTime": 1573131707
          }
        },
        {
          "Header": {
            "ID": "20fc39613ddb82b2190f5e5bad29725cfc5836dde6a1cbaa19704f15bd031a84",
            "BlockHeight": 179,
            "BlockTime": 1573131710
          }
        },
        {
          "Header": {
            "ID": "d3c09356c91c3800bde52f3845b2457929ccb79dded796c8b1c5219ce5081d34",
            "BlockHeight": 180,
            "BlockTime": 1573131736
          }
        },
        {
          "Header": {
            "ID": "b5024afc2f7ab46fafe0ab15464a20e04d4e662a6af950824425dab7a7b1e60b",
            "BlockHeight": 181,
            "BlockTime": 1573131759
          }
        },
        {
          "Header": {
            "ID": "1579c50ff9d58cfd991dffde930811a2808c0565607f740c42585492ed444ae5",
            "BlockHeight": 182,
            "BlockTime": 1573131765
          }
        },
        {
          "Header": {
            "ID": "cdb4b1e5aa715952cfb04a8b342223211435d25167fb3a5957bbc5ab973f6fe3",
            "BlockHeight": 183,
            "BlockTime": 1573131768
          }
        },
        {
          "Header": {
            "ID": "b08eaae78b0f3fc4b779a8ba1da4d411b7af08e180c7cd5d39ba6a8f6bd909c0",
            "BlockHeight": 184,
            "BlockTime": 1573131789
          }
        },
        {
          "Header": {
            "ID": "4e450100ac01fe6fc554730be6df0b4d7ebf4550b9b4fafae992df6d842beb52",
            "BlockHeight": 185,
            "BlockTime": 1573131794
          }
        },
        {
          "Header": {
            "ID": "b16f2b8902beaa6607146b816de6c2d253be5d518218e05e32ecb7dfdc0f8c16",
            "BlockHeight": 186,
            "BlockTime": 1573131799
          }
        },
        {
          "Header": {
            "ID": "79d0d42a71c01c6109bd54e727a1771c482f8855d173944505ac9b071ac3ebd5",
            "BlockHeight": 187,
            "BlockTime": 1573131811
          }
        },
        {
          "Header": {
            "ID": "cc7e65037f2d10c6545adc17ee54bf13b0829f7fecfca3b6f9ee90295f8259c6",
            "BlockHeight": 188,
            "BlockTime": 1573131817
          }
        },
        {
          "Header": {
            "ID": "c99e10665f91e9a21fe472c98ad91980d19ff6cde0582d0dd76326e69228f1fb",
            "BlockHeight": 189,
            "BlockTime": 1573131828
          }
        },
        {
          "Header": {
            "ID": "2f142880273ee05b1eef38ea6fb5464b11123ef2907e3a8118c19dda7d0965ce",
            "BlockHeight": 190,
            "BlockTime": 1573131836
          }
        },
        {
          "Header": {
            "ID": "71e5c0fe69b198b540dec8d92b0d870820f8238f7825b205259e44219f6d8858",
            "BlockHeight": 191,
            "BlockTime": 1573131853
          }
        },
        {
          "Header": {
            "ID": "54ef959582d6a252277b5ed2e2a71ae40dc6f3ff283c43dd4d9c6ed09d7440d8",
            "BlockHeight": 192,
            "BlockTime": 1573131869
          }
        },
        {
          "Header": {
            "ID": "b051d6faa7389bc24a11d8c1169fe6dc13e6dbb3d143835cce4643b4376ebd64",
            "BlockHeight": 193,
            "BlockTime": 1573131873
          }
        },
        {
          "Header": {
            "ID": "2d8fee0c04426ba75fc6afc36483b5c93a74029a403e7b32d54316e66c920f69",
            "BlockHeight": 194,
            "BlockTime": 1573131908
          }
        },
        {
          "Header": {
            "ID": "7577e899c20c56cbd361dcb1f55aa5a6073aca16f1b405c491483149e10cc2d3",
            "BlockHeight": 195,
            "BlockTime": 1573131917
          }
        },
        {
          "Header": {
            "ID": "d82bbe2ea05ff9aac5688fad62531f763e195dd8b402b091517b1bc214042c23",
            "BlockHeight": 196,
            "BlockTime": 1573131921
          }
        },
        {
          "Header": {
            "ID": "9050433680a990463a905d76696f800eb6f2acc3526350da01547c91cf653ad7",
            "BlockHeight": 197,
            "BlockTime": 1573131932
          }
        },
        {
          "Header": {
            "ID": "97b01fee3dd5a023f7287cbc0a87f75a343d5615b6cfcac3af16bddf507b0198",
            "BlockHeight": 198,
            "BlockTime": 1573131938
          }
        },
        {
          "Header": {
            "ID": "b99ff2cfa0725a4b6fd9b83243464ae3a97ff757208077dd6570a1501a22ee52",
            "BlockHeight": 199,
            "BlockTime": 1573131952
          }
        },
        {
          "Header": {
            "ID": "84f428197d7f219c57a641ef48c0e22b4fd33e9ef4173f44e33a73276117e2be",
            "BlockHeight": 200,
            "BlockTime": 1573131952
          }
        },
        {
          "Header": {
            "ID": "56e3031104f5dcc13b86779585c82a338affefede056dd3d8310a8a05f02fc79",
            "BlockHeight": 201,
            "BlockTime": 1573131969
          }
        },
        {
          "Header": {
            "ID": "3e4ee5240a0f86f7c728492e0c521c2096e8bd4879b8583a4e923eb9c25d2a40",
            "BlockHeight": 202,
            "BlockTime": 1573131976
          }
        },
        {
          "Header": {
            "ID": "7c0b518ce5aa24a47b468f312529c06fb5196439be9d634e51b660cf9ccb31d2",
            "BlockHeight": 203,
            "BlockTime": 1573132000
          }
        },
        {
          "Header": {
            "ID": "37adc41a2cba519bb6fdb2c66623206f42e006e17822024fabeafe0e8c41e10e",
            "BlockHeight": 204,
            "BlockTime": 1573132016
          }
        },
        {
          "Header": {
            "ID": "83f9227e888b71e14b81110c1d343fb5b4ef9a0d7fafb0e1a14a1cb8b8e2cc14",
            "BlockHeight": 205,
            "BlockTime": 1573132026
          }
        },
        {
          "Header": {
            "ID": "1ee7c1c28c33eba968e97a93528b0e734070e0d80928942b258a63f54bf340fb",
            "BlockHeight": 206,
            "BlockTime": 1573132046
          }
        },
        {
          "Header": {
            "ID": "fb865587062ce3b636dc780eec7769577a36ed15db3f71bec42e358458dd7c95",
            "BlockHeight": 207,
            "BlockTime": 1573132066
          }
        },
        {
          "Header": {
            "ID": "dfafbf6918e869024cdbc34d5aef73d548db9885495e4091359d34b7d9716a2b",
            "BlockHeight": 208,
            "BlockTime": 1573132075
          }
        },
        {
          "Header": {
            "ID": "6576f25ebd8eed062a98f84c1c5988c0b1808af7b70073146bfc54746e9bda0e",
            "BlockHeight": 209,
            "BlockTime": 1573132127
          }
        },
        {
          "Header": {
            "ID": "1e940ea2981bbd3e8bf8221eeb0551979e42664d432cfa056ba2398c8414c4ff",
            "BlockHeight": 210,
            "BlockTime": 1573132152
          }
        },
        {
          "Header": {
            "ID": "05424d0b1fba4f788cc3b4c2a8b73d92c899a72a95dff81620552883389a342d",
            "BlockHeight": 211,
            "BlockTime": 1573132179
          }
        },
        {
          "Header": {
            "ID": "d164e040ed4827effee5077286a7cf67121bddeba3e6a41fa71d07853065958d",
            "BlockHeight": 212,
            "BlockTime": 1573132191
          }
        },
        {
          "Header": {
            "ID": "1de56285fb8b66c70be5015b15fd31b8b3453a50ce1a97037f631edec9fd517b",
            "BlockHeight": 213,
            "BlockTime": 1573132194
          }
        },
        {
          "Header": {
            "ID": "04d7c75fcbfb822f00d9f6fe1bf608dc7765bbb6f4a21662af8f817d1cf31a3f",
            "BlockHeight": 214,
            "BlockTime": 1573132206
          }
        },
        {
          "Header": {
            "ID": "22e85fb881540850adfd67d431a596aa2f900c44acfb72adf8314a5ea554ff94",
            "BlockHeight": 215,
            "BlockTime": 1573132217
          }
        },
        {
          "Header": {
            "ID": "270b7c7255dffe631f89a3152ea24b7cb7264514cec92161d525d9dd7bf096a0",
            "BlockHeight": 216,
            "BlockTime": 1573132223
          }
        },
        {
          "Header": {
            "ID": "1768928935f8e24eef1826f3a8f387a3543f706f4aa66ca6f8d3a6274135b0e7",
            "BlockHeight": 217,
            "BlockTime": 1573132236
          }
        },
        {
          "Header": {
            "ID": "9de728d1b90dfb27576dd7a948b872add97a906bf87ac452f8ec9030414e1220",
            "BlockHeight": 218,
            "BlockTime": 1573132249
          }
        },
        {
          "Header": {
            "ID": "e5a1acdbc0a888bd2ebe173b194905a9973c059a231de0db81e0a2ed8d819d5d",
            "BlockHeight": 219,
            "BlockTime": 1573132252
          }
        }
      ],
      "NextCursor": "ccdc"
    }
  }
}

Fifth

Query:

{
  blocks(filter: {Cursor: "ccdc", Limit: 200}) {
    Blocks {
      Header {
        ID
        BlockHeight
        BlockTime
      }
    }
    NextCursor
  }
}

Response:

{
  "data": {
    "blocks": {
      "Blocks": [
        {
          "Header": {
            "ID": "5dd733a9ca467ab276bbf1a5558f3802d0d9bae39b1e77f82652afa475f03121",
            "BlockHeight": 220,
            "BlockTime": 1573132263
          }
        },
        {
          "Header": {
            "ID": "8a9119e05f4f7d21615b5a89fc2882c6cdf8681bfc7871d050878de2938aedad",
            "BlockHeight": 221,
            "BlockTime": 1573132282
          }
        },
        {
          "Header": {
            "ID": "a3d242538ace78d9d7a8d16cb4f9fd4fa04d14ea7525ac0a89d14f964310f56a",
            "BlockHeight": 222,
            "BlockTime": 1573132282
          }
        },
        {
          "Header": {
            "ID": "92faba776033e6cdbf555362bb03369737883e7ab97cb5a75e3e459b65365cb8",
            "BlockHeight": 223,
            "BlockTime": 1573132293
          }
        },
        {
          "Header": {
            "ID": "6b8317e65fc50bcff19accc182cd8d41047cab0665c16f62ad99b3949ee6c0e3",
            "BlockHeight": 224,
            "BlockTime": 1573132304
          }
        },
        {
          "Header": {
            "ID": "499fa445e75de85b0733d88e211cf5134de08b1e4de4825a2b556e3d48d235a4",
            "BlockHeight": 225,
            "BlockTime": 1573132310
          }
        },
        {
          "Header": {
            "ID": "e421a7d6afe86b4f9ee1b38885aa378e839a1d05e10364a3fcde00ff5d9831d9",
            "BlockHeight": 226,
            "BlockTime": 1573132318
          }
        },
        {
          "Header": {
            "ID": "5f340ee44533fa3f79561ef9e8c071ff9572bfb6ae248aeadc6dc894cb73f314",
            "BlockHeight": 227,
            "BlockTime": 1573132328
          }
        },
        {
          "Header": {
            "ID": "a48e3a875aa9cde0e942ebff9d7c79aa6e986acd9f5684f9134bb128e6321db1",
            "BlockHeight": 228,
            "BlockTime": 1573132352
          }
        },
        {
          "Header": {
            "ID": "d74190f3656e9696714c8bf9310b99ebed984e1f9792811007de933ffc50f865",
            "BlockHeight": 229,
            "BlockTime": 1573132357
          }
        },
        {
          "Header": {
            "ID": "7370d78882449cc0e017bde33547be03ad2cfad20387d68ec63ea8da4ba70770",
            "BlockHeight": 230,
            "BlockTime": 1573132371
          }
        },
        {
          "Header": {
            "ID": "fcf7e9ec016e49d42fd3583cd982670ecd992ffcb59678962863022051267711",
            "BlockHeight": 231,
            "BlockTime": 1573132384
          }
        },
        {
          "Header": {
            "ID": "444ae6d36b1169583d8f8d3d2f4a266c982a1ec0b23af76a578f8a5065703ba5",
            "BlockHeight": 232,
            "BlockTime": 1573132392
          }
        },
        {
          "Header": {
            "ID": "a084cdc1c306ce3d6ae0529e7a205a78f706c92a18bacee28bfb628c1ddd7d66",
            "BlockHeight": 233,
            "BlockTime": 1573132399
          }
        },
        {
          "Header": {
            "ID": "29bbe6581134e4e438e949116d43edf7b4e1609f59fa9cea09a6feab34a0f1fb",
            "BlockHeight": 234,
            "BlockTime": 1573132403
          }
        },
        {
          "Header": {
            "ID": "5906cb5b7e1811ca8d3d36e0844863a4814009ef0a1e639d7a3eaae9d653e484",
            "BlockHeight": 235,
            "BlockTime": 1573132452
          }
        },
        {
          "Header": {
            "ID": "42e572a49a5dd9465afca43b9076186e15253e42db5858c76497ce479aff6649",
            "BlockHeight": 236,
            "BlockTime": 1573132464
          }
        },
        {
          "Header": {
            "ID": "6dfe6f7774dcab3f98d96349a78758bab8216d94d08b08fd4dc26e1a020867dd",
            "BlockHeight": 237,
            "BlockTime": 1573132471
          }
        },
        {
          "Header": {
            "ID": "da358d7ec605841926fad6ae5b7de571cebdbc167a98c798e2b86d030d6a69a3",
            "BlockHeight": 238,
            "BlockTime": 1573132477
          }
        },
        {
          "Header": {
            "ID": "2fdcaedbbbf92d318c46464a71f559680313ca3645f33e00297fa26379521915",
            "BlockHeight": 239,
            "BlockTime": 1573132487
          }
        },
        {
          "Header": {
            "ID": "c4f029d219197e9fb54aaeb4ec8a7d46d9758d9333396dee1fecc75b28eccbe2",
            "BlockHeight": 240,
            "BlockTime": 1573132494
          }
        },
        {
          "Header": {
            "ID": "01a7d04ed7a2429cf76e5b65126068a536d080fc2e6a2885661442933f6ed0cb",
            "BlockHeight": 241,
            "BlockTime": 1573132512
          }
        },
        {
          "Header": {
            "ID": "543a4cc93fee20af8d37b3926c2564c24dac2638603d4d15af40becda5a003cf",
            "BlockHeight": 242,
            "BlockTime": 1573132526
          }
        },
        {
          "Header": {
            "ID": "2da713dbe457f37e7a6b8a48d7cb80065fd21e6cead1dce71c6e6570d393970c",
            "BlockHeight": 243,
            "BlockTime": 1573132546
          }
        },
        {
          "Header": {
            "ID": "058442be3aa6a7c460e583439a1c96a841ea61f365535746d7346c9a6c9a01a4",
            "BlockHeight": 244,
            "BlockTime": 1573132555
          }
        },
        {
          "Header": {
            "ID": "a1776be8514fd43331052b498817d88ca6726497d8556368b87bd3cd45235a73",
            "BlockHeight": 245,
            "BlockTime": 1573132577
          }
        },
        {
          "Header": {
            "ID": "0def9eecab2262d76cc15919f7cd2850adc9007bd820e7135496c33cc58a72c8",
            "BlockHeight": 246,
            "BlockTime": 1573132586
          }
        },
        {
          "Header": {
            "ID": "a82cdbd6192d5d9c748561895c3361006292af25c1a463617acf1000601c3c82",
            "BlockHeight": 247,
            "BlockTime": 1573132595
          }
        },
        {
          "Header": {
            "ID": "1981208e9122b9341775e5828a988067fe4c0ca6ac42fdbbd8b5f2b1e9d608b9",
            "BlockHeight": 248,
            "BlockTime": 1573132600
          }
        },
        {
          "Header": {
            "ID": "3d637c6125fa7dfd1301340a4cd6a467c8692b3fe96dc1d668b477c7f3945b7c",
            "BlockHeight": 249,
            "BlockTime": 1573132616
          }
        },
        {
          "Header": {
            "ID": "0067788802aa99df60b12b4c8d9dccd241323a9e5ee154f9d8144f5f08f06780",
            "BlockHeight": 250,
            "BlockTime": 1573132624
          }
        },
        {
          "Header": {
            "ID": "2dd2dfdaa095c696a9af93118765b8664f0b4ccf27df2d569f8c950e44d092a9",
            "BlockHeight": 251,
            "BlockTime": 1573132634
          }
        },
        {
          "Header": {
            "ID": "3be008ad41e51d53b02ee798d5c186600e71dd4c7139f285c630f8dbcd0a508b",
            "BlockHeight": 252,
            "BlockTime": 1573132646
          }
        },
        {
          "Header": {
            "ID": "2c00c1e073852cf581c8970f6c3e4beb04ce2666bab6c6da67cbc5a1a88cc232",
            "BlockHeight": 253,
            "BlockTime": 1573132646
          }
        },
        {
          "Header": {
            "ID": "f29deedf7e90cda23fc7b9f8c312e85d01c7e3364279678d0f4201b41d9ae0f0",
            "BlockHeight": 254,
            "BlockTime": 1573132654
          }
        },
        {
          "Header": {
            "ID": "f7b3e26203aad305e673a4db341d26ccf5aa6a9b361cdda37d52ab9a6f927d47",
            "BlockHeight": 255,
            "BlockTime": 1573132677
          }
        },
        {
          "Header": {
            "ID": "50b13f3e472b62ce8bfbf3c2bae17857b9b4daa29797180f669b9d79b1e11e5a",
            "BlockHeight": 256,
            "BlockTime": 1573132688
          }
        },
        {
          "Header": {
            "ID": "4c82e3e701b477d0b6e6406fd485687350ec9f27edc20033a4675e9c1aeb987f",
            "BlockHeight": 257,
            "BlockTime": 1573132697
          }
        },
        {
          "Header": {
            "ID": "6a3ea7a095af6dcd6de6bed72068c7fc6c79175cb732106dd4e1bacfbf968b8d",
            "BlockHeight": 258,
            "BlockTime": 1573132711
          }
        },
        {
          "Header": {
            "ID": "2e2a06e5313d6913d112da692d6342c6943dad391f6360f0975205cbae7f0168",
            "BlockHeight": 259,
            "BlockTime": 1573132719
          }
        },
        {
          "Header": {
            "ID": "0aa3041464952a0c3cdd584a2b6fdbf37e43caf045e4880e3baaef0c86d3e193",
            "BlockHeight": 260,
            "BlockTime": 1573132732
          }
        },
        {
          "Header": {
            "ID": "de159e66e5e5e05e5ab61cc15e3d00f4c3cf78dabc98b075f87b8ee9c68dc727",
            "BlockHeight": 261,
            "BlockTime": 1573132753
          }
        },
        {
          "Header": {
            "ID": "dcb15eaac3367d84fee15447d7982e1252ab388717e35f209739b2e67e2a2421",
            "BlockHeight": 262,
            "BlockTime": 1573132761
          }
        },
        {
          "Header": {
            "ID": "8a24c73dfab9d49f21440e0b4f6d69ee14e3f8a646bf6b83d124728393114f6e",
            "BlockHeight": 263,
            "BlockTime": 1573132771
          }
        },
        {
          "Header": {
            "ID": "2f86cc5dbf3c5fba7806dc027d682c6ec1aa205b9d1ad9249ebf669f91458295",
            "BlockHeight": 264,
            "BlockTime": 1573132784
          }
        },
        {
          "Header": {
            "ID": "8b757ea4d1d374cfdfdc92fbea1161fdb48876f0afc8a648cd505096213dbad1",
            "BlockHeight": 265,
            "BlockTime": 1573132788
          }
        }
      ],
      "NextCursor": null
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment