High-performance blockchain data indexing and querying service
Blocksync provides real-time indexing and querying of IXO blockchain data through GraphQL, enabling efficient access to historical transactions, state changes, and entity relationships. It serves as a critical infrastructure component for building scalable applications on the IXO Spatial Web.
query GetEntity { entity(id: "did:ixo:123") { id type data claims { id type status } verifications { id status verifier } }}
Filtered Queries
Copy
Ask AI
query GetClaims { claims( filter: { type: "impact", status: "approved", fromDate: "2023-01-01" } ) { id type data evaluations { id status evaluator } }}
Transaction History
Copy
Ask AI
query GetTransactions { transactions( filter: { entityId: "did:ixo:123", type: "state_change" } ) { id type timestamp changes { field oldValue newValue } }}