The IXO Blocksync GraphQL API provides a flexible and efficient way to interact with the IXO blockchain, offering powerful querying capabilities and high-precision data handling.

Overview

The Blocksync GraphQL API enables developers to:

  • Query blockchain data efficiently
  • Filter information with precision
  • Interact with decentralized features
  • Handle high-precision financial data

Example Queries

Basic Entity Query

query {
  entities(first: 10) {
    edges {
      node {
        id
        name
        type
      }
    }
    pageInfo {
      hasNextPage
      endCursor
    }
  }
}

Filtered Query

query {
  entities(
    filter: {
      type: { equalTo: "ORGANIZATION" }
      status: { equalTo: "ACTIVE" }
    }
  ) {
    edges {
      node {
        id
        name
        status
      }
    }
  }
}

Development Resources

GitHub Repositories

For detailed schema documentation and type definitions, refer to the GraphQL Schema Reference.