A GraphiQL interface for exploring Weaviate GraphQL APIs.
- Secure API key authentication
- Full GraphiQL interface
- Schema exploration
https://weaviate-explorer.hyn.gg
Make sure you have bun or node
installed on your system.
bun install
To start the development server:
bun dev
Visit http://localhost:5173
to see the app.
- When you first open the app, you'll see a configuration dialog
- Enter your Weaviate instance details:
- Endpoint URL (e.g., https://your-instance.weaviate.cloud)
- API Key
- Click "Connect to Weaviate" to validate your connection
- Once connected, you can:
- Write and execute GraphQL queries
- Explore your schema
- Use autocompletion
- View query results
- Click the "Settings" button in the top right to modify your connection details
# Get schema information
{
__schema {
types {
name
fields {
name
}
}
}
}
# Get inserted docs
{
Get {
Documents(limit: 2) {
content
documentId
metadata {
content_type
document_id
object_name
}
}
}
}
See full docs: https://weaviate.io/developers/weaviate/api/graphql