GraphQL Explorer
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
The Apollo GraphQL Sandbox provides an interactive environment to explore and test the GraphQL API.
Follow these steps to get started:
Open Apollo GraphQL Sandbox in your browser
Configure the API endpoint:
Click on the settings icon (⚙️) in the menubar on top
Enter the GraphQL endpoint URL: https://preview.acc8.dev/data/graphql
Click "Save"
Wait for the sandbox to refetch schema and load the latest API schema
Test this sample query
query candles_purr_1m_last60 {
candles(
where: {
coin: {_eq: "PURR/USDC"},
interval: {_eq: "1m"}
},
order_by: {startTime: Desc}
limit: 60
) {
id
coin
symbol
interval
startTime
endTime
open
high
low
close
volume
numberTrades
}
}
You can now:
Browse available queries and mutations in the schema
Build and test GraphQL operations
View response data and errors