Skip to content

Cloud IDE

We provide a web-based GraphQL IDE that allows you to write, run, and debug queries.

The IDE is available at https://ide.orbit.codes and is based on the popular Apollo Studio Explorer.

Features

  • Query Editor: Write and run queries against your schema
  • Schema Explorer: Explore your schema and documentation
  • Query History: Keep track of your queries
  • Query Variables: Define variables for your queries
  • Query Validation: Validate your queries against your schema
  • Query Execution: Execute queries against your schema
  • Query Results: View the results of your queries

Authentication

The Cloud IDE is protected by Orbit’s authentication system. Have a look to the Authentication section to learn how to authenticate with the Cloud IDE.

Usage

  1. Open the Cloud IDE at https://ide.orbit.codes
  2. Authenticate with your Orbit account
  3. Start writing queries

Example

Query a transaction by its hash:

query Transaction($dataset: String!, $hash: String!) {
transaction(dataset: $dataset, hash: $hash) {
hash
success
height
minted_at
fees {
amount {
denom
amount
}
}
gas {
used
wanted
}
amount {
denom
amount
}
memo
error_log
messages {
type_url
value
evm {
operation
}
}
}
}