# Interactive Playground

# Interactive Playground

The Interactive Playground is a sandbox environment where you can experiment with Curiosity Workspace features without affecting your production data.

# What can you do in the Playground?

  • Test Graph Queries: Write and run complex graph traversals using our query language.
  • Experiment with Search DSL: Try out different search parameters, filters, and relevance tuning.
  • Preview NLP Extraction: Paste text to see how entities and signals are extracted by the current pipeline.
  • Test Custom Endpoints: Call and debug your custom endpoints in real-time.

# Accessing the Playground

The playground is available directly within the Workspace UI:

  1. Log in to your Workspace.
  2. Click on the Playground icon in the sidebar or go to https://your-workspace.curiosity.ai/playground.

# Sample Queries to Try

# Graph Traversal

{
  "start": "node_id",
  "follow": "outbound_edge",
  "filter": { "property": "value" }
}

# Search DSL

{
  "query": "artificial intelligence",
  "filters": [
    { "type": "category", "value": "article" }
  ]
}

# Tips for Experimentation

  • Use the Reset button to clear your session and start fresh.
  • Check the Schema Reference to see available node and edge types.
  • The playground uses a dedicated sandbox dataset; feel free to create, update, or delete nodes!