Schemas

Single Schema

POST / graphql;

Retrieve the data of a schema by querying with a schema ID.

Body Parameters:

# Write your query or mutation here
query getSchema {
  schema(id: "onchain_evm_80001_0x3") {
    id
    mode
    chainType
    chainId
    schemaId
    transactionHash
    name
    description
    revocable
    maxValidFor
    resolver
    registerTimestamp
    registrant
    data
  }
}

Response:

Filtered Schemas

Query for a list of schemas. Results can be filtered, paginated, ordered, etc. according to GraphQL standards.

Body Parameters:

Response:

Last updated

Was this helpful?