8000 GitHub - hynra/weaviate-grapqhql-explorer: A GraphiQL interface for exploring Weaviate GraphQL APIs.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

hynra/weaviate-grapqhql-explorer

Repository files navigation

Weaviate GraphiQL Explorer

A GraphiQL interface for exploring Weaviate GraphQL APIs.

Configuration Dialog

Features

  • Secure API key authentication
  • Full GraphiQL interface
  • Schema exploration

Hosted Version

https://weaviate-explorer.hyn.gg

Getting Started

Prerequisites

Make sure you have bun or node installed on your system.

Install dependencies:

bun install

Development

To start the development server:

bun dev

Visit http://localhost:5173 to see the app.

Usage

  1. When you first open the app, you'll see a configuration dialog
  2. Enter your Weaviate instance details:
  3. Click "Connect to Weaviate" to validate your connection
  4. Once connected, you can:
    • Write and execute GraphQL queries
    • Explore your schema
    • Use autocompletion
    • View query results
  5. Click the "Settings" button in the top right to modify your connection details

Example Queries

# Get schema information
{
  __schema {
    types {
      name
      fields {
        name
      }
    }
  }
}

# Get inserted docs
{
  Get {
    Documents(limit: 2) {
      content
      documentId
      metadata {
        content_type
        document_id
        object_name
      }
    }
  }
}

How To Use Queries

See full docs: https://weaviate.io/developers/weaviate/api/graphql

About

A GraphiQL interface for exploring Weaviate GraphQL APIs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0