diff --git a/datasets/synthetic_haiku35_demodbs/README.md b/datasets/synthetic_haiku35_demodbs/README.md
new file mode 100644
index 0000000..8af819f
--- /dev/null
+++ b/datasets/synthetic_haiku35_demodbs/README.md
@@ -0,0 +1,41 @@
+# Synthetic dataset created with Claude 3.5 Haiku
+
+Synthetic dataset of text2cypher over 7 different graph schemas.
+
+Questions were generated using GPT-4-turbo, and the corresponding Cypher statements with `claude-3-5-haiku-20241022` via AWS Bedrock.
+The demo database is available at:
+
+```
+URI: neo4j+s://demo.neo4jlabs.com
+username: name of the database, for example 'movies'
+password: name of the database, for example 'movies'
+database: name of the database, for example 'movies'
+```
+
+Notebooks:
+
+* `anthropic_text2cypher_haiku35.ipynb`: Generate Cypher statements and validate them by examining if they return any values, have syntax errors, or do queries timeout.
+
+Dataset is available at `text2cypher_haiku35.csv`. Columns are the following:
+
+* `question`: Natural language question
+* `cypher`: Corresponding Cypher statement based on the provided question
+* `type`: Type of question, see `synthetic_gpt4turbo_demodbs/generate_text2cypher_questions.ipynb` for more information
+* `database`: Database that the questions is aimed at
+* `syntax_error`: Does the Cypher statement result in Cypher syntax error
+* `timeout`: Does the Cypher statement take more than 10 seconds to complete
+* `returns_results`: Does the Cypher statement return non-null results
+* `false_schema`: Does the Cypher statement uses parts of graph schema (node types or properties) that aren't present in the graph
+
+## Potential Tasks and Uses of the Dataset
+
+This synthetic dataset can be utilized for various research and development tasks, including:
+
+* Evaluating Syntax Errors: Analyze and categorize the types of syntax errors generated by the LLM to improve error handling and debugging capabilities in Cypher statement generation.
+* Detecting Schema Hallucination: Evaluate instances when the LLM hallucinates graph schema elements that do not exist in the database, aiding in the improvement of schema-aware model training.
+* Benchmarking LLM Performance: Use the dataset to evaluate the performance of different LLMs in generating valid Cypher queries, providing insights into model capabilities and limitations.
+* Finetuning LLMs: Leverage the dataset for finetuning LLMs on domain-specific languages like Cypher to enhance their accuracy and efficiency in generating database queries.
+* Prompt engineering: Determine which prompt produces the most accurate Cypher statements.
+* Comparing accuracy and limitations between Haiku 3.5 and other models (Opus, GPT-4-Turbo, etc.)
+* Cost-effective text2cypher generation: Haiku 3.5 provides a budget-friendly option for generating large-scale synthetic datasets
+* Performance analysis of smaller vs larger models on text2cypher tasks
\ No newline at end of file
diff --git a/datasets/synthetic_haiku35_demodbs/anthropic_text2cypher_haiku35.ipynb b/datasets/synthetic_haiku35_demodbs/anthropic_text2cypher_haiku35.ipynb
new file mode 100644
index 0000000..65e76eb
--- /dev/null
+++ b/datasets/synthetic_haiku35_demodbs/anthropic_text2cypher_haiku35.ipynb
@@ -0,0 +1,1083 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Text2Cypher Generation with Claude 3.5 Haiku via AWS Bedrock\n",
+ "\n",
+ "This notebook generates Cypher queries from natural language questions using Claude 3.5 Haiku through AWS Bedrock.\n",
+ "\n",
+ "## Setup\n",
+ "- Make sure AWS credentials are configured\n",
+ "- Ensure you have access to Claude 3.5 Haiku in us-east-1\n",
+ "- Budget-friendly approach: Default to 10 questions "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Install required packages\n",
+ "!pip install --quiet boto3 neo4j pandas"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import pandas as pd\n",
+ "import boto3\n",
+ "import json\n",
+ "import time\n",
+ "from typing import Dict, Any\n",
+ "import os"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Total questions available: 9824\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " question | \n",
+ " type | \n",
+ " database | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " What are the top 5 movies with a runtime great... | \n",
+ " Simple Retrieval Queries | \n",
+ " recommendations | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " List the first 3 directors born before 1950. | \n",
+ " Simple Retrieval Queries | \n",
+ " recommendations | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " Which 5 users have rated more than 20 movies? | \n",
+ " Simple Retrieval Queries | \n",
+ " recommendations | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " Identify the top 5 actors who have acted in mo... | \n",
+ " Simple Retrieval Queries | \n",
+ " recommendations | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " What are the top 3 genres associated with movi... | \n",
+ " Simple Retrieval Queries | \n",
+ " recommendations | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " question \\\n",
+ "0 What are the top 5 movies with a runtime great... \n",
+ "1 List the first 3 directors born before 1950. \n",
+ "2 Which 5 users have rated more than 20 movies? \n",
+ "3 Identify the top 5 actors who have acted in mo... \n",
+ "4 What are the top 3 genres associated with movi... \n",
+ "\n",
+ " type database \n",
+ "0 Simple Retrieval Queries recommendations \n",
+ "1 Simple Retrieval Queries recommendations \n",
+ "2 Simple Retrieval Queries recommendations \n",
+ "3 Simple Retrieval Queries recommendations \n",
+ "4 Simple Retrieval Queries recommendations "
+ ]
+ },
+ "execution_count": 3,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Load the questions dataset\n",
+ "questions = pd.read_csv(\"text2cypher_questions.csv\")\n",
+ "print(f\"Total questions available: {len(questions)}\")\n",
+ "questions.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Processing 10 questions\n",
+ "Estimated cost with Haiku 3.5: $0.0-0\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " question | \n",
+ " type | \n",
+ " database | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " Name the top 3 organizations by revenue within... | \n",
+ " Complex Aggregation Queries | \n",
+ " companies | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " List the first 3 tweets retweeted by users loc... | \n",
+ " Simple Retrieval Queries | \n",
+ " twitter | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " What are the original titles of movies that ha... | \n",
+ " Complex Retrieval Queries | \n",
+ " neoflix | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " Display the top 5 movies with the highest budg... | \n",
+ " Complex Retrieval Queries | \n",
+ " neoflix | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " List the industry categories of organizations ... | \n",
+ " Complex Retrieval Queries | \n",
+ " companies | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " question \\\n",
+ "0 Name the top 3 organizations by revenue within... \n",
+ "1 List the first 3 tweets retweeted by users loc... \n",
+ "2 What are the original titles of movies that ha... \n",
+ "3 Display the top 5 movies with the highest budg... \n",
+ "4 List the industry categories of organizations ... \n",
+ "\n",
+ " type database \n",
+ "0 Complex Aggregation Queries companies \n",
+ "1 Simple Retrieval Queries twitter \n",
+ "2 Complex Retrieval Queries neoflix \n",
+ "3 Complex Retrieval Queries neoflix \n",
+ "4 Complex Retrieval Queries companies "
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# SAMPLING CONFIGURATION - Modify this cell to change sample size\n",
+ "# Uncomment and modify the line below to change sample size:\n",
+ "\n",
+ "SAMPLE_SIZE = 10 \n",
+ "# SAMPLE_SIZE = 2000 # Uncomment for larger sample\n",
+ "# SAMPLE_SIZE = len(questions) # Uncomment to process all questions (~$5-10)\n",
+ "\n",
+ "# Select questions from supported databases\n",
+ "selected_questions = questions[\n",
+ " questions[\"database\"].isin([\n",
+ " \"recommendations\",\n",
+ " \"companies\",\n",
+ " \"twitch\",\n",
+ " \"twitter\",\n",
+ " \"gameofthrones\",\n",
+ " \"movies\",\n",
+ " \"neoflix\",\n",
+ " ])\n",
+ "].sample(n=min(SAMPLE_SIZE, len(questions)), random_state=42).reset_index(drop=True)\n",
+ "\n",
+ "print(f\"Processing {len(selected_questions)} questions\")\n",
+ "print(f\"Estimated cost with Haiku 3.5: $0.{len(selected_questions)//200}-{len(selected_questions)//100}\")\n",
+ "selected_questions.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Loaded schemas for 15 databases\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Load schemas\n",
+ "schemas = pd.read_csv('text2cypher_schemas.csv')\n",
+ "schemas.head()\n",
+ "\n",
+ "# Create schema dictionary\n",
+ "schema_dict = {}\n",
+ "for i, row in schemas.iterrows():\n",
+ " schema_dict[row['database']] = row['schema']\n",
+ " \n",
+ "print(f\"Loaded schemas for {len(schema_dict)} databases\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Using model: us.anthropic.claude-3-5-haiku-20241022-v1:0\n",
+ "Region: us-east-1\n"
+ ]
+ }
+ ],
+ "source": [
+ "# AWS Bedrock setup for Claude 3.5 Haiku\n",
+ "import boto3\n",
+ "\n",
+ "# Initialize Bedrock Runtime client\n",
+ "bedrock_runtime = boto3.client(\n",
+ " service_name='bedrock-runtime',\n",
+ " region_name='us-east-1' # or us-west-2\n",
+ ")\n",
+ "\n",
+ "# Claude 3.5 Haiku inference profile ID\n",
+ "MODEL_ID = \"us.anthropic.claude-3-5-haiku-20241022-v1:0\"\n",
+ "\n",
+ "print(f\"Using model: {MODEL_ID}\")\n",
+ "print(f\"Region: us-east-1\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Test generation:\n",
+ "Question: Name the top 3 organizations by revenue within the 'Financial Services' category.\n",
+ "Generated Cypher: MATCH (o:Organization)-[:HAS_CATEGORY]->(ic:IndustryCategory {name: 'Financial Services'})\n",
+ "WHERE o.revenue IS NOT NULL\n",
+ "RETURN o.name, o.revenue\n",
+ "ORDER BY o.revenue DESC\n",
+ "LIMIT 3\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Define the Cypher generation function\n",
+ "def generate_cypher_with_haiku(question: str, schema: str) -> str:\n",
+ " \"\"\"\n",
+ " Generate Cypher query using Claude 3.5 Haiku via AWS Bedrock\n",
+ " \"\"\"\n",
+ " # System prompt following neo4j-labs methodology\n",
+ " system_prompt = \"\"\"Given an input question, convert it to a Cypher query. No pre-amble.\n",
+ "Additional instructions:\n",
+ "- Ensure that queries checking for non-null properties use `IS NOT NULL` in a straightforward manner.\n",
+ "- Don't use `size((n)--(m))` for counting relationships. Instead use the new `count{(n)--(m)}` syntax.\n",
+ "- Incorporate the new existential subqueries in examples where the query needs to check for the existence of a pattern.\n",
+ " Example: MATCH (p:Person)-[r:IS_FRIENDS_WITH]->(friend:Person)\n",
+ " WHERE exists{ (p)-[:WORKS_FOR]->(:Company {name: 'Neo4j'})}\n",
+ " RETURN p, r, friend\"\"\"\n",
+ " \n",
+ " # User prompt template\n",
+ " user_prompt = f\"\"\"Based on the Neo4j graph schema below, write a Cypher query that would answer the user's question:\n",
+ "{schema}\n",
+ "\n",
+ "Question: {question}\n",
+ "Cypher query:\"\"\"\n",
+ " \n",
+ " # Prepare the request payload\n",
+ " payload = {\n",
+ " \"anthropic_version\": \"bedrock-2023-05-31\",\n",
+ " \"max_tokens\": 4000,\n",
+ " \"temperature\": 0.0,\n",
+ " \"messages\": [\n",
+ " {\n",
+ " \"role\": \"user\",\n",
+ " \"content\": f\"{system_prompt}\\n\\n{user_prompt}\"\n",
+ " }\n",
+ " ]\n",
+ " }\n",
+ " \n",
+ " try:\n",
+ " # Make the API call\n",
+ " response = bedrock_runtime.invoke_model(\n",
+ " modelId=MODEL_ID,\n",
+ " body=json.dumps(payload)\n",
+ " )\n",
+ " \n",
+ " # Parse the response\n",
+ " response_body = json.loads(response['body'].read())\n",
+ " \n",
+ " # Extract the generated text\n",
+ " cypher = response_body['content'][0]['text'].strip()\n",
+ " return cypher\n",
+ " \n",
+ " except Exception as e:\n",
+ " print(f\"Error generating Cypher: {e}\")\n",
+ " return \"\"\n",
+ "\n",
+ "# Test the function with a sample\n",
+ "if len(selected_questions) > 0:\n",
+ " test_row = selected_questions.iloc[0]\n",
+ " test_schema = schema_dict[test_row['database']]\n",
+ " test_cypher = generate_cypher_with_haiku(test_row['question'], test_schema)\n",
+ " print(\"Test generation:\")\n",
+ " print(f\"Question: {test_row['question']}\")\n",
+ " print(f\"Generated Cypher: {test_cypher}\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Starting generation for 10 questions...\n",
+ "This may take a while. Progress will be shown every question.\n",
+ "Progress: 0/10 questions processed. Elapsed: 0.0s\n",
+ "Progress: 1/10 questions processed. Elapsed: 1.9s\n",
+ "Progress: 2/10 questions processed. Elapsed: 3.8s\n",
+ "Progress: 3/10 questions processed. Elapsed: 5.8s\n",
+ "Progress: 4/10 questions processed. Elapsed: 8.3s\n",
+ "Progress: 5/10 questions processed. Elapsed: 10.3s\n",
+ "Progress: 6/10 questions processed. Elapsed: 12.1s\n",
+ "Progress: 7/10 questions processed. Elapsed: 13.9s\n",
+ "Progress: 8/10 questions processed. Elapsed: 15.6s\n",
+ "Progress: 9/10 questions processed. Elapsed: 17.7s\n",
+ "\n",
+ "Generation completed!\n",
+ "Total time: 19.7 seconds\n",
+ "Average time per question: 1.97 seconds\n",
+ "Generated 10 responses\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Generate Cypher queries for all selected questions\n",
+ "print(f\"Starting generation for {len(selected_questions)} questions...\")\n",
+ "print(\"This may take a while. Progress will be shown every question.\")\n",
+ "\n",
+ "cypher_responses = []\n",
+ "start_time = time.time()\n",
+ "\n",
+ "for i, row in selected_questions.iterrows():\n",
+ " if i % 1 == 0: ## change this for bigger batch size and sample size\n",
+ " elapsed = time.time() - start_time\n",
+ " print(f\"Progress: {i}/{len(selected_questions)} questions processed. Elapsed: {elapsed:.1f}s\")\n",
+ " \n",
+ " schema = schema_dict[row['database']]\n",
+ " \n",
+ " try:\n",
+ " cypher = generate_cypher_with_haiku(row['question'], schema)\n",
+ " cypher_responses.append({\n",
+ " \"question\": row[\"question\"], \n",
+ " \"database\": row[\"database\"], \n",
+ " \"cypher\": cypher, \n",
+ " \"type\": row[\"type\"]\n",
+ " })\n",
+ " except Exception as e:\n",
+ " print(f\"Error at question {i}: {e}\")\n",
+ " cypher_responses.append({\n",
+ " \"question\": row[\"question\"], \n",
+ " \"database\": row[\"database\"], \n",
+ " \"cypher\": \"\", \n",
+ " \"type\": row[\"type\"]\n",
+ " })\n",
+ "\n",
+ "total_time = time.time() - start_time\n",
+ "print(f\"\\nGeneration completed!\")\n",
+ "print(f\"Total time: {total_time:.1f} seconds\")\n",
+ "print(f\"Average time per question: {total_time/len(selected_questions):.2f} seconds\")\n",
+ "print(f\"Generated {len(cypher_responses)} responses\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Created DataFrame with 10 rows\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " question | \n",
+ " database | \n",
+ " cypher | \n",
+ " type | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " Name the top 3 organizations by revenue within... | \n",
+ " companies | \n",
+ " MATCH (o:Organization)-[:HAS_CATEGORY]->(ic:In... | \n",
+ " Complex Aggregation Queries | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " List the first 3 tweets retweeted by users loc... | \n",
+ " twitter | \n",
+ " MATCH (u:User {location: 'Graphs Are Everywher... | \n",
+ " Simple Retrieval Queries | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " What are the original titles of movies that ha... | \n",
+ " neoflix | \n",
+ " MATCH (m:Movie)-[:SPOKEN_IN_LANGUAGE]->(l:Lang... | \n",
+ " Complex Retrieval Queries | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " Display the top 5 movies with the highest budg... | \n",
+ " neoflix | \n",
+ " MATCH (m:Movie)\\nWHERE m.budget > 0 AND m.reve... | \n",
+ " Complex Retrieval Queries | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " List the industry categories of organizations ... | \n",
+ " companies | \n",
+ " MATCH (o:Organization)-[:HAS_CEO]->(p:Person)\\... | \n",
+ " Complex Retrieval Queries | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " question database \\\n",
+ "0 Name the top 3 organizations by revenue within... companies \n",
+ "1 List the first 3 tweets retweeted by users loc... twitter \n",
+ "2 What are the original titles of movies that ha... neoflix \n",
+ "3 Display the top 5 movies with the highest budg... neoflix \n",
+ "4 List the industry categories of organizations ... companies \n",
+ "\n",
+ " cypher \\\n",
+ "0 MATCH (o:Organization)-[:HAS_CATEGORY]->(ic:In... \n",
+ "1 MATCH (u:User {location: 'Graphs Are Everywher... \n",
+ "2 MATCH (m:Movie)-[:SPOKEN_IN_LANGUAGE]->(l:Lang... \n",
+ "3 MATCH (m:Movie)\\nWHERE m.budget > 0 AND m.reve... \n",
+ "4 MATCH (o:Organization)-[:HAS_CEO]->(p:Person)\\... \n",
+ "\n",
+ " type \n",
+ "0 Complex Aggregation Queries \n",
+ "1 Simple Retrieval Queries \n",
+ "2 Complex Retrieval Queries \n",
+ "3 Complex Retrieval Queries \n",
+ "4 Complex Retrieval Queries "
+ ]
+ },
+ "execution_count": 10,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Create DataFrame from responses\n",
+ "combined_df = pd.DataFrame(cypher_responses)\n",
+ "print(f\"Created DataFrame with {len(combined_df)} rows\")\n",
+ "combined_df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Starting validation against Neo4j demo databases...\n",
+ "This will test each query for syntax errors, timeouts, and result availability.\n",
+ "Validation progress: 0/10\n",
+ "Connecting to database: companies\n",
+ "Validation progress: 1/10\n",
+ "Connecting to database: twitter\n",
+ "Validation progress: 2/10\n",
+ "Connecting to database: neoflix\n",
+ "Validation progress: 3/10\n",
+ "Validation progress: 4/10\n",
+ "Connecting to database: companies\n",
+ "Validation progress: 5/10\n",
+ "Connecting to database: neoflix\n",
+ "Validation progress: 6/10\n",
+ "Connecting to database: recommendations\n",
+ "Validation progress: 7/10\n",
+ "Connecting to database: twitter\n",
+ "Validation progress: 8/10\n",
+ "Connecting to database: neoflix\n",
+ "Validation progress: 9/10\n",
+ "\n",
+ "Validation completed!\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Validation against Neo4j demo databases\n",
+ "from neo4j import GraphDatabase\n",
+ "\n",
+ "DEMO_URL = \"neo4j+s://demo.neo4jlabs.com\"\n",
+ "\n",
+ "print(\"Starting validation against Neo4j demo databases...\")\n",
+ "print(\"This will test each query for syntax errors, timeouts, and result availability.\")\n",
+ "\n",
+ "syntax_error = []\n",
+ "returns_results = []\n",
+ "timeouts = []\n",
+ "false_schema = [] # Will be computed later\n",
+ "\n",
+ "last_graph = \"\"\n",
+ "driver = None\n",
+ "\n",
+ "for i, row in combined_df.reset_index().iterrows():\n",
+ " if i % 1 == 0: ## change this for bigger batch size and sample size\n",
+ " print(f\"Validation progress: {i}/{len(combined_df)}\")\n",
+ " \n",
+ " # Connect to new database if needed\n",
+ " if row['database'] != last_graph:\n",
+ " if driver:\n",
+ " driver.close()\n",
+ " last_graph = row[\"database\"]\n",
+ " print(f\"Connecting to database: {last_graph}\")\n",
+ " driver = GraphDatabase.driver(\n",
+ " DEMO_URL, \n",
+ " auth=(row[\"database\"], row[\"database\"])\n",
+ " )\n",
+ " \n",
+ " # Skip empty queries\n",
+ " if not row['cypher'].strip():\n",
+ " syntax_error.append(True)\n",
+ " returns_results.append(False)\n",
+ " timeouts.append(False)\n",
+ " continue\n",
+ " \n",
+ " try:\n",
+ " with driver.session(database=row[\"database\"]) as session:\n",
+ " # Set timeout to 10 seconds\n",
+ " result = session.run(row['cypher'], timeout=10)\n",
+ " data = result.data()\n",
+ " \n",
+ " if data:\n",
+ " returns_results.append(True)\n",
+ " else:\n",
+ " returns_results.append(False)\n",
+ " syntax_error.append(False)\n",
+ " timeouts.append(False)\n",
+ " \n",
+ " except Exception as e:\n",
+ " error_str = str(e).lower()\n",
+ " \n",
+ " if any(keyword in error_str for keyword in ['syntax', 'invalid', 'parse']):\n",
+ " syntax_error.append(True)\n",
+ " print(f\"Syntax error in query {i}: {e}\")\n",
+ " else:\n",
+ " syntax_error.append(False)\n",
+ " \n",
+ " if 'timeout' in error_str or 'time' in error_str:\n",
+ " timeouts.append(True)\n",
+ " else:\n",
+ " timeouts.append(False)\n",
+ " \n",
+ " returns_results.append(False)\n",
+ "\n",
+ "# Close the last driver\n",
+ "if driver:\n",
+ " driver.close()\n",
+ "\n",
+ "print(\"\\nValidation completed!\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\n",
+ "Detecting schema hallucinations...\n",
+ "Validation results summary:\n",
+ "Syntax errors: 0 / 10 (0.0%)\n",
+ "Timeouts: 0 / 10 (0.0%)\n",
+ "Returns results: 9 / 10 (90.0%)\n",
+ "Schema hallucinations: 0 / 10 (0.0%)\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Add validation results to DataFrame\n",
+ "combined_df[\"syntax_error\"] = syntax_error\n",
+ "combined_df[\"timeout\"] = timeouts\n",
+ "combined_df[\"returns_results\"] = returns_results\n",
+ "\n",
+ "# Implement false_schema detection\n",
+ "print(\"\\nDetecting schema hallucinations...\")\n",
+ "false_schema = []\n",
+ "\n",
+ "import re\n",
+ "\n",
+ "for i, row in combined_df.iterrows():\n",
+ " schema = schema_dict[row['database']]\n",
+ " cypher = row['cypher']\n",
+ " \n",
+ " # Basic schema hallucination detection\n",
+ " # Extract node labels from schema (e.g., :Movie, :Person)\n",
+ " schema_labels = set(re.findall(r':(\\w+)', schema))\n",
+ " \n",
+ " # Extract node labels used in cypher\n",
+ " cypher_labels = set(re.findall(r':(\\w+)', cypher))\n",
+ " \n",
+ " # Extract relationship types from schema (e.g., -[:ACTED_IN]->)\n",
+ " schema_rels = set(re.findall(r'\\[:([A-Z_]+)\\]', schema))\n",
+ " \n",
+ " # Extract relationship types used in cypher\n",
+ " cypher_rels = set(re.findall(r'\\[:([A-Z_]+)\\]', cypher))\n",
+ " \n",
+ " # Check if cypher uses labels/relationships not in schema\n",
+ " invalid_labels = cypher_labels - schema_labels\n",
+ " invalid_rels = cypher_rels - schema_rels\n",
+ " \n",
+ " if invalid_labels or invalid_rels:\n",
+ " false_schema.append(True)\n",
+ " if i < 5: # Show first few examples\n",
+ " if invalid_labels:\n",
+ " print(f\"Invalid labels in query {i}: {invalid_labels}\")\n",
+ " if invalid_rels:\n",
+ " print(f\"Invalid relationships in query {i}: {invalid_rels}\")\n",
+ " else:\n",
+ " false_schema.append(False)\n",
+ "\n",
+ "combined_df[\"false_schema\"] = false_schema\n",
+ "\n",
+ "print(\"Validation results summary:\")\n",
+ "print(f\"Syntax errors: {sum(syntax_error)} / {len(syntax_error)} ({100*sum(syntax_error)/len(syntax_error):.1f}%)\")\n",
+ "print(f\"Timeouts: {sum(timeouts)} / {len(timeouts)} ({100*sum(timeouts)/len(timeouts):.1f}%)\")\n",
+ "print(f\"Returns results: {sum(returns_results)} / {len(returns_results)} ({100*sum(returns_results)/len(returns_results):.1f}%)\")\n",
+ "print(f\"Schema hallucinations: {sum(false_schema)} / {len(false_schema)} ({100*sum(false_schema)/len(false_schema):.1f}%)\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Final dataset shape: (10, 8)\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " question | \n",
+ " cypher | \n",
+ " type | \n",
+ " database | \n",
+ " syntax_error | \n",
+ " timeout | \n",
+ " returns_results | \n",
+ " false_schema | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " Name the top 3 organizations by revenue within... | \n",
+ " MATCH (o:Organization)-[:HAS_CATEGORY]->(ic:In... | \n",
+ " Complex Aggregation Queries | \n",
+ " companies | \n",
+ " False | \n",
+ " False | \n",
+ " False | \n",
+ " False | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " List the first 3 tweets retweeted by users loc... | \n",
+ " MATCH (u:User {location: 'Graphs Are Everywher... | \n",
+ " Simple Retrieval Queries | \n",
+ " twitter | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " What are the original titles of movies that ha... | \n",
+ " MATCH (m:Movie)-[:SPOKEN_IN_LANGUAGE]->(l:Lang... | \n",
+ " Complex Retrieval Queries | \n",
+ " neoflix | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ "
\n",
+ " \n",
+ " | 3 | \n",
+ " Display the top 5 movies with the highest budg... | \n",
+ " MATCH (m:Movie)\\nWHERE m.budget > 0 AND m.reve... | \n",
+ " Complex Retrieval Queries | \n",
+ " neoflix | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ "
\n",
+ " \n",
+ " | 4 | \n",
+ " List the industry categories of organizations ... | \n",
+ " MATCH (o:Organization)-[:HAS_CEO]->(p:Person)\\... | \n",
+ " Complex Retrieval Queries | \n",
+ " companies | \n",
+ " False | \n",
+ " False | \n",
+ " True | \n",
+ " False | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " question \\\n",
+ "0 Name the top 3 organizations by revenue within... \n",
+ "1 List the first 3 tweets retweeted by users loc... \n",
+ "2 What are the original titles of movies that ha... \n",
+ "3 Display the top 5 movies with the highest budg... \n",
+ "4 List the industry categories of organizations ... \n",
+ "\n",
+ " cypher \\\n",
+ "0 MATCH (o:Organization)-[:HAS_CATEGORY]->(ic:In... \n",
+ "1 MATCH (u:User {location: 'Graphs Are Everywher... \n",
+ "2 MATCH (m:Movie)-[:SPOKEN_IN_LANGUAGE]->(l:Lang... \n",
+ "3 MATCH (m:Movie)\\nWHERE m.budget > 0 AND m.reve... \n",
+ "4 MATCH (o:Organization)-[:HAS_CEO]->(p:Person)\\... \n",
+ "\n",
+ " type database syntax_error timeout \\\n",
+ "0 Complex Aggregation Queries companies False False \n",
+ "1 Simple Retrieval Queries twitter False False \n",
+ "2 Complex Retrieval Queries neoflix False False \n",
+ "3 Complex Retrieval Queries neoflix False False \n",
+ "4 Complex Retrieval Queries companies False False \n",
+ "\n",
+ " returns_results false_schema \n",
+ "0 False False \n",
+ "1 True False \n",
+ "2 True False \n",
+ "3 True False \n",
+ "4 True False "
+ ]
+ },
+ "execution_count": 19,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# Create final dataset with proper column order\n",
+ "final_df = combined_df[[\n",
+ " \"question\",\n",
+ " \"cypher\",\n",
+ " \"type\",\n",
+ " \"database\",\n",
+ " \"syntax_error\",\n",
+ " \"timeout\",\n",
+ " \"returns_results\",\n",
+ " \"false_schema\"\n",
+ "]]\n",
+ "\n",
+ "print(f\"Final dataset shape: {final_df.shape}\")\n",
+ "final_df.head()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Detailed Statistics:\n",
+ "\n",
+ "Syntax Errors:\n",
+ "syntax_error\n",
+ "False 10\n",
+ "Name: count, dtype: int64\n",
+ "\n",
+ "Timeouts:\n",
+ "timeout\n",
+ "False 10\n",
+ "Name: count, dtype: int64\n",
+ "\n",
+ "Returns Results:\n",
+ "returns_results\n",
+ "True 9\n",
+ "False 1\n",
+ "Name: count, dtype: int64\n",
+ "\n",
+ "By Database:\n",
+ "database\n",
+ "neoflix 5\n",
+ "companies 2\n",
+ "twitter 2\n",
+ "recommendations 1\n",
+ "Name: count, dtype: int64\n",
+ "\n",
+ "By Question Type:\n",
+ "type\n",
+ "Complex Retrieval Queries 3\n",
+ "Pathfinding Queries 3\n",
+ "Complex Aggregation Queries 2\n",
+ "Simple Retrieval Queries 2\n",
+ "Name: count, dtype: int64\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Show detailed statistics\n",
+ "print(\"Detailed Statistics:\")\n",
+ "print(\"\\nSyntax Errors:\")\n",
+ "print(final_df[\"syntax_error\"].value_counts())\n",
+ "print(\"\\nTimeouts:\")\n",
+ "print(final_df[\"timeout\"].value_counts())\n",
+ "print(\"\\nReturns Results:\")\n",
+ "print(final_df[\"returns_results\"].value_counts())\n",
+ "print(\"\\nBy Database:\")\n",
+ "print(final_df[\"database\"].value_counts())\n",
+ "print(\"\\nBy Question Type:\")\n",
+ "print(final_df[\"type\"].value_counts())"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 21,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Dataset saved as: text2cypher_haiku35.csv\n",
+ "Total questions processed: 10\n",
+ "\n",
+ "Successful queries: 9 / 10 (90.0%)\n",
+ "\n",
+ "Sample successful query:\n",
+ "Question: List the first 3 tweets retweeted by users located in 'Graphs Are Everywhere'.\n",
+ "Database: twitter\n",
+ "Cypher: MATCH (u:User {location: 'Graphs Are Everywhere'})-[:POSTS]->(t1:Tweet)<-[:RETWEETS]-(t2:Tweet)\n",
+ "RETURN DISTINCT t2\n",
+ "LIMIT 3\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Save the final dataset\n",
+ "output_filename = \"text2cypher_haiku35.csv\"\n",
+ "final_df.to_csv(output_filename, index=False)\n",
+ "print(f\"Dataset saved as: {output_filename}\")\n",
+ "print(f\"Total questions processed: {len(final_df)}\")\n",
+ "\n",
+ "# Show sample of successful queries\n",
+ "successful_queries = final_df[\n",
+ " (~final_df[\"syntax_error\"]) & \n",
+ " (~final_df[\"timeout\"]) & \n",
+ " (final_df[\"returns_results\"])\n",
+ "]\n",
+ "print(f\"\\nSuccessful queries: {len(successful_queries)} / {len(final_df)} ({100*len(successful_queries)/len(final_df):.1f}%)\")\n",
+ "\n",
+ "if len(successful_queries) > 0:\n",
+ " print(\"\\nSample successful query:\")\n",
+ " sample = successful_queries.iloc[0]\n",
+ " print(f\"Question: {sample['question']}\")\n",
+ " print(f\"Database: {sample['database']}\")\n",
+ " print(f\"Cypher: {sample['cypher']}\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Summary\n",
+ "\n",
+ "This notebook generates a synthetic text2cypher dataset using Claude 3.5 Haiku via AWS Bedrock.\n",
+ "\n",
+ "### Key Features:\n",
+ "- **Budget-friendly**: Default 10 questions \n",
+ "- **Scalable**: Easy to modify sample size\n",
+ "- **Validated**: Tests against live Neo4j databases\n",
+ "- **Compatible**: Follows neo4j-labs methodology\n",
+ "\n",
+ "### Usage:\n",
+ "1. Configure AWS credentials for Bedrock access\n",
+ "2. Modify `SAMPLE_SIZE` in the sampling cell as needed\n",
+ "3. Run all cells to generate and validate the dataset\n",
+ "4. Output saved as `text2cypher_haiku35.csv`\n",
+ "\n",
+ "### Cost Estimation:\n",
+ "- 1,000 questions: ~$0.50-1.00\n",
+ "- 5,000 questions: ~$2.50-5.00\n",
+ "- All questions (~9,824): ~$5-10\n",
+ "\n",
+ "Claude 3.5 Haiku provides an excellent balance of cost-effectiveness and performance for large-scale text2cypher dataset generation."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.8"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/datasets/synthetic_haiku35_demodbs/text2cypher_haiku35.csv b/datasets/synthetic_haiku35_demodbs/text2cypher_haiku35.csv
new file mode 100644
index 0000000..a87e0d7
--- /dev/null
+++ b/datasets/synthetic_haiku35_demodbs/text2cypher_haiku35.csv
@@ -0,0 +1,43 @@
+question,cypher,type,database,syntax_error,timeout,returns_results,false_schema
+Name the top 3 organizations by revenue within the 'Financial Services' category.,"MATCH (o:Organization)-[:HAS_CATEGORY]->(ic:IndustryCategory {name: 'Financial Services'})
+WHERE o.revenue IS NOT NULL
+RETURN o.name, o.revenue
+ORDER BY o.revenue DESC
+LIMIT 3",Complex Aggregation Queries,companies,False,False,False,False
+List the first 3 tweets retweeted by users located in 'Graphs Are Everywhere'.,"MATCH (u:User {location: 'Graphs Are Everywhere'})-[:POSTS]->(t1:Tweet)<-[:RETWEETS]-(t2:Tweet)
+RETURN DISTINCT t2
+LIMIT 3",Simple Retrieval Queries,twitter,False,False,True,False
+What are the original titles of movies that have been translated into Spanish?,"MATCH (m:Movie)-[:SPOKEN_IN_LANGUAGE]->(l:Language {id: 'es'})
+RETURN DISTINCT m.original_title",Complex Retrieval Queries,neoflix,False,False,True,False
+Display the top 5 movies with the highest budget to revenue ratio.,"MATCH (m:Movie)
+WHERE m.budget > 0 AND m.revenue > 0
+RETURN m.title, m.budget, m.revenue, (m.budget / m.revenue) AS budget_to_revenue_ratio
+ORDER BY budget_to_revenue_ratio DESC
+LIMIT 5",Complex Retrieval Queries,neoflix,False,False,True,False
+List the industry categories of organizations that have a CEO with a summary mentioning 'executive'.,"MATCH (o:Organization)-[:HAS_CEO]->(p:Person)
+WHERE p.summary CONTAINS 'executive'
+MATCH (o)-[:HAS_CATEGORY]->(ic:IndustryCategory)
+RETURN DISTINCT ic.name",Complex Retrieval Queries,companies,False,False,True,False
+What are the first 3 highest budget movies that were released?,"MATCH (m:Movie)
+WHERE m.budget IS NOT NULL
+RETURN m
+ORDER BY m.budget DESC
+LIMIT 3",Complex Aggregation Queries,neoflix,False,False,True,False
+List the top 3 movies with a release date on or before '2000-01-01'.,"MATCH (m:Movie)
+WHERE m.released <= '2000-01-01'
+RETURN m
+ORDER BY m.imdbRating DESC
+LIMIT 3",Simple Retrieval Queries,recommendations,False,False,True,False
+List the top 5 users by number of followers.,"MATCH (u:User)
+WHERE u.followers IS NOT NULL
+RETURN u.screen_name, u.followers
+ORDER BY u.followers DESC
+LIMIT 5",Pathfinding Queries,twitter,False,False,True,False
+Which 3 movies have the keyword 'jealousy'?,"MATCH (m:Movie)-[:HAS_KEYWORD]->(k:Keyword {name: 'jealousy'})
+RETURN m.title
+LIMIT 3",Pathfinding Queries,neoflix,False,False,True,False
+List the first 3 packages that provide the longest duration of access to movies.,"MATCH (p:Package)-[:PROVIDES_ACCESS_TO]->(g:Genre)
+WITH p, p.duration AS duration
+ORDER BY duration DESC
+RETURN DISTINCT p.name, duration
+LIMIT 3",Pathfinding Queries,neoflix,False,False,True,False
diff --git a/datasets/synthetic_haiku35_demodbs/text2cypher_questions.csv b/datasets/synthetic_haiku35_demodbs/text2cypher_questions.csv
new file mode 100644
index 0000000..1390bd8
--- /dev/null
+++ b/datasets/synthetic_haiku35_demodbs/text2cypher_questions.csv
@@ -0,0 +1,9825 @@
+question,type,database
+What are the top 5 movies with a runtime greater than 120 minutes?,Simple Retrieval Queries,recommendations
+List the first 3 directors born before 1950.,Simple Retrieval Queries,recommendations
+Which 5 users have rated more than 20 movies?,Simple Retrieval Queries,recommendations
+Identify the top 5 actors who have acted in more than 10 movies.,Simple Retrieval Queries,recommendations
+What are the top 3 genres associated with movies released after 2000?,Simple Retrieval Queries,recommendations
+List the first 3 movies with a budget over 100 million dollars.,Simple Retrieval Queries,recommendations
+Which 5 directors have directed at least 5 movies with an IMDb rating above 7.0?,Simple Retrieval Queries,recommendations
+Show the top 3 actors who have acted in movies that generated over 500 million in revenue.,Simple Retrieval Queries,recommendations
+What are the first 5 movies that were rated by users named 'John Smith'?,Simple Retrieval Queries,recommendations
+List the top 3 users who have given the highest average ratings.,Simple Retrieval Queries,recommendations
+Which 5 movies have the most number of votes on IMDb?,Simple Retrieval Queries,recommendations
+Identify the first 3 genres most frequently linked to movies directed by 'Steven Spielberg'.,Simple Retrieval Queries,recommendations
+Show the top 5 movies with revenues exceeding 1 billion dollars.,Simple Retrieval Queries,recommendations
+List the first 3 actors who have played roles in both comedy and action movies.,Simple Retrieval Queries,recommendations
+Which 5 directors were born in the USA and have directed at least 3 movies?,Simple Retrieval Queries,recommendations
+What are the top 3 movies with the highest IMDb ratings that were released in the 1990s?,Simple Retrieval Queries,recommendations
+List the first 5 movies that involve actors born in France.,Simple Retrieval Queries,recommendations
+Which 5 users have rated movies primarily in the 'Drama' genre?,Simple Retrieval Queries,recommendations
+Show the top 3 highest-grossing movies of the 2000s.,Simple Retrieval Queries,recommendations
+Identify the first 5 actors who have acted in movies with a budget less than 50 million dollars.,Simple Retrieval Queries,recommendations
+What are the top 3 oldest movies in the database?,Simple Retrieval Queries,recommendations
+List the first 5 directors who have a biography listed in the database.,Simple Retrieval Queries,recommendations
+Which 5 movies have the most detailed plots (based on the length of the plot text)?,Simple Retrieval Queries,recommendations
+Show the top 3 movies that have been rated by the oldest users.,Simple Retrieval Queries,recommendations
+What are the first 5 genres associated with movies having the most languages available?,Simple Retrieval Queries,recommendations
+List the top 3 movies that have been released on Christmas Day.,Simple Retrieval Queries,recommendations
+Which 5 actors have the highest number of credited roles in the database?,Simple Retrieval Queries,recommendations
+Identify the first 3 directors who have directed a movie with an IMDb rating lower than 4.0.,Simple Retrieval Queries,recommendations
+Show the top 5 movies with the shortest runtime.,Simple Retrieval Queries,recommendations
+List the first 5 movies that have been rated by users from more than 10 different countries.,Simple Retrieval Queries,recommendations
+What are the top 3 highest-budget films directed by directors born in the UK?,Simple Retrieval Queries,recommendations
+List the top 5 oldest actors in the database.,Simple Retrieval Queries,recommendations
+Which 5 users have rated the most number of 'Horror' movies?,Simple Retrieval Queries,recommendations
+Identify the first 3 movies with the most number of genres associated.,Simple Retrieval Queries,recommendations
+Show the top 5 movies with the most languages spoken.,Simple Retrieval Queries,recommendations
+What are the first 5 movies where the main actor has also directed the film?,Simple Retrieval Queries,recommendations
+List the top 3 directors who have also acted in a movie they directed.,Simple Retrieval Queries,recommendations
+Which 5 movies have been rated exactly 5 times by users?,Simple Retrieval Queries,recommendations
+Identify the first 3 users who have rated movies released before 1980.,Simple Retrieval Queries,recommendations
+Show the top 5 movies with the most IMDb votes released after 2010.,Simple Retrieval Queries,recommendations
+What are the first 5 movies with a plot containing the word 'adventure'?,Simple Retrieval Queries,recommendations
+List the top 3 movies with the most revenue that have a runtime under 90 minutes.,Simple Retrieval Queries,recommendations
+Which 5 directors have directed movies in more than 3 different genres?,Simple Retrieval Queries,recommendations
+Identify the first 3 actors who have acted in movies with at least three different directors.,Simple Retrieval Queries,recommendations
+Show the top 5 highest IMDb rated movies directed by female directors.,Simple Retrieval Queries,recommendations
+What are the first 5 movies to have a poster URL containing 'face'?,Simple Retrieval Queries,recommendations
+List the top 3 movies with a budget under 10 million that have generated over 100 million in revenue.,Simple Retrieval Queries,recommendations
+Which 5 users have the most ratings in the 'Comedy' genre?,Simple Retrieval Queries,recommendations
+Identify the first 3 movies that have been rated by users younger than 25.,Simple Retrieval Queries,recommendations
+Show the top 5 oldest movies that have been rated by at least 5 different users.,Simple Retrieval Queries,recommendations
+What are the names of the top 5 movies with a budget over 100 million dollars?,Complex Retrieval Queries,recommendations
+List the names of 3 directors who directed a movie released after 2010.,Complex Retrieval Queries,recommendations
+Who are the actors in the movie titled 'Open Season'?,Complex Retrieval Queries,recommendations
+"Which movies have been rated by more than 600,000 IMDb users?",Complex Retrieval Queries,recommendations
+Name the top 5 highest-grossing movies directed by Harold Lloyd.,Complex Retrieval Queries,recommendations
+What are the three most recent movies added to the database?,Complex Retrieval Queries,recommendations
+List all genres associated with the movie 'Toy Story'.,Complex Retrieval Queries,recommendations
+Who are the top 5 actors by the number of movies acted in the 'Adventure' genre?,Complex Retrieval Queries,recommendations
+What are the IMDb ratings of movies directed by François Lallement?,Complex Retrieval Queries,recommendations
+Which users rated the movie with an IMDb ID '0787474'?,Complex Retrieval Queries,recommendations
+List the top 3 highest revenue movies released in the 2000s.,Complex Retrieval Queries,recommendations
+What are the names of users who rated a movie from the 'Animation' genre?,Complex Retrieval Queries,recommendations
+Find the names of all directors who were born in France.,Complex Retrieval Queries,recommendations
+Which movies have a runtime longer than 180 minutes?,Complex Retrieval Queries,recommendations
+Name the actors who have acted in movies with a budget less than 50 million dollars.,Complex Retrieval Queries,recommendations
+List the movies that have been both directed and acted in by the same person.,Complex Retrieval Queries,recommendations
+What are the three most common languages spoken in movies directed by Anthony Stacchi?,Complex Retrieval Queries,recommendations
+Which movies have won more than 200 million dollars but were rated below 6.0 on IMDb?,Complex Retrieval Queries,recommendations
+List the movies where the primary language is English and have a runtime of exactly 96 minutes.,Complex Retrieval Queries,recommendations
+Name the top 5 movies with the most IMDb votes released before the year 2000.,Complex Retrieval Queries,recommendations
+Which genres have the most movies with a runtime over 120 minutes?,Complex Retrieval Queries,recommendations
+List the names of movies that have a plot mentioning 'friendship'.,Complex Retrieval Queries,recommendations
+What are the top 3 countries producing movies with a revenue over 500 million dollars?,Complex Retrieval Queries,recommendations
+Who are the directors of movies that have an IMDb rating greater than 8.0?,Complex Retrieval Queries,recommendations
+List the movies that have been rated by user '1'.,Complex Retrieval Queries,recommendations
+Which actors have appeared in movies released in the 'Comedy' genre?,Complex Retrieval Queries,recommendations
+"What are the names of the movies directed by persons born in 'Burchard, Nebraska, USA'?",Complex Retrieval Queries,recommendations
+Name the movies where the main language is not English and have a budget over 75 million dollars.,Complex Retrieval Queries,recommendations
+List the top 3 movies with the highest budget to revenue ratio.,Complex Retrieval Queries,recommendations
+Name genres in which Harold Lloyd has directed movies.,Complex Retrieval Queries,recommendations
+Which users have rated movies directed by directors born after 1960?,Complex Retrieval Queries,recommendations
+Name the movies that have posters ending with 'w5Lctmkc1yah215Luxmci4djaiW.jpg'.,Complex Retrieval Queries,recommendations
+List the top 3 actors by the number of roles in movies released after 2010.,Complex Retrieval Queries,recommendations
+Which movies have been rated by users named 'Omar Huffman'?,Complex Retrieval Queries,recommendations
+Name the genres of movies that have a plot mentioning 'army'.,Complex Retrieval Queries,recommendations
+List movies with a revenue less than 20 million dollars and released before 1980.,Complex Retrieval Queries,recommendations
+What are the IMDb ratings of movies that have a plot mentioning 'evil exterminator'?,Complex Retrieval Queries,recommendations
+Name the movies that have been acted in and directed by the same person.,Complex Retrieval Queries,recommendations
+Which movies have a runtime greater than 120 minutes and were released after 2000?,Simple Aggregation Queries,recommendations
+What are the top 5 highest-grossing movies that were released before 2010?,Simple Aggregation Queries,recommendations
+List 3 movies directed by 'Anthony Stacchi'.,Simple Aggregation Queries,recommendations
+Which 5 actors have acted in the most movies?,Simple Aggregation Queries,recommendations
+What are the top 3 genres by the number of movies?,Simple Aggregation Queries,recommendations
+Who are the top 5 directors by the number of movies they have directed?,Simple Aggregation Queries,recommendations
+"What are the top 5 movies by IMDB rating that have more than 100,000 IMDB votes?",Simple Aggregation Queries,recommendations
+Which movies have been rated by user '1' and have a rating greater than 8?,Simple Aggregation Queries,recommendations
+List the movies that have grossed over 1 billion USD in revenue.,Simple Aggregation Queries,recommendations
+What are the top 3 longest movies by runtime?,Simple Aggregation Queries,recommendations
+Provide the names of 3 actors who have also directed movies.,Simple Aggregation Queries,recommendations
+Which 5 movies have the most diverse language offerings?,Simple Aggregation Queries,recommendations
+What are the 3 most common countries for movie settings in the database?,Simple Aggregation Queries,recommendations
+List 3 movies that were released in the 1990s and have an IMDB rating above 7.,Simple Aggregation Queries,recommendations
+Which directors were born in the USA?,Simple Aggregation Queries,recommendations
+"What are the top 5 highest-rated movies by users, based on the average user rating?",Simple Aggregation Queries,recommendations
+List the movies that have a budget greater than 200 million USD.,Simple Aggregation Queries,recommendations
+Which 3 movies feature both English and Japanese languages?,Simple Aggregation Queries,recommendations
+What are the top 3 movies by revenue released in 2014?,Simple Aggregation Queries,recommendations
+Which actors have played in a movie and also directed a movie?,Simple Aggregation Queries,recommendations
+Who are the 5 most frequent actors in the 'Adventure' genre?,Simple Aggregation Queries,recommendations
+List the 3 oldest directors based on their birth date.,Simple Aggregation Queries,recommendations
+Which movies have both high revenue (over 500 million USD) and high imdbRating (above 8.0)?,Simple Aggregation Queries,recommendations
+What are the most recent 3 movies directed by any director born in Canada?,Simple Aggregation Queries,recommendations
+Which 3 users have rated the most movies?,Simple Aggregation Queries,recommendations
+List 5 genres that have the least number of movies associated with them.,Simple Aggregation Queries,recommendations
+What are the top 3 highest budget movies that failed to gross more than their budget?,Simple Aggregation Queries,recommendations
+Which movies have been rated by more than 1000 users?,Simple Aggregation Queries,recommendations
+List the 3 directors who have directed the most movies of a single genre.,Simple Aggregation Queries,recommendations
+Which actors have featured in movies released in multiple languages?,Simple Aggregation Queries,recommendations
+What movies have a runtime longer than 120 minutes and were released after 2000?,Pathfinding Queries,recommendations
+Which movies have been rated by more than three users?,Pathfinding Queries,recommendations
+List the top 5 movies with the highest IMDb rating.,Pathfinding Queries,recommendations
+What are the names of actors who have acted in more than five movies?,Pathfinding Queries,recommendations
+Which users have rated movies in the 'Adventure' genre?,Pathfinding Queries,recommendations
+What movies had a budget greater than 100 million dollars and were directed by a director born in the USA?,Pathfinding Queries,recommendations
+Find all movies where the revenue was more than double the budget.,Pathfinding Queries,recommendations
+What genres have more than ten movies associated with them?,Pathfinding Queries,recommendations
+Which movies have been rated by both user '1' and user '2'?,Pathfinding Queries,recommendations
+What are the names of directors who have directed both a 'Comedy' and a 'Drama' movie?,Pathfinding Queries,recommendations
+How many movies have been released in each year from 2010 to 2020?,Pathfinding Queries,recommendations
+Which actors have acted in movies from at least three different countries?,Pathfinding Queries,recommendations
+List the top 3 movies with the most IMDb votes.,Pathfinding Queries,recommendations
+Which directors have a bio that mentions 'Academy Award'?,Pathfinding Queries,recommendations
+What movies have both English and French as their languages?,Pathfinding Queries,recommendations
+How many users have rated the movie with the IMDb ID '0114709'?,Pathfinding Queries,recommendations
+Which actor has the highest number of roles in movies released before 1980?,Pathfinding Queries,recommendations
+Can you list all genres that a movie with the title 'Toy Story' falls under?,Pathfinding Queries,recommendations
+Which movies feature actors born in France?,Pathfinding Queries,recommendations
+What are the top 5 highest-grossing movies of 2014?,Pathfinding Queries,recommendations
+How many genres has each movie been classified under?,Pathfinding Queries,recommendations
+Which movie had the largest number of actors participating?,Pathfinding Queries,recommendations
+List all movies directed by someone who was born after 1970.,Pathfinding Queries,recommendations
+What is the average IMDb rating of movies with a runtime under 90 minutes?,Pathfinding Queries,recommendations
+Which movies have been rated exactly 5 by more than one user?,Pathfinding Queries,recommendations
+Find movies where the sum of the revenue and budget is more than 1 billion dollars.,Pathfinding Queries,recommendations
+Which directors have directed movies in more than two languages?,Pathfinding Queries,recommendations
+List the top 5 movies by revenue that were released in the last five years of the schema's data range.,Pathfinding Queries,recommendations
+Which users have rated a movie but have not rated any movie in the 'Sci-Fi' genre?,Pathfinding Queries,recommendations
+What are the different roles played by actors in the movie with the IMDb ID '0829150'?,Pathfinding Queries,recommendations
+List all the movies that have been both directed and acted in by the same person.,Pathfinding Queries,recommendations
+Which actor has the most diverse filmography in terms of genres acted in?,Pathfinding Queries,recommendations
+What are the names of the users who rated the movie 'Dracula Untold'?,Pathfinding Queries,recommendations
+Which directors have a poster URL that includes 'w440_and_h660_face'?,Pathfinding Queries,recommendations
+List the movies that have a plot mentioning 'kingdom'.,Pathfinding Queries,recommendations
+"What is the total revenue generated by movies directed by directors born in 'Burchard, Nebraska, USA'?",Pathfinding Queries,recommendations
+Which movies have a plot description longer than 150 characters?,Pathfinding Queries,recommendations
+List the top 3 movies with the shortest runtime.,Pathfinding Queries,recommendations
+"Find all movies that have been rated after January 1st, 2015.",Pathfinding Queries,recommendations
+"What are the IMDb IDs of movies that have more than 500,000 IMDb votes?",Pathfinding Queries,recommendations
+Which movies have been acted in by persons born before 1900?,Pathfinding Queries,recommendations
+What are the top 5 movies by revenue released in 1995?,Complex Aggregation Queries,recommendations
+Which movies have a runtime longer than 150 minutes and less than 200 minutes?,Complex Aggregation Queries,recommendations
+List the top 3 highest imdbRating movies that were released before the year 2000.,Complex Aggregation Queries,recommendations
+What are the top 5 oldest actors who have acted in English language movies?,Complex Aggregation Queries,recommendations
+Which directors have directed more than one movie in the 'Drama' genre?,Complex Aggregation Queries,recommendations
+List the top 3 movies with the highest number of imdbVotes.,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the most countries listed in their production?,Complex Aggregation Queries,recommendations
+Which users have rated more than 5 movies with a rating above 7.0?,Complex Aggregation Queries,recommendations
+List the top 3 genres with the most movies associated with them.,Complex Aggregation Queries,recommendations
+What are the 5 most recent movies directed by directors born in the USA?,Complex Aggregation Queries,recommendations
+Which actors have acted in both 'Comedy' and 'Drama' genres?,Complex Aggregation Queries,recommendations
+List the top 3 movies with the highest budget to revenue ratio.,Complex Aggregation Queries,recommendations
+Which movies have been rated by more than 1000 users?,Complex Aggregation Queries,recommendations
+What are the top 5 movies that have the most languages spoken in them?,Complex Aggregation Queries,recommendations
+Which actors have never acted in a movie released after 2010?,Complex Aggregation Queries,recommendations
+List the top 3 movies that have the highest revenue and were released in 2014.,Complex Aggregation Queries,recommendations
+What are the top 5 directors by number of movies directed in the 'Action' genre?,Complex Aggregation Queries,recommendations
+Which users have the highest average rating given to movies? (minimum 3 ratings),Complex Aggregation Queries,recommendations
+List the genres that have movies with an imdbRating less than 4.0.,Complex Aggregation Queries,recommendations
+What are the 5 most recent movies with a runtime less than 90 minutes?,Complex Aggregation Queries,recommendations
+Which actors have the most roles in movies with a budget over 100 million dollars?,Complex Aggregation Queries,recommendations
+List the top 3 movies with the lowest imdbVotes released after 2000.,Complex Aggregation Queries,recommendations
+What are the top 5 actors by number of movies acted in with a revenue greater than 500 million dollars?,Complex Aggregation Queries,recommendations
+Which directors have directed movies in more than three different languages?,Complex Aggregation Queries,recommendations
+List the top 3 movies with the smallest difference between budget and revenue.,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the highest number of actors involved?,Complex Aggregation Queries,recommendations
+Which users have rated the same movie more than once?,Complex Aggregation Queries,recommendations
+List the top 3 movies with the lowest imdbRating that have been rated by more than 500 users.,Complex Aggregation Queries,recommendations
+What are the top 5 actors who have acted in movies directed by Denzel Washington?,Complex Aggregation Queries,recommendations
+Which directors were born in France and have directed at least two movies?,Complex Aggregation Queries,recommendations
+List the top 3 highest grossing movies of 2013.,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the most distinct genres associated with them?,Complex Aggregation Queries,recommendations
+Which movies have more than five genres associated with their production?,Complex Aggregation Queries,recommendations
+List the top 3 actors by number of movies acted in that were released in the 1990s.,Complex Aggregation Queries,recommendations
+What are the top 5 directors who have directed movies that won an academy award?,Complex Aggregation Queries,recommendations
+Which actors have acted in both high-budget (over 200 million dollars) and low-budget (under 10 million dollars) movies?,Complex Aggregation Queries,recommendations
+List the top 3 movies with a plot involving 'love' that have a runtime over 120 minutes.,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the highest imdbRating that were released in the 21st century?,Complex Aggregation Queries,recommendations
+Which directors have directed movies in both the 'Horror' and 'Romance' genres?,Complex Aggregation Queries,recommendations
+List the top 3 actors with the highest average imdbRating across movies they've acted in (minimum 3 movies).,Complex Aggregation Queries,recommendations
+List the names of the top 5 movies with the highest revenue.,Verbose query,recommendations
+What are the top 5 longest movies by runtime?,Verbose query,recommendations
+Find the names of the top 5 movies with the lowest imdbRating.,Verbose query,recommendations
+List the top 5 movies with the most imdbVotes.,Verbose query,recommendations
+Find the names of the top 5 directors by the number of movies they have directed.,Verbose query,recommendations
+What are the top 5 actors who acted in the most number of movies?,Verbose query,recommendations
+List the names of the first 3 genres that have the most movies associated with them.,Verbose query,recommendations
+Which 5 movies have been rated by the highest number of users?,Verbose query,recommendations
+What are the top 5 countries where the most movies originate from based on the 'countries' property of movies?,Verbose query,recommendations
+List the names of the top 3 users who have rated the most movies.,Verbose query,recommendations
+What are the top 5 languages in which movies are made based on the 'languages' property of movies?,Verbose query,recommendations
+Find the top 5 movies released most recently.,Verbose query,recommendations
+What are the top 3 oldest movies based on the 'year' property?,Verbose query,recommendations
+List the 5 oldest actors based on the 'born' property.,Verbose query,recommendations
+Who are the top 5 youngest directors based on the 'born' property?,Verbose query,recommendations
+What are the top 5 movies with the highest budgets?,Verbose query,recommendations
+List the top 5 movies with the smallest budgets.,Verbose query,recommendations
+Which 5 actors have acted in movies with the highest average imdbRating?,Verbose query,recommendations
+Find the top 5 directors who have directed movies with the highest average imdbRating.,Verbose query,recommendations
+List the top 5 users who have given the highest average ratings to movies.,Verbose query,recommendations
+What are the top 5 questions with the highest number of favorites?,Simple Retrieval Queries,buzzoverflow
+List the first 3 questions that have been answered.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 questions with the highest score?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 users with the highest reputation.,Simple Retrieval Queries,buzzoverflow
+Which 5 questions have the most upVotes?,Simple Retrieval Queries,buzzoverflow
+List the first 3 tags that are associated with more than one question.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 most recent questions asked?,Simple Retrieval Queries,buzzoverflow
+Show the 3 questions with the most downVotes.,Simple Retrieval Queries,buzzoverflow
+Which 5 users have asked the most questions?,Simple Retrieval Queries,buzzoverflow
+List the first 3 questions that have not been answered yet.,Simple Retrieval Queries,buzzoverflow
+Which 5 questions have the lowest score?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions tagged with 'graphql'.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 users by image link?,Simple Retrieval Queries,buzzoverflow
+List the 3 questions with the highest number of downVotes that have been answered.,Simple Retrieval Queries,buzzoverflow
+Which 5 questions were created in the year 2020?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions asked by a user with a reputation over 2000.,Simple Retrieval Queries,buzzoverflow
+What are the 5 oldest questions in the database?,Simple Retrieval Queries,buzzoverflow
+List the first 3 questions with more than one tag.,Simple Retrieval Queries,buzzoverflow
+Which 5 questions have the lowest number of favorites?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 users who have asked a question about 'react-apollo'.,Simple Retrieval Queries,buzzoverflow
+What are the 5 most recent questions asked by users with a reputation under 1000?,Simple Retrieval Queries,buzzoverflow
+List the top 5 users who have never asked a question about 'node.js'.,Simple Retrieval Queries,buzzoverflow
+Find the top 3 questions with the most complex text content.,Simple Retrieval Queries,buzzoverflow
+What are the 5 questions with the shortest title?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions that have a link to an external site.,Simple Retrieval Queries,buzzoverflow
+List the 5 questions with the longest text content.,Simple Retrieval Queries,buzzoverflow
+Which 5 questions have titles containing the word 'error'?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions that have been answered and have more than 5 favorites.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 questions tagged with 'aws-lambda'?,Simple Retrieval Queries,buzzoverflow
+List the first 3 users with the least reputation who have asked a question.,Simple Retrieval Queries,buzzoverflow
+Find the 5 questions with the most tags.,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions that were asked by users with an image link containing 'googleusercontent'.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 questions by the number of total votes (upVotes and downVotes combined)?,Simple Retrieval Queries,buzzoverflow
+List the 3 questions with the most references to external links in their text.,Simple Retrieval Queries,buzzoverflow
+Which 5 users have the most distinct tags for questions they've asked?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions where the score is exactly zero.,Simple Retrieval Queries,buzzoverflow
+What are the 5 most recent questions with no favorites?,Simple Retrieval Queries,buzzoverflow
+List the first 3 tags that appear only once across all questions.,Simple Retrieval Queries,buzzoverflow
+Which 5 questions have text containing the word 'schema'?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions that have been answered and have a score less than zero.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 longest titles for questions in the database?,Simple Retrieval Queries,buzzoverflow
+List the first 3 questions asked by users with a display name starting with 'A'.,Simple Retrieval Queries,buzzoverflow
+Find the 5 most recent questions tagged 'graphql' that have been answered.,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions where the createdAt date is on a weekend.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 questions with exactly 3 tags?,Simple Retrieval Queries,buzzoverflow
+List the first 3 questions with a score greater than 5.,Simple Retrieval Queries,buzzoverflow
+Which 5 users have asked questions with the word 'variables' in the title?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions that have been linked in more than one answer.,Simple Retrieval Queries,buzzoverflow
+"What are the top 5 questions that were asked on a holiday (assuming holidays are January 1st, December 25th)?",Simple Retrieval Queries,buzzoverflow
+List the first 3 questions where the user asking has an id less than 5000.,Simple Retrieval Queries,buzzoverflow
+What are the first 3 questions asked by the user with a reputation of 65?,Complex Retrieval Queries,buzzoverflow
+List the top 5 most favorited questions.,Complex Retrieval Queries,buzzoverflow
+Which questions have been answered and have more than 2 upVotes?,Complex Retrieval Queries,buzzoverflow
+Find all questions tagged with 'aws-lambda' that have a negative score.,Complex Retrieval Queries,buzzoverflow
+What are the first 3 questions that have been downvoted at least 5 times?,Complex Retrieval Queries,buzzoverflow
+List the top 5 questions with the most upVotes that were created in 2020.,Complex Retrieval Queries,buzzoverflow
+Which user asked the question titled 'Playground is not loading with apollo-server-lambda'?,Complex Retrieval Queries,buzzoverflow
+Find all questions tagged 'react-apollo' that have not been answered.,Complex Retrieval Queries,buzzoverflow
+What are the top 3 most recent questions asked by users with a reputation over 100?,Complex Retrieval Queries,buzzoverflow
+List all questions that have 'GraphQL' mentioned in their text and are tagged with 'angular'.,Complex Retrieval Queries,buzzoverflow
+Which questions were asked by users with an image link containing 'googleusercontent'?,Complex Retrieval Queries,buzzoverflow
+What are the first 3 questions that were created on '2020-06-05' and have a score below zero?,Complex Retrieval Queries,buzzoverflow
+List the top 5 questions by users who have a link ending in 'alexandre'.,Complex Retrieval Queries,buzzoverflow
+Which questions have a title containing 'Apollo' and were created before 2020?,Complex Retrieval Queries,buzzoverflow
+Find all questions with more than 3 downVotes and tagged with 'node.js'.,Complex Retrieval Queries,buzzoverflow
+What are the first 3 questions that have a score of zero and no favorites?,Complex Retrieval Queries,buzzoverflow
+List the top 5 users by reputation who have asked a question about 'GraphQL'.,Complex Retrieval Queries,buzzoverflow
+Which user with the display name 'Stzl' asked a question with 'bad request' in the title?,Complex Retrieval Queries,buzzoverflow
+Find all questions with a 'createdAt' date in 2019 and exactly 0 upVotes.,Complex Retrieval Queries,buzzoverflow
+What are the first 3 questions asked by users with a display name starting with 'Alex'?,Complex Retrieval Queries,buzzoverflow
+List the top 5 questions with the highest number of downVotes.,Complex Retrieval Queries,buzzoverflow
+Which questions were asked by a user with an ID greater than 9000000?,Complex Retrieval Queries,buzzoverflow
+Find all questions that mention 'schema' in their text and have been tagged with 'aws-lambda'.,Complex Retrieval Queries,buzzoverflow
+What are the first 3 questions with a link containing 'stackoverflow' and more than 1 favorite?,Complex Retrieval Queries,buzzoverflow
+List the top 5 questions asked by users who have a reputation less than 100.,Complex Retrieval Queries,buzzoverflow
+Which questions have the text mentioning 'error' and were asked by a user with an image URL?,Complex Retrieval Queries,buzzoverflow
+Find all questions with a title containing 'Drupal' and tagged with 'react-apollo'.,Complex Retrieval Queries,buzzoverflow
+What are the first 3 questions that have a createdAt date on '2019-08-15' and have been answered?,Complex Retrieval Queries,buzzoverflow
+List the top 5 most recent questions with a score less than -3.,Complex Retrieval Queries,buzzoverflow
+Which user asked the most questions tagged with 'angular'?,Complex Retrieval Queries,buzzoverflow
+"Find all questions that have been answered, have a createdAt date in June 2020, and are tagged with 'node.js'.",Complex Retrieval Queries,buzzoverflow
+What are the top 5 questions with the highest number of favorites?,Simple Aggregation Queries,buzzoverflow
+List 3 questions that have been answered.,Simple Aggregation Queries,buzzoverflow
+Which 3 users have the highest reputation?,Simple Aggregation Queries,buzzoverflow
+Identify the top 5 questions with the most upVotes.,Simple Aggregation Queries,buzzoverflow
+Find the 3 most recent questions asked on the platform.,Simple Aggregation Queries,buzzoverflow
+Which 3 tags are most frequently used in questions?,Simple Aggregation Queries,buzzoverflow
+List the top 5 questions with the most downVotes.,Simple Aggregation Queries,buzzoverflow
+Show the top 3 users who have asked the most questions.,Simple Aggregation Queries,buzzoverflow
+What are the 3 most recent tags added to questions?,Simple Aggregation Queries,buzzoverflow
+List 3 questions with the lowest score.,Simple Aggregation Queries,buzzoverflow
+Which 3 questions have the most comments?,Simple Aggregation Queries,buzzoverflow
+Show the top 5 users by number of questions they have tagged.,Simple Aggregation Queries,buzzoverflow
+What are the top 3 questions with the shortest text length?,Simple Aggregation Queries,buzzoverflow
+Which 3 users have posted questions with no upVotes?,Simple Aggregation Queries,buzzoverflow
+Find the 3 questions with the longest title.,Simple Aggregation Queries,buzzoverflow
+Identify the top 5 questions that have not been answered yet.,Simple Aggregation Queries,buzzoverflow
+List 3 users who have never been downvoted on their questions.,Simple Aggregation Queries,buzzoverflow
+Which 3 questions were created first on the platform?,Simple Aggregation Queries,buzzoverflow
+Show the top 5 questions based on total vote count (upVotes plus downVotes).,Simple Aggregation Queries,buzzoverflow
+What are the 3 questions with the most negative score?,Simple Aggregation Queries,buzzoverflow
+Which 3 tags are associated with questions that have the highest favorites?,Simple Aggregation Queries,buzzoverflow
+List the 3 users who have asked questions with the most tags.,Simple Aggregation Queries,buzzoverflow
+Identify the top 5 questions with titles containing the word 'error'.,Simple Aggregation Queries,buzzoverflow
+Find the 3 users with the lowest reputation who have asked questions.,Simple Aggregation Queries,buzzoverflow
+Show the 3 questions with the longest link URLs.,Simple Aggregation Queries,buzzoverflow
+Which 3 questions have the most detailed (longest text) descriptions?,Simple Aggregation Queries,buzzoverflow
+List the top 5 most active users based on questions asked in the last year.,Simple Aggregation Queries,buzzoverflow
+What are the 3 oldest questions in terms of creation date?,Simple Aggregation Queries,buzzoverflow
+Identify 3 users who asked questions tagged with 'graphql'.,Simple Aggregation Queries,buzzoverflow
+Show the top 5 questions tagged with 'aws-lambda' by upVotes.,Simple Aggregation Queries,buzzoverflow
+Which 3 questions have the fewest favorites but have been answered?,Simple Aggregation Queries,buzzoverflow
+List the 3 tags used the least in the questions database.,Simple Aggregation Queries,buzzoverflow
+Find the top 5 users who asked questions most recently.,Simple Aggregation Queries,buzzoverflow
+What are the 3 questions with the most balanced vote ratio (closest upVotes to downVotes)?,Simple Aggregation Queries,buzzoverflow
+Which 3 users have the highest average score per question asked?,Simple Aggregation Queries,buzzoverflow
+List the 3 tags most frequently associated with unanswered questions.,Simple Aggregation Queries,buzzoverflow
+Identify the 3 users who have asked the most questions without any upVotes.,Simple Aggregation Queries,buzzoverflow
+Show the top 5 questions by the number of times they have been favorited.,Simple Aggregation Queries,buzzoverflow
+What are the 3 questions with the most references to external links in their text?,Simple Aggregation Queries,buzzoverflow
+Which 3 users have the highest rate of answered questions?,Simple Aggregation Queries,buzzoverflow
+Which users asked questions about GraphQL subscriptions?,Pathfinding Queries,buzzoverflow
+What are the top 5 questions with the most upvotes?,Pathfinding Queries,buzzoverflow
+List the first 3 tags associated with questions about GraphQL.,Pathfinding Queries,buzzoverflow
+Which questions were answered and have a score of 1 or more?,Pathfinding Queries,buzzoverflow
+Find all users who have asked more than one question.,Pathfinding Queries,buzzoverflow
+Which questions have been tagged with 'graphql-js' and have downvotes?,Pathfinding Queries,buzzoverflow
+What are the top 5 most recent questions asked by users with a reputation above 2000?,Pathfinding Queries,buzzoverflow
+How many questions have been tagged with 'aws-lambda'?,Pathfinding Queries,buzzoverflow
+List all the questions asked by users with an image link ending in 'identicon' and limit the results to the first 3.,Pathfinding Queries,buzzoverflow
+What are the titles of the questions that have not been answered yet and have a negative score?,Pathfinding Queries,buzzoverflow
+Who are the top 5 users by reputation who have asked a question about hierarchical data types in GraphQL?,Pathfinding Queries,buzzoverflow
+Which questions about GraphQL have been asked in June 2020?,Pathfinding Queries,buzzoverflow
+Identify the first 3 questions with zero favorites and at least one upvote.,Pathfinding Queries,buzzoverflow
+List the first 3 users who asked questions tagged with 'graphql-subscriptions'.,Pathfinding Queries,buzzoverflow
+"How many questions have a 'createdAt' date on or after June 5, 2020, and are tagged with 'graphql'?",Pathfinding Queries,buzzoverflow
+What are the links to the questions that have been answered and tagged with 'aws-lambda'?,Pathfinding Queries,buzzoverflow
+Which users have asked questions with a score of zero and have not been answered?,Pathfinding Queries,buzzoverflow
+List the top 5 questions that have the most downvotes.,Pathfinding Queries,buzzoverflow
+What are the titles of the first 3 questions with a score greater than or equal to 3?,Pathfinding Queries,buzzoverflow
+Which tags are associated with questions that have been downvoted at least once?,Pathfinding Queries,buzzoverflow
+Identify the tags of the first 3 questions asked by 'Christopher'.,Pathfinding Queries,buzzoverflow
+What are the first 3 questions asked by users with a reputation less than 500?,Pathfinding Queries,buzzoverflow
+Which questions were tagged with 'graphql' and have a link containing 'stackoverflow'?,Pathfinding Queries,buzzoverflow
+List the first 3 users who have asked questions with 'graphql' in the title.,Pathfinding Queries,buzzoverflow
+Which users asked questions that have been favorited at least once and limit the results to the first 3?,Pathfinding Queries,buzzoverflow
+Find all questions that have been both upvoted and downvoted.,Pathfinding Queries,buzzoverflow
+List the tags associated with questions asked in 2018.,Pathfinding Queries,buzzoverflow
+Which questions have a score of 1 and were created in 2017?,Pathfinding Queries,buzzoverflow
+Identify users who asked questions about GraphQL APIs and list the first 3.,Pathfinding Queries,buzzoverflow
+What are the top 5 questions with links including 'github' in their URL?,Pathfinding Queries,buzzoverflow
+Which questions were asked by users with a display name starting with 'A' and what are their titles?,Pathfinding Queries,buzzoverflow
+List the first 3 questions that have 'subscription' mentioned in their text.,Pathfinding Queries,buzzoverflow
+Which questions have been tagged with 'aws-lambda' and have an 'answered' status of true?,Pathfinding Queries,buzzoverflow
+What are the first 3 most recent questions tagged with 'graphql-js'?,Pathfinding Queries,buzzoverflow
+Identify the tags for questions that have a createdAt date in 2020 and limit the results to the first 3.,Pathfinding Queries,buzzoverflow
+Which users have asked questions that have not received any upvotes and limit the results to the first 3?,Pathfinding Queries,buzzoverflow
+List the first 3 questions with the most favorites and include their titles.,Pathfinding Queries,buzzoverflow
+What are the titles and links of the first 3 questions with exactly one downvote?,Pathfinding Queries,buzzoverflow
+Which questions have been asked by users with a reputation above 1000 and are tagged with 'graphql'?,Pathfinding Queries,buzzoverflow
+Identify the first 3 questions asked by users whose link includes 'stackoverflow' and have been answered.,Pathfinding Queries,buzzoverflow
+Which tags are associated with questions that have a createdAt date earlier than 2018?,Pathfinding Queries,buzzoverflow
+Which users have asked more than 5 questions?,Complex Aggregation Queries,buzzoverflow
+What are the top 5 most upvoted questions?,Complex Aggregation Queries,buzzoverflow
+List the first 3 tags associated with questions that have more than 10 downvotes.,Complex Aggregation Queries,buzzoverflow
+Which questions were tagged with 'react-apollo' and have a negative score?,Complex Aggregation Queries,buzzoverflow
+Find the top 5 users by reputation who have asked a question in 2020.,Complex Aggregation Queries,buzzoverflow
+What are the top 3 questions with the most favorites?,Complex Aggregation Queries,buzzoverflow
+List all users who have asked a question about 'graphql' according to the tags.,Complex Aggregation Queries,buzzoverflow
+Which questions have been asked by users with more than 2000 reputation and have scores less than 0?,Complex Aggregation Queries,buzzoverflow
+Show the first 3 questions asked by 'Christopher'.,Complex Aggregation Queries,buzzoverflow
+List the top 5 questions with the most favorites and have been answered.,Complex Aggregation Queries,buzzoverflow
+Which tags have been used more than twice in the database?,Complex Aggregation Queries,buzzoverflow
+Find the first 3 users who asked questions tagged with 'node.js'.,Complex Aggregation Queries,buzzoverflow
+What are the first 3 most recent questions asked on the platform?,Complex Aggregation Queries,buzzoverflow
+Show the top 5 questions with the highest score that were asked by users with a reputation under 500.,Complex Aggregation Queries,buzzoverflow
+Find the first 3 questions that have not been answered and have zero upvotes.,Complex Aggregation Queries,buzzoverflow
+List the top 5 users by number of questions they have asked.,Complex Aggregation Queries,buzzoverflow
+Which questions have more than 5 downvotes and are tagged with 'aws-lambda'?,Complex Aggregation Queries,buzzoverflow
+Identify the first 3 questions with a score of 0 or less that were asked by users with an image URL.,Complex Aggregation Queries,buzzoverflow
+Show the top 5 most downvoted questions.,Complex Aggregation Queries,buzzoverflow
+What are the first 3 questions that have been tagged with 'graphql' and have more than 1 favorite?,Complex Aggregation Queries,buzzoverflow
+List the top 5 questions with the most downvotes that were asked before 2019.,Complex Aggregation Queries,buzzoverflow
+Which users have asked questions that have not been answered and have a score less than -1?,Complex Aggregation Queries,buzzoverflow
+List the first 3 users who asked questions with more than 2 tags.,Complex Aggregation Queries,buzzoverflow
+Show the top 5 questions with the highest number of favorites that were asked by users with a link containing 'stackoverflow'.,Complex Aggregation Queries,buzzoverflow
+What are the first 3 most recent questions asked by users with a reputation over 10000?,Complex Aggregation Queries,buzzoverflow
+Which questions tagged with 'aws-lambda' have been asked by users with a reputation of more than 5000?,Complex Aggregation Queries,buzzoverflow
+Find the top 5 questions with the least favorites that have been answered.,Complex Aggregation Queries,buzzoverflow
+List the first 3 questions that have been asked by users without a profile image.,Complex Aggregation Queries,buzzoverflow
+Show the top 5 users who have asked the most questions with a negative score.,Complex Aggregation Queries,buzzoverflow
+What are the first 3 questions with a score greater than 3 and have been tagged with 'node.js'?,Complex Aggregation Queries,buzzoverflow
+List the top 3 most recent questions asked on the platform.,Verbose query,buzzoverflow
+What are the first 5 most upvoted questions tagged with 'graphql'?,Verbose query,buzzoverflow
+Who are the top 3 users by reputation who have asked a question about 'aws-lambda'?,Verbose query,buzzoverflow
+Find the first 5 questions with the most favorites that have been answered.,Verbose query,buzzoverflow
+Which top 5 users have asked the most questions?,Verbose query,buzzoverflow
+Identify the top 3 users who have posted the most downvoted questions.,Verbose query,buzzoverflow
+List the first 5 questions with scores less than zero.,Verbose query,buzzoverflow
+What are the 3 most recent questions asked by the user with the highest reputation?,Verbose query,buzzoverflow
+Find the top 5 users who have never asked a question that received a downvote.,Verbose query,buzzoverflow
+Show the first 3 questions that have been tagged with 'graphql' and have no upvotes.,Verbose query,buzzoverflow
+"What are the top 5 questions with the most comments, sorted by their creation date?",Verbose query,buzzoverflow
+List the first 3 users who asked a question in June 2020.,Verbose query,buzzoverflow
+Who are the top 5 users with the most questions associated with more than one tag?,Verbose query,buzzoverflow
+What are the first 3 questions with a title containing the word 'error' and have at least one upvote?,Verbose query,buzzoverflow
+Find the top 5 most downvoted questions that have been answered.,Verbose query,buzzoverflow
+Which 3 users have the highest average score per question asked?,Verbose query,buzzoverflow
+List the first 5 questions that have been tagged with 'aws-lambda' and have a positive score.,Verbose query,buzzoverflow
+What are the top 3 most recent questions asked by users with a display name starting with 'A'?,Verbose query,buzzoverflow
+Identify the top 5 questions with the highest number of favorites that have been asked in 2020.,Verbose query,buzzoverflow
+Show the first 5 users who have asked a question with a link containing 'github'.,Verbose query,buzzoverflow
+List the top 3 questions that have a creation date on a weekend.,Verbose query,buzzoverflow
+Find the first 5 questions that have been tagged with more than 3 tags.,Verbose query,buzzoverflow
+Who are the top 3 users who have asked questions with the most combined upvotes and downvotes?,Verbose query,buzzoverflow
+What are the first 5 questions with the longest text descriptions?,Verbose query,buzzoverflow
+Show the top 3 questions with the most severe negative score (lowest score).,Verbose query,buzzoverflow
+Identify the first 5 users who asked questions that were tagged with 'graphql' and answered within the same month.,Verbose query,buzzoverflow
+List the top 5 questions that were asked by users with an image link containing 'gravatar'.,Verbose query,buzzoverflow
+What are the first 3 questions with the shortest title length?,Verbose query,buzzoverflow
+Find the top 5 users who have asked questions with the most tags associated.,Verbose query,buzzoverflow
+Show the first 5 questions asked by users with no reputation points.,Verbose query,buzzoverflow
+List the top 3 questions tagged with 'aws-lambda' that have a score of zero or less.,Verbose query,buzzoverflow
+What are the labels of the top 5 users with the largest area?,Simple Retrieval Queries,bluesky
+Which 3 users have the smallest x values?,Simple Retrieval Queries,bluesky
+List the top 5 users by y-coordinate in ascending order.,Simple Retrieval Queries,bluesky
+Identify the 3 users with the highest size values.,Simple Retrieval Queries,bluesky
+Which 3 users have a color property of '#3CB371'?,Simple Retrieval Queries,bluesky
+List the top 5 users with the smallest area values.,Simple Retrieval Queries,bluesky
+What are the keys of the top 3 users with the largest x values?,Simple Retrieval Queries,bluesky
+Which users have an area greater than 5.0? Limit the results to the first 3.,Simple Retrieval Queries,bluesky
+Find 3 users whose y-coordinate is less than -5000.,Simple Retrieval Queries,bluesky
+Who are the top 5 users with a size less than 2.0?,Simple Retrieval Queries,bluesky
+What are the labels of 3 users who have interacted with the user labeled 'chromevoid.bsky.social'?,Simple Retrieval Queries,bluesky
+List the 3 users with the most interactions based on the weight of the INTERACTED relationship.,Simple Retrieval Queries,bluesky
+What are the top 3 heaviest INTERACTED relationships by ogWeight?,Simple Retrieval Queries,bluesky
+Find the keys of the top 5 users who have an INTERACTED relationship with a size greater than 0.1.,Simple Retrieval Queries,bluesky
+Who are the 3 users that have interacted the most frequently with others?,Simple Retrieval Queries,bluesky
+List the labels of users who have an INTERACTED relationship with a weight of 1. Limit to the first 3.,Simple Retrieval Queries,bluesky
+Identify the top 5 users by the color property '#FF4500'.,Simple Retrieval Queries,bluesky
+What are the areas of the top 3 users with a size greater than 3.0?,Simple Retrieval Queries,bluesky
+Which 3 users have the closest x-coordinate to 0?,Simple Retrieval Queries,bluesky
+List the top 5 users with y-coordinates within the range of 5000 to 6000.,Simple Retrieval Queries,bluesky
+What are the top 5 users with the largest area?,Complex Retrieval Queries,bluesky
+Which 3 users have the smallest size attribute?,Complex Retrieval Queries,bluesky
+List the top 5 users who have interacted with 'louisgray.com'.,Complex Retrieval Queries,bluesky
+Who are the 3 users with the highest y-coordinate values?,Complex Retrieval Queries,bluesky
+Find the top 5 users with 'color' attribute set to '#3CB371'.,Complex Retrieval Queries,bluesky
+What are the top 3 users by the smallest x-coordinate values?,Complex Retrieval Queries,bluesky
+List the 3 users who have interacted most frequently based on the 'weight' attribute of INTERACTED.,Complex Retrieval Queries,bluesky
+Which top 5 users have the most interactions?,Complex Retrieval Queries,bluesky
+Show 3 users who have a size greater than 2 and a color of '#FF7F50'.,Complex Retrieval Queries,bluesky
+Who are the top 5 users based on their area and size combined?,Complex Retrieval Queries,bluesky
+Find 3 users who have interacted with users having an area greater than 5.,Complex Retrieval Queries,bluesky
+Which 5 users have the least number of interactions?,Complex Retrieval Queries,bluesky
+List the top 3 users who have interacted with others but have a size less than 2.,Complex Retrieval Queries,bluesky
+Who are the top 5 users with x-coordinate values less than -5000?,Complex Retrieval Queries,bluesky
+Show the top 5 users with the most negative y-coordinate values.,Complex Retrieval Queries,bluesky
+Which 3 users have interacted with those having a 'color' attribute of '#FF4500'?,Complex Retrieval Queries,bluesky
+List the top 5 users who have a color attribute of '#4A708B' and size greater than 2.5.,Complex Retrieval Queries,bluesky
+Find the top 3 users who have a label containing 'bsky.social'.,Complex Retrieval Queries,bluesky
+Which 5 users have interacted with the most users with a size over 2?,Complex Retrieval Queries,bluesky
+Show 3 users who have interacted with users located at y-coordinate values greater than 10000.,Complex Retrieval Queries,bluesky
+List the top 5 users with the smallest area attribute.,Complex Retrieval Queries,bluesky
+Who are the top 5 users with the most interactions having a weight greater than 5?,Complex Retrieval Queries,bluesky
+Find the top 3 users interacted with by 'sarahp.bsky.social'.,Complex Retrieval Queries,bluesky
+Show the top 5 users who have interacted with users having a color of '#FF4500'.,Complex Retrieval Queries,bluesky
+Which 3 users have the largest size and a color of '#3CB371'?,Complex Retrieval Queries,bluesky
+List the top 5 users having the most interactions with a specific key in 'INTERACTED' relationship.,Complex Retrieval Queries,bluesky
+Find 3 users located at x-coordinate values greater than 10000.,Complex Retrieval Queries,bluesky
+Which top 5 users have interacted with those having a 'color' attribute of '#87CEFA'?,Complex Retrieval Queries,bluesky
+Show the top 3 users who have a label containing the word 'com'.,Complex Retrieval Queries,bluesky
+Who are the top 5 users based on the sum of their area and size attributes?,Complex Retrieval Queries,bluesky
+What are the top 5 users by the size property?,Simple Aggregation Queries,bluesky
+Which 3 users have an area greater than 5?,Simple Aggregation Queries,bluesky
+List 3 users who have interacted with 'chromevoid.bsky.social'.,Simple Aggregation Queries,bluesky
+Who are the top 5 users sorted by the x-coordinate in ascending order?,Simple Aggregation Queries,bluesky
+Identify the top 3 users with the smallest y-coordinate values.,Simple Aggregation Queries,bluesky
+Which users have a color of '#3CB371' and an area less than 3? Limit to 5 results.,Simple Aggregation Queries,bluesky
+Find 3 users who have interacted with users having a color of '#FF4500'.,Simple Aggregation Queries,bluesky
+What are the top 5 users in terms of size who have been interacted with the most?,Simple Aggregation Queries,bluesky
+List the top 3 users with the largest area who have an interaction weight of 1.,Simple Aggregation Queries,bluesky
+Show 3 users who have interacted with users located at x-coordinates greater than -500.,Simple Aggregation Queries,bluesky
+What are the top 5 users who have interacted with others at y-coordinates less than 0?,Simple Aggregation Queries,bluesky
+Display the first 3 users with x-coordinates less than -5000.,Simple Aggregation Queries,bluesky
+Who are the top 3 users with a size greater than 2 and have interacted with users with a size greater than 2?,Simple Aggregation Queries,bluesky
+List 5 users who have the color '#1E90FF' and have interacted with users with a color of '#3CB371'.,Simple Aggregation Queries,bluesky
+Find 3 users with an x-coordinate greater than -1000 and who have interacted with users with an x-coordinate less than -5000.,Simple Aggregation Queries,bluesky
+Who are the top 3 users by y-coordinate that have interacted with users with a y-coordinate more than 10000?,Simple Aggregation Queries,bluesky
+List the 3 users who have the highest interaction size and are colored '#FF4500'.,Simple Aggregation Queries,bluesky
+Display 5 users who have a y-coordinate greater than 5000 and have interacted with users with a y-coordinate less than -5000.,Simple Aggregation Queries,bluesky
+Identify the top 5 users based on the interaction weight who have a color of '#4A708B'.,Simple Aggregation Queries,bluesky
+List the first 3 users who have an area greater than 4 and have interacted with users with an area less than 3.,Simple Aggregation Queries,bluesky
+Which users have interacted with 'curvylliptic.bsky.social'?,Pathfinding Queries,bluesky
+List the top 5 users by area size who have relations with 'vtcodes.dev'.,Pathfinding Queries,bluesky
+What are the first 3 colors of users interacted by 'r0yart.bsky.social'?,Pathfinding Queries,bluesky
+Which users have an interaction weight of 1 with 'tagomoris.bsky.social'?,Pathfinding Queries,bluesky
+Find the users who have a size greater than 2 and have interacted with 'sarahgerrard.me'.,Pathfinding Queries,bluesky
+Show the users with an x-coordinate less than -5000 who have interacted with any user.,Pathfinding Queries,bluesky
+Which users have an area less than 3 and have interacted with 'inchristbl.bsky.social'?,Pathfinding Queries,bluesky
+List all interactions with a size less than 2 between users.,Pathfinding Queries,bluesky
+What are the x and y coordinates of the first 3 users who interacted with 'dwither.bsky.social'?,Pathfinding Queries,bluesky
+Show the interaction relationships of 'vtcodes.dev' where the interaction size is greater than 0.5.,Pathfinding Queries,bluesky
+What are the labels of the top 5 users with the largest interaction size in their relationships?,Pathfinding Queries,bluesky
+Which users have interacted with users having a color '#3CB371'?,Pathfinding Queries,bluesky
+List all interactions where the original weight (ogWeight) is greater than the current weight.,Pathfinding Queries,bluesky
+Find the users with a y-coordinate greater than 5000 and have interacted with at least two other users.,Pathfinding Queries,bluesky
+What are the top 5 user interactions based on the interaction weight in descending order?,Pathfinding Queries,bluesky
+Which users have interacted with a user located at x-coordinate less than -10000?,Pathfinding Queries,bluesky
+List the users who have interacted with users having an area exactly 4.94.,Pathfinding Queries,bluesky
+Show the interaction details of users with a label containing 'social' and have a size greater than 1.5.,Pathfinding Queries,bluesky
+What are the first 3 user labels who have interacted with 'sarahgerrard.me' and have a color '#7EC0EE'?,Pathfinding Queries,bluesky
+Which users have an interaction key 'geid_68_0' and have interacted with 'vtcodes.dev'?,Pathfinding Queries,bluesky
+Identify the users who have interacted with users located at y-coordinate less than -5000.,Pathfinding Queries,bluesky
+Find all users who have interacted with 'dwither.bsky.social' and have a size of 3.25.,Pathfinding Queries,bluesky
+List the interactions of users whose labels start with 'r' and have interacted with users of size greater than 2.,Pathfinding Queries,bluesky
+Show the first 3 users based on the descending order of their x-coordinate who have interacted at least once.,Pathfinding Queries,bluesky
+What are the top 5 interactions with the largest area difference between interacting users?,Pathfinding Queries,bluesky
+Which users have interacted with users having a blue color code?,Complex Aggregation Queries,bluesky
+Find the top 5 users with the largest area who have interacted with others.,Complex Aggregation Queries,bluesky
+List the first 3 users by size who have not interacted with any other user.,Complex Aggregation Queries,bluesky
+What are the unique color codes used by users who have interacted with at least one other user?,Complex Aggregation Queries,bluesky
+Identify users who have a label containing 'bsky' and have interacted with users with a label containing 'dev'.,Complex Aggregation Queries,bluesky
+Which users have interacted with users located at a y-coordinate greater than 10000?,Complex Aggregation Queries,bluesky
+What is the average weight of interactions for users who have interacted more than 5 times?,Complex Aggregation Queries,bluesky
+Find users who have interacted with more than three different users.,Complex Aggregation Queries,bluesky
+List users who have a green color code and have interacted with users having a red color code.,Complex Aggregation Queries,bluesky
+Show the relationship properties for interactions between users with an area greater than 3.0.,Complex Aggregation Queries,bluesky
+What are the average x and y coordinates of users who have interacted with users with a size smaller than 2?,Complex Aggregation Queries,bluesky
+Display the top 5 users with the highest ogWeight in their interactions.,Complex Aggregation Queries,bluesky
+Retrieve the first 3 users with the smallest x-coordinate values who have interacted with others.,Complex Aggregation Queries,bluesky
+Who are the users with the top 5 highest y-coordinate values and have at least one interaction?,Complex Aggregation Queries,bluesky
+List the users who have interacted and have a color code of '#FF4500'.,Complex Aggregation Queries,bluesky
+What are the most common interaction weights among users who have interacted with more than two different users?,Complex Aggregation Queries,bluesky
+Find the top 3 users with the greatest number of interactions.,Complex Aggregation Queries,bluesky
+Identify users who have interacted with someone and have an area size of exactly 2.6.,Complex Aggregation Queries,bluesky
+Show the ogWeight and weight properties for interactions involving users with a label containing 'social'.,Complex Aggregation Queries,bluesky
+List the interactions among the first 5 users with the largest size values.,Complex Aggregation Queries,bluesky
+"Which users have a color property of ""#3CB371""? Please list the top 5.",Verbose query,bluesky
+Identify the top 5 users with an area property greater than 4.0.,Verbose query,bluesky
+What are the first 3 users with a size property less than 2.0?,Verbose query,bluesky
+"List the top 5 users who interacted with a user whose color property is ""#1E90FF"".",Verbose query,bluesky
+Can you find 5 users who have interacted with others more than once?,Verbose query,bluesky
+Provide the labels of the top 5 users with an x property value between -5000 and 0.,Verbose query,bluesky
+What are the first 3 users with a y property value greater than 10000?,Verbose query,bluesky
+List the top 5 users who have an interaction weight greater than 5.,Verbose query,bluesky
+Find all users who have interacted with 'vtcodes.dev'. List the top 5.,Verbose query,bluesky
+Who are the top 5 users that have interacted with someone with an area larger than 3.0?,Verbose query,bluesky
+Which users have interacted with 'sarahgerrard.me'? Present the first 5.,Verbose query,bluesky
+Display the labels of 5 users who have an interaction size of 0.2.,Verbose query,bluesky
+Identify the first 5 users who have interacted with a user labeled 'dwither.bsky.social'.,Verbose query,bluesky
+List the top 5 users based on their size property in descending order.,Verbose query,bluesky
+What are the top 5 users with the smallest y property value?,Verbose query,bluesky
+Which users have a label including 'social' and an area more than 2.0? List the top 5.,Verbose query,bluesky
+Display the first 3 users who have interacted with someone located at y values less than -5000.,Verbose query,bluesky
+Identify the first 5 users with an interaction ogWeight of 1.,Verbose query,bluesky
+What are the top 5 users who interacted with others having a color '#FF4500'?,Verbose query,bluesky
+List the first 3 users with the largest area property.,Verbose query,bluesky
+List the top 5 organizations where the number of employees is greater than 1000.,Simple Retrieval Queries,companies
+Who are the CEOs of the first 3 public companies?,Simple Retrieval Queries,companies
+Find the top 5 articles with the highest sentiment score.,Simple Retrieval Queries,companies
+Which cities are home to organizations that have more than 500 employees?,Simple Retrieval Queries,companies
+List the first 3 organizations dissolved and their cities.,Simple Retrieval Queries,companies
+Who are the board members of the first 5 organizations listed by revenue in descending order?,Simple Retrieval Queries,companies
+Find the top 3 countries with the most cities hosting public organizations.,Simple Retrieval Queries,companies
+Which organizations have 'Accenture' as an investor?,Simple Retrieval Queries,companies
+List the names of the first 3 organizations that are competitors of 'Accenture'.,Simple Retrieval Queries,companies
+List the top 3 industries mentioned in articles about 'Accenture'.,Simple Retrieval Queries,companies
+What are the names of the first 3 cities that have organizations with more than 100 employees?,Simple Retrieval Queries,companies
+Who are the authors of the first 5 articles that mention any organization headquartered in 'Seattle'?,Simple Retrieval Queries,companies
+List the names of the first 3 organizations that have subsidiaries.,Simple Retrieval Queries,companies
+Which organizations have the highest number of subsidiaries and what are their names?,Simple Retrieval Queries,companies
+List the first 3 organizations mentioned in articles published in 2022.,Simple Retrieval Queries,companies
+Find the top 5 organizations by revenue that are not dissolved.,Simple Retrieval Queries,companies
+List the top 3 people who are investors in more than one organization.,Simple Retrieval Queries,companies
+Which organizations have a public status and are located in cities within the 'United States of America'?,Simple Retrieval Queries,companies
+Who are the first 3 persons mentioned as CEOs of organizations in the technology industry?,Simple Retrieval Queries,companies
+List the top 3 most recent articles about organizations in the 'Electronic Products Manufacturers' industry.,Simple Retrieval Queries,companies
+What are the titles of the first 5 articles that mention organizations in 'Rome'?,Simple Retrieval Queries,companies
+List the names of the first 3 organizations that have suppliers.,Simple Retrieval Queries,companies
+Which organizations are based in cities that are part of a country with the summary containing 'North America'?,Simple Retrieval Queries,companies
+List the first 3 organizations that were dissolved but mentioned in recent articles.,Simple Retrieval Queries,companies
+List the first 3 organizations that have a revenue greater than $100 million but fewer than 500 employees.,Simple Retrieval Queries,companies
+Who are the first 3 board members of organizations that are public?,Simple Retrieval Queries,companies
+What are the names of the first 3 organizations with the most competitors?,Simple Retrieval Queries,companies
+List the first 3 organizations that have a city as their headquarters and are also public.,Simple Retrieval Queries,companies
+Find the first 3 people who have the role of CEO in more than one organization.,Simple Retrieval Queries,companies
+List the names and IDs of the top 5 cities by the number of public organizations located in them.,Simple Retrieval Queries,companies
+Who are the authors of the first 3 articles that negatively mention any organization?,Simple Retrieval Queries,companies
+List the names of the first 3 organizations that have had articles with a sentiment higher than 0.8.,Simple Retrieval Queries,companies
+Which organizations have been mentioned in articles dated before 2020?,Simple Retrieval Queries,companies
+List the first 3 organizations that have more than one investor.,Simple Retrieval Queries,companies
+What are the names of the first 3 organizations that have a motto containing 'world'?,Simple Retrieval Queries,companies
+List the first 3 organizations that are suppliers to more than one organization.,Simple Retrieval Queries,companies
+Which people are board members in organizations with more than 1000 employees?,Simple Retrieval Queries,companies
+What are the names of the first 3 organizations and their CEOs where the organization is not public?,Simple Retrieval Queries,companies
+List the first 3 cities that have more than three organizations based in them.,Simple Retrieval Queries,companies
+Who are the first 3 authors of articles mentioning organizations with revenues over $50 million?,Simple Retrieval Queries,companies
+List the top 3 cities where organizations are based that have at least 100 employees.,Complex Retrieval Queries,companies
+Which organizations have a revenue greater than $50 million and are not dissolved?,Complex Retrieval Queries,companies
+Find all organizations that are public and have a CEO named 'Julie Spellman Sweet'.,Complex Retrieval Queries,companies
+What are the names of the top 5 organizations with the most employees?,Complex Retrieval Queries,companies
+Identify the top 3 articles with the highest sentiment that mention a public organization.,Complex Retrieval Queries,companies
+Who are the CEOs of organizations that have subsidiaries?,Complex Retrieval Queries,companies
+List all organizations with the word 'Energy' in their name and their corresponding industry categories.,Complex Retrieval Queries,companies
+Which countries have cities that are home to more than three organizations?,Complex Retrieval Queries,companies
+Which organizations are competitors of the 'New Energy Group'?,Complex Retrieval Queries,companies
+Find the top 3 organizations that have a motto and are located in Seattle.,Complex Retrieval Queries,companies
+What articles published in 2022 mention organizations based in Rome?,Complex Retrieval Queries,companies
+List the names and titles of articles mentioning organizations that have been dissolved.,Complex Retrieval Queries,companies
+Who are the board members of organizations with more than 300 employees?,Complex Retrieval Queries,companies
+Find the organizations that are suppliers to 'New Energy Group' and their number of employees.,Complex Retrieval Queries,companies
+Which organizations have an investor named 'David Correa'?,Complex Retrieval Queries,companies
+Identify organizations that are both suppliers and investors to other organizations.,Complex Retrieval Queries,companies
+List the names and summaries of articles that mention organizations with a revenue of at least $1 million.,Complex Retrieval Queries,companies
+Which organizations have a CEO with the summary 'CEO at Accenture'?,Complex Retrieval Queries,companies
+"Find the top 5 organizations with a summary containing 'based in Dublin, Ireland'.",Complex Retrieval Queries,companies
+Which organizations have subsidiaries and are located in countries outside the United States?,Complex Retrieval Queries,companies
+Which organizations are public and have more than 300 employees?,Simple Aggregation Queries,companies
+List the top 5 organizations by revenue that are based in Rome.,Simple Aggregation Queries,companies
+What are the names of the organizations dissolved and were founded in Sydney?,Simple Aggregation Queries,companies
+Which organizations have a revenue greater than 100 million and are not public?,Simple Aggregation Queries,companies
+Who are the CEOs of organizations that have subsidiaries?,Simple Aggregation Queries,companies
+Which organizations are competitors of 'New Energy Group'?,Simple Aggregation Queries,companies
+List the cities where organizations with more than 500 employees are based.,Simple Aggregation Queries,companies
+Which organizations have 'Electronic Products Manufacturers' as their industry category?,Simple Aggregation Queries,companies
+What are the names of organizations that have suppliers also mentioned in articles?,Simple Aggregation Queries,companies
+Which organizations have a motto and are based in cities in the United States?,Simple Aggregation Queries,companies
+List the top 5 articles by sentiment that mention organizations based in California.,Simple Aggregation Queries,companies
+Which articles published in 2022 mention organizations with more than 100 employees?,Simple Aggregation Queries,companies
+List the articles that mention both public and private organizations.,Simple Aggregation Queries,companies
+Which organizations have foreign investors (investors from a different country)?,Simple Aggregation Queries,companies
+List the organizations that have a CEO named 'Julie Spellman Sweet'.,Simple Aggregation Queries,companies
+Who are the board members of organizations that have more than 1000 employees?,Simple Aggregation Queries,companies
+Which organizations have their headquarters in a city that is also the country's capital?,Simple Aggregation Queries,companies
+List the organizations that are mentioned in the most articles.,Simple Aggregation Queries,companies
+Which organizations have a revenue decrease mentioned in any articles?,Simple Aggregation Queries,companies
+Who are the children of persons who are CEOs of public organizations?,Simple Aggregation Queries,companies
+List the organizations that are investors in more than one other organization.,Simple Aggregation Queries,companies
+Which organizations have subsidiaries in more than three different cities?,Simple Aggregation Queries,companies
+List the persons who are both investors and board members in the same organization.,Simple Aggregation Queries,companies
+Which organizations have changed their CEO in the last 5 years according to articles?,Simple Aggregation Queries,companies
+List the organizations that have a summary mentioning 'software' and are in the tech industry category.,Simple Aggregation Queries,companies
+Which organizations have a parent organization with a higher revenue?,Simple Aggregation Queries,companies
+List the top 5 cities by the number of organizations based there.,Simple Aggregation Queries,companies
+Which organizations have a CEO who has written an article?,Simple Aggregation Queries,companies
+List the organizations that have been mentioned in articles about environmental issues.,Simple Aggregation Queries,companies
+Which organizations are involved in legal disputes according to articles?,Simple Aggregation Queries,companies
+Who are the investors in organizations that have a motto mentioning 'innovation'?,Simple Aggregation Queries,companies
+List the organizations that have a subsidiary that was dissolved.,Simple Aggregation Queries,companies
+Which organizations have a supplier based in a different country?,Simple Aggregation Queries,companies
+List the organizations that have more than three competitors.,Simple Aggregation Queries,companies
+Which CEOs have led an organization for more than 10 years?,Simple Aggregation Queries,companies
+List articles that mention organizations headquartered in Seattle.,Simple Aggregation Queries,companies
+Which organizations have a female CEO and are in the healthcare industry category?,Simple Aggregation Queries,companies
+List the organizations that have undergone a merger or acquisition according to articles.,Simple Aggregation Queries,companies
+Which organizations have a CEO who has authored more than three articles?,Simple Aggregation Queries,companies
+List organizations that have a philanthropic foundation as an investor.,Simple Aggregation Queries,companies
+Which organizations are based in cities with a population of more than one million people according to city summaries?,Simple Aggregation Queries,companies
+Which organizations have Julie Spellman Sweet as their CEO?,Simple Retrieval Queries,companies
+List the top 3 cities where organizations with a revenue of more than 100 million are located.,Simple Retrieval Queries,companies
+What are the names of the first 5 organizations dissolved and publicly traded?,Simple Retrieval Queries,companies
+Who are the board members of New Energy Group?,Simple Retrieval Queries,companies
+Can you name 3 people who are both investors and CEOs of different organizations?,Simple Retrieval Queries,companies
+What are the industry categories for the first 5 organizations with more than 100 employees?,Simple Retrieval Queries,companies
+List the countries where the top 5 organizations by revenue are based.,Simple Retrieval Queries,companies
+What are the top 3 most recent articles mentioning Deja vu Security?,Simple Retrieval Queries,companies
+Who are the children of Julie Spellman Sweet?,Simple Retrieval Queries,companies
+List the first 3 subsidiaries of Accenture.,Simple Retrieval Queries,companies
+What are the first 3 companies that are competitors of New Energy Group?,Simple Retrieval Queries,companies
+Which organizations have a sentiment score higher than 0.8 in their latest article?,Simple Retrieval Queries,companies
+List the top 5 suppliers of Accenture.,Simple Retrieval Queries,companies
+What are the names of the first 3 organizations with a motto?,Simple Retrieval Queries,companies
+Which organizations have more than 500 employees and are located in Seattle?,Simple Retrieval Queries,companies
+Name 3 organizations mentioned in articles written by David Correa.,Simple Retrieval Queries,companies
+Which countries are mentioned in the latest 5 articles about organizations in the electronic products industry?,Simple Retrieval Queries,companies
+Name the first 3 cities in which organizations with more than 1000 employees are located.,Simple Retrieval Queries,companies
+Who are the first 3 people mentioned as board members in organizations headquartered in the United States of America?,Simple Retrieval Queries,companies
+List the first 3 articles mentioning organizations with a revenue less than 5 million.,Simple Retrieval Queries,companies
+What are the names of the first 3 organizations that have the same investor?,Simple Retrieval Queries,companies
+Which organizations have subsidiaries and are located in Paris?,Simple Retrieval Queries,companies
+What are the top 3 industries with the most organizations in them?,Simple Retrieval Queries,companies
+Who are the first 3 CEOs of organizations that are dissolved?,Simple Retrieval Queries,companies
+Which cities are the headquarters for the top 5 organizations by number of employees?,Simple Retrieval Queries,companies
+Name the first 3 organizations that have investments from Julie Spellman Sweet.,Simple Retrieval Queries,companies
+List the first 3 countries where organizations with a public status are located.,Simple Retrieval Queries,companies
+What are the names of the first 3 organizations that have been dissolved but still mentioned in recent articles?,Simple Retrieval Queries,companies
+Who are the parents of the first 3 persons listed as CEOs in publicly traded companies?,Simple Retrieval Queries,companies
+Which organizations are mentioned in articles with a sentiment higher than 0.5 and are based in Belgium?,Simple Retrieval Queries,companies
+Which organizations have a CEO named 'Julie Spellman Sweet'?,Complex Retrieval Queries,companies
+List the top 5 industries where the organizations are based in 'Seattle'.,Complex Retrieval Queries,companies
+What are the names of the first 3 organizations dissolved and have revenue greater than 10000000?,Complex Retrieval Queries,companies
+Identify the first 3 organizations that are public and have more than 1000 employees.,Complex Retrieval Queries,companies
+Who are the board members of 'New Energy Group'?,Complex Retrieval Queries,companies
+List the top 3 cities where 'Electronic Products Manufacturers' organizations are located.,Complex Retrieval Queries,companies
+Which 5 articles mention 'Accenture' and have a sentiment score above 0.8?,Complex Retrieval Queries,companies
+Find the top 5 organizations that are competitors of 'Accenture'.,Complex Retrieval Queries,companies
+What are the names of the first 3 people who are investors in organizations based in 'Seattle'?,Complex Retrieval Queries,companies
+Which articles about 'New Energy Group' were published after 2020-01-01?,Complex Retrieval Queries,companies
+Who are the first 3 CEOs of public organizations?,Complex Retrieval Queries,companies
+List the first 3 organizations mentioned in articles authored by 'David Correa'.,Complex Retrieval Queries,companies
+What are the names of the organizations that have 'Icon Integration' as a subsidiary?,Complex Retrieval Queries,companies
+Which organizations have more than 50 employees and are in the 'Software' industry?,Complex Retrieval Queries,companies
+What are the first 3 organizations that have subsidiaries and more than 500 employees?,Complex Retrieval Queries,companies
+Who are the first 3 board members of organizations with more than 100 million in revenue?,Complex Retrieval Queries,companies
+Which cities host organizations that are public and have a CEO named 'Julie Spellman Sweet'?,Complex Retrieval Queries,companies
+Identify the top 3 countries with the most organizations in the 'Electronic Products Manufacturers' category.,Complex Retrieval Queries,companies
+Which 3 organizations have been dissolved and are mentioned in articles with a sentiment score below 0.5?,Complex Retrieval Queries,companies
+List the first 3 articles that mention any organization with more than 1000 employees and are written after 2021-01-01.,Complex Retrieval Queries,companies
+Who are the children of 'Julie Spellman Sweet' listed as 'Person' nodes?,Complex Retrieval Queries,companies
+Find the top 5 parent persons of CEOs of organizations with revenues exceeding 100 million.,Complex Retrieval Queries,companies
+Which organizations have a motto containing 'security' and have a CEO named 'Julie Spellman Sweet'?,Complex Retrieval Queries,companies
+List the first 3 articles that have chunks containing the text 'consumer behavior'.,Complex Retrieval Queries,companies
+Who are the first 3 investors in 'Accenture' and what other organizations do they invest in?,Complex Retrieval Queries,companies
+What are the names of organizations with more than 500 employees and have been mentioned in articles with high sentiment scores?,Complex Retrieval Queries,companies
+Which 3 organizations are suppliers to 'New Energy Group' and are based in 'United States of America'?,Complex Retrieval Queries,companies
+List the top 3 CEOs of organizations that are subsidiaries of 'Accenture'.,Complex Retrieval Queries,companies
+Identify the first 3 organizations that have the same investor and are competitors.,Complex Retrieval Queries,companies
+Which 3 organizations have the most subsidiaries within the same country?,Complex Retrieval Queries,companies
+Find the first 3 organizations that have a public status and are in the 'Technology' industry category.,Complex Retrieval Queries,companies
+Who are the first 3 competitors of organizations with more than 1 billion in revenue?,Complex Retrieval Queries,companies
+List the first 3 articles that mention 'Seattle' based organizations and have a sentiment score above 0.7.,Complex Retrieval Queries,companies
+Which organizations have CEOs who are also board members of other organizations?,Complex Retrieval Queries,companies
+Identify the top 3 cities where the headquarters of organizations with more than 1000 employees are located.,Complex Retrieval Queries,companies
+List the first 3 organizations that have the highest revenue and are not dissolved.,Complex Retrieval Queries,companies
+Which organizations have subsidiaries named 'SuccessFactors'?,Complex Retrieval Queries,companies
+Find the first 3 organizations that have been mentioned in articles by 'MrWeb' site.,Complex Retrieval Queries,companies
+Which organizations based in 'United States of America' have more than 10000 employees?,Complex Retrieval Queries,companies
+List the top 3 organizations that have a CEO and are mentioned in the latest articles.,Complex Retrieval Queries,companies
+Identify the first 3 organizations that have more than one industry category associated with them.,Complex Retrieval Queries,companies
+Who are the first 3 children of CEOs of organizations with more than 500 million in revenue?,Complex Retrieval Queries,companies
+List the first 3 organizations that have a motto and are public.,Complex Retrieval Queries,companies
+Which organizations have investors named 'Julie Spellman Sweet'?,Complex Retrieval Queries,companies
+Find the first 3 organizations that have been mentioned in articles related to 'consumer behavior' and have a sentiment score above 0.6.,Complex Retrieval Queries,companies
+Which organizations are based in 'Seattle' and have a revenue less than 5000000?,Complex Retrieval Queries,companies
+List the first 3 organizations that have a dissolved status and are mentioned in articles authored by 'David Correa'.,Complex Retrieval Queries,companies
+Identify the top 3 organizations that have a public status and are in the 'Healthcare' industry category.,Complex Retrieval Queries,companies
+Who are the first 3 CEOs of organizations that have been mentioned in the most articles?,Complex Retrieval Queries,companies
+List the first 3 articles that mention organizations with CEOs named 'Julie Spellman Sweet' and have a sentiment score above 0.75.,Complex Retrieval Queries,companies
+Which organizations based in 'United States of America' have a CEO named 'Julie Spellman Sweet' and are not dissolved?,Complex Retrieval Queries,companies
+Find the first 3 organizations that have a supplier named 'Icon Integration'.,Complex Retrieval Queries,companies
+Identify the first 3 articles where the organizations mentioned have more than 50 employees.,Complex Retrieval Queries,companies
+Who are the first 3 board members of organizations based in 'Italy'?,Complex Retrieval Queries,companies
+List the top 3 organizations that have been mentioned in articles with a sentiment score below 0.3.,Complex Retrieval Queries,companies
+Which organizations have more than 1000 employees and are in the 'Finance' industry?,Complex Retrieval Queries,companies
+List the first 3 organizations with the highest number of employees that are not public.,Complex Retrieval Queries,companies
+Which organizations have CEOs named 'Julie Spellman Sweet' and are in the 'Software' industry?,Complex Retrieval Queries,companies
+Find the first 3 organizations that have been mentioned in articles authored by 'James Blackman'.,Complex Retrieval Queries,companies
+Identify the top 3 cities with the most organizations in the 'Electronic Products Manufacturers' category.,Complex Retrieval Queries,companies
+Who are the first 3 competitors of organizations named 'Accenture'?,Complex Retrieval Queries,companies
+List the 3 most recent articles mentioning any organization with a CEO named 'Julie Spellman Sweet'.,Complex Retrieval Queries,companies
+Which organizations based in 'Seattle' have a CEO named 'Julie Spellman Sweet' and have a public status?,Complex Retrieval Queries,companies
+Find the top 3 organizations that have subsidiaries in more than one country.,Complex Retrieval Queries,companies
+Identify the first 3 organizations that have a CEO and are mentioned in articles with a low sentiment score.,Complex Retrieval Queries,companies
+Who are the first 3 investors in organizations that have a revenue greater than 500 million?,Complex Retrieval Queries,companies
+List the first 3 organizations with CEOs who have been mentioned in multiple articles.,Complex Retrieval Queries,companies
+Which organizations have investors from 'Seattle'?,Complex Retrieval Queries,companies
+Find the first 3 articles that mention organizations in the 'Healthcare' industry with a high sentiment score.,Complex Retrieval Queries,companies
+Identify the top 3 organizations that have a public status and are based in 'Italy'.,Complex Retrieval Queries,companies
+List the first 3 organizations with the most board members.,Complex Retrieval Queries,companies
+Which organizations have a CEO named 'Julie Spellman Sweet' and are based in 'Italy'?,Complex Retrieval Queries,companies
+Find the first 3 articles mentioning organizations with a CEO named 'Julie Spellman Sweet' and a revenue above 500 million.,Complex Retrieval Queries,companies
+Identify the top 3 organizations that have been dissolved and are mentioned in high sentiment articles.,Complex Retrieval Queries,companies
+Who are the first 3 CEOs of organizations that have subsidiaries and a revenue above 1 billion?,Complex Retrieval Queries,companies
+List the first 3 articles mentioning organizations with more than 500 employees and a low sentiment score.,Complex Retrieval Queries,companies
+Which organizations have a revenue above 1 billion and are in the 'Technology' industry?,Complex Retrieval Queries,companies
+Find the first 3 organizations that have a CEO named 'Julie Spellman Sweet' and are based in 'Seattle'.,Complex Retrieval Queries,companies
+Identify the top 3 organizations that have a CEO and are based in 'New York City'.,Complex Retrieval Queries,companies
+Who are the first 3 board members of organizations with revenues less than 5000000?,Complex Retrieval Queries,companies
+List the first 3 organizations that have been mentioned in articles with a sentiment score above 0.9.,Complex Retrieval Queries,companies
+Which organizations have a CEO named 'Julie Spellman Sweet' and have subsidiaries named 'Icon Integration'?,Complex Retrieval Queries,companies
+Find the first 3 organizations based in 'Seattle' that have a public status and are not dissolved.,Complex Retrieval Queries,companies
+Identify the first 3 organizations that have a subsidiary and a CEO named 'Julie Spellman Sweet'.,Complex Retrieval Queries,companies
+Who are the first 3 investors in organizations with less than 50 employees?,Complex Retrieval Queries,companies
+List the top 3 organizations that have a CEO and have been mentioned in the most recent articles.,Complex Retrieval Queries,companies
+Which organizations based in 'United States of America' have a revenue less than 10 million?,Complex Retrieval Queries,companies
+Find the first 3 organizations that have CEOs named 'Julie Spellman Sweet' and are mentioned in articles with a sentiment score above 0.5.,Complex Retrieval Queries,companies
+Identify the first 3 organizations that have the same investor and are based in 'Italy'.,Complex Retrieval Queries,companies
+Who are the first 3 competitors of organizations with a CEO named 'Julie Spellman Sweet'?,Complex Retrieval Queries,companies
+List the first 3 organizations based in 'Italy' that have a CEO and are public.,Complex Retrieval Queries,companies
+Which organizations have more than 1000 employees and are mentioned in articles with a sentiment score below 0.5?,Complex Retrieval Queries,companies
+Find the first 3 organizations based in 'Seattle' that have been mentioned in articles authored by 'David Correa'.,Complex Retrieval Queries,companies
+Identify the top 3 organizations that have more than 100 employees and are subsidiaries of 'Accenture'.,Complex Retrieval Queries,companies
+Who are the first 3 board members of organizations with a CEO named 'Julie Spellman Sweet' and a revenue above 500 million?,Complex Retrieval Queries,companies
+List the first 3 organizations that have a public status and more than 500 employees.,Complex Retrieval Queries,companies
+Which organizations have a CEO named 'Julie Spellman Sweet' and have been mentioned in articles with a sentiment score above 0.8?,Complex Retrieval Queries,companies
+Find the first 3 organizations based in 'Italy' that have a public status and are not dissolved.,Complex Retrieval Queries,companies
+Identify the top 3 organizations that have a CEO and more than 1000 employees.,Complex Retrieval Queries,companies
+Who are the first 3 CEOs of organizations that have a public status and a revenue above 1 billion?,Complex Retrieval Queries,companies
+List the first 3 articles mentioning organizations with a CEO named 'Julie Spellman Sweet' and have a sentiment score below 0.5.,Complex Retrieval Queries,companies
+Which organizations based in 'Seattle' have more than 1000 employees and are public?,Complex Retrieval Queries,companies
+Find the first 3 organizations that have a CEO named 'Julie Spellman Sweet' and have a revenue above 1 billion.,Complex Retrieval Queries,companies
+Identify the top 3 organizations that have a CEO and have been mentioned in the latest articles with a high sentiment score.,Complex Retrieval Queries,companies
+Who are the first 3 board members of organizations that have a CEO and are based in 'United States of America'?,Complex Retrieval Queries,companies
+List the first 3 organizations that have been mentioned in articles with a sentiment score above 0.7 and have a CEO named 'Julie Spellman Sweet'.,Complex Retrieval Queries,companies
+Which organizations based in 'United States of America' have a public status and more than 1000 employees?,Complex Retrieval Queries,companies
+Find the first 3 organizations that have CEOs named 'Julie Spellman Sweet' and are based in 'Seattle'.,Complex Retrieval Queries,companies
+Identify the top 3 organizations that have been mentioned in articles authored by 'James Blackman'.,Complex Retrieval Queries,companies
+Which organizations have a revenue greater than 100 million but less than 500 million?,Simple Aggregation Queries,companies
+Who is the CEO of an organization named 'Accenture'?,Simple Aggregation Queries,companies
+List the first 3 organizations that have more than 1000 employees.,Simple Aggregation Queries,companies
+What are the top 5 organizations in terms of revenue?,Simple Aggregation Queries,companies
+Which organizations are public and have a revenue of over 500 million?,Simple Aggregation Queries,companies
+Who are the board members of 'New Energy Group'?,Simple Aggregation Queries,companies
+What are the first 3 cities that have organizations with more than 500 employees?,Simple Aggregation Queries,companies
+List all the subsidiary companies of 'Accenture'.,Simple Aggregation Queries,companies
+What organizations have 'Electronic Products Manufacturers' as their industry category?,Simple Aggregation Queries,companies
+Which organizations have dissolved and are no longer operational?,Simple Aggregation Queries,companies
+List the top 5 articles mentioning 'Accenture'.,Simple Aggregation Queries,companies
+Who are the investors of 'New Energy Group'?,Simple Aggregation Queries,companies
+What are the top 3 articles by sentiment that mention an organization with a revenue of over 1 billion?,Simple Aggregation Queries,companies
+Which organization has the highest number of employees?,Simple Aggregation Queries,companies
+What are the first 5 cities by the number of organizations located there?,Simple Aggregation Queries,companies
+How many organizations are there in the 'United States of America'?,Simple Aggregation Queries,companies
+What organizations are mentioned in the article titled 'Funds for Consumer Behavior Specialist Infinite Analytics'?,Simple Aggregation Queries,companies
+List three persons who are both investors and board members in any organization.,Simple Aggregation Queries,companies
+Which organizations are suppliers to 'Accenture'?,Simple Aggregation Queries,companies
+Which cities are these organizations based in that have more than 50 employees but less than 200?,Simple Aggregation Queries,companies
+Which organizations are competitors to 'SAP'?,Simple Aggregation Queries,companies
+List the first 3 organizations that were mentioned in articles published in 2022.,Simple Aggregation Queries,companies
+What is the sentiment of the article that has the highest sentiment score mentioning 'Accenture'?,Simple Aggregation Queries,companies
+Which organizations have a motto containing the word 'technology'?,Simple Aggregation Queries,companies
+List the organizations that have more than one subsidiary.,Simple Aggregation Queries,companies
+Which countries host organizations that have a revenue over 50 million?,Simple Aggregation Queries,companies
+What are the industry categories of organizations located in 'Seattle'?,Simple Aggregation Queries,companies
+Who wrote the article with the highest sentiment score mentioning 'SAP'?,Simple Aggregation Queries,companies
+What are the first 3 articles about organizations with a public status?,Simple Aggregation Queries,companies
+What organizations are headquartered in cities that are in the 'United States of America'?,Simple Aggregation Queries,companies
+Which city has the most organizations with public status?,Simple Aggregation Queries,companies
+Who are the children of 'Julie Spellman Sweet'?,Simple Aggregation Queries,companies
+List the parents of 'David Correa'.,Simple Aggregation Queries,companies
+Which person has the most direct connections to other persons within the graph?,Simple Aggregation Queries,companies
+What are the first 3 organizations mentioned in articles from 'MrWeb'?,Simple Aggregation Queries,companies
+Which organizations are both public and have a CEO named 'Julie Spellman Sweet'?,Simple Aggregation Queries,companies
+What is the summary description of the organization with the lowest number of employees?,Simple Aggregation Queries,companies
+List the top 5 countries by the number of organizations headquartered there.,Simple Aggregation Queries,companies
+Which cities have more than two industries represented by organizations within them?,Simple Aggregation Queries,companies
+What are the top 3 industries by the number of organizations in each?,Simple Aggregation Queries,companies
+List the latest 3 articles mentioning any organization based in 'Rome'.,Simple Aggregation Queries,companies
+Which organization has the highest revenue and is not public?,Simple Aggregation Queries,companies
+Who are the investors of organizations that have been dissolved?,Simple Aggregation Queries,companies
+"Which organizations have more than 10,000 employees and are located in a country outside of 'United States of America'?",Simple Aggregation Queries,companies
+List the first 5 articles mentioning organizations that have a CEO named 'Julie Spellman Sweet'.,Simple Aggregation Queries,companies
+Which organizations have a city as their headquarters and have a revenue of over 1 million?,Simple Aggregation Queries,companies
+List the organizations that have less than 50 employees and are still operational.,Simple Aggregation Queries,companies
+What are the names of organizations that have at least 2 board members?,Simple Aggregation Queries,companies
+Which countries have organizations with a revenue less than 10 million?,Simple Aggregation Queries,companies
+Who are the CEOs of the top 5 organizations by revenue?,Simple Aggregation Queries,companies
+What are the first 3 organizations that have been mentioned in an article with a sentiment score greater than 0.9?,Simple Aggregation Queries,companies
+Which organization has the most subsidiaries and what is its name?,Simple Aggregation Queries,companies
+Who are the children of CEOs who are also board members of other organizations?,Simple Aggregation Queries,companies
+Which articles mention any organizations that are suppliers to 'New Energy Group'?,Simple Aggregation Queries,companies
+List the organizations that have the most number of competitors.,Simple Aggregation Queries,companies
+Which organizations have a city named 'Seattle' as their headquarters and more than 500 employees?,Simple Aggregation Queries,companies
+List the first 3 organizations that were mentioned in articles with a sentiment less than 0.5.,Simple Aggregation Queries,companies
+What is the name of the organization that has the highest number of employees and is headquartered in a city named 'Seattle'?,Simple Aggregation Queries,companies
+Which person has the most children within the graph?,Simple Aggregation Queries,companies
+What is the name of the organization with the most board members?,Simple Aggregation Queries,companies
+Who are the top 3 investors in terms of the number of organizations they invest in?,Simple Aggregation Queries,companies
+Which organizations are headquartered in a city that is not in 'United States of America' and have a revenue of over 100 million?,Simple Aggregation Queries,companies
+List the organizations that are public and have a CEO who is a female.,Simple Aggregation Queries,companies
+Which cities have the most organizations that are dissolved?,Simple Aggregation Queries,companies
+What are the first 5 organizations that are mentioned in articles from 'RCR Wireless News'?,Simple Aggregation Queries,companies
+Who are the CEOs of organizations that have been dissolved?,Simple Aggregation Queries,companies
+Which organization has the most suppliers and what is its name?,Simple Aggregation Queries,companies
+List the top 3 organizations by the number of articles mentioning them in 2021.,Simple Aggregation Queries,companies
+What are the first 3 countries with organizations that have more than 1000 employees?,Simple Aggregation Queries,companies
+Which organizations have a CEO who is also a board member in another organization?,Simple Aggregation Queries,companies
+Who are the top 5 CEOs in terms of the revenue of the organizations they lead?,Simple Aggregation Queries,companies
+What are the names of the top 5 organizations with the highest revenue?,Pathfinding Queries,companies
+List the names of 3 organizations that are dissolved.,Pathfinding Queries,companies
+Which 3 cities have the most organizations based in them?,Pathfinding Queries,companies
+What are the names of the first 3 people who are CEOs of public organizations?,Pathfinding Queries,companies
+Which 3 organizations have the most employees?,Pathfinding Queries,companies
+Name the top 5 articles with the highest sentiment scores.,Pathfinding Queries,companies
+Can you identify 3 organizations mentioned in articles published in 2022?,Pathfinding Queries,companies
+What are the names of 3 industry categories that the most organizations belong to?,Pathfinding Queries,companies
+List the names of 3 organizations that are suppliers to technology companies.,Pathfinding Queries,companies
+Which 3 cities are mentioned most frequently in articles?,Pathfinding Queries,companies
+Who are the board members of the first 3 organizations with the highest revenue?,Pathfinding Queries,companies
+What are the names of the first 3 organizations that have subsidiaries?,Pathfinding Queries,companies
+Which 3 countries have the most cities with organizations based in them?,Pathfinding Queries,companies
+Name 3 organizations that are competitors in the software industry.,Pathfinding Queries,companies
+List the top 5 articles that mention organizations based in Seattle.,Pathfinding Queries,companies
+What are the names of the first 3 organizations that are investors in other organizations?,Pathfinding Queries,companies
+Which 3 people have the most children listed in the database?,Pathfinding Queries,companies
+Name the first 3 organizations that have at least one board member who is also a CEO of another organization.,Pathfinding Queries,companies
+Which 3 organizations have the largest number of competitors?,Pathfinding Queries,companies
+List the top 5 cities where the headquarters of public organizations are located.,Pathfinding Queries,companies
+Who are the first 3 CEOs of organizations in the manufacturing industry?,Pathfinding Queries,companies
+Name 3 organizations that have been mentioned in articles with a sentiment score above 0.5.,Pathfinding Queries,companies
+Which 3 industry categories have the most organizations with public status?,Pathfinding Queries,companies
+List the first 3 cities that are in countries with more than 100 organizations based in them.,Pathfinding Queries,companies
+What are the names of the organizations where the CEOs have the same last name?,Pathfinding Queries,companies
+Which 3 organizations have the highest number of investors?,Pathfinding Queries,companies
+Name the first 3 organizations that have been mentioned in articles related to environmental issues.,Pathfinding Queries,companies
+What are the names of 3 organizations that have been dissolved but are still mentioned in recent articles?,Pathfinding Queries,companies
+Which 3 countries are mentioned the most in articles regarding technology advancements?,Pathfinding Queries,companies
+List the top 5 organizations that have a subsidiary in the same city where they are headquartered.,Pathfinding Queries,companies
+Who are the first 3 children of people who are CEOs of public organizations?,Pathfinding Queries,companies
+Name the top 3 organizations by number of articles mentioning them in 2021.,Pathfinding Queries,companies
+Which 3 organizations have the most suppliers?,Pathfinding Queries,companies
+List the first 3 organizations that have a CEO and a board member with the same name.,Pathfinding Queries,companies
+What are the names of organizations that have both a supplier and a subsidiary in Europe?,Pathfinding Queries,companies
+Which 3 cities are the most frequently mentioned settings in articles about finance?,Pathfinding Queries,companies
+Name the first 3 organizations that are headquartered in cities with more than 5 million inhabitants.,Pathfinding Queries,companies
+What are the names of the first 3 industry categories that have organizations with revenues over $100 million?,Pathfinding Queries,companies
+List the names of 3 organizations that have changed their CEOs more than twice according to the database.,Pathfinding Queries,companies
+Which 3 countries have organizations that are major players in the electronics industry?,Pathfinding Queries,companies
+Name the top 3 articles that discuss organizations with a history of more than 50 years.,Pathfinding Queries,companies
+Which 3 people are mentioned as investors in multiple organizations?,Pathfinding Queries,companies
+List the names of the first 3 organizations that have a public motto.,Pathfinding Queries,companies
+Name the first 3 organizations that have been dissolved but still have active subsidiaries.,Pathfinding Queries,companies
+What are the names of 3 organizations that have a CEO who was previously a board member of a competitor?,Pathfinding Queries,companies
+Which 3 organizations have the most articles mentioning them with a negative sentiment score?,Pathfinding Queries,companies
+List the names of the cities where the headquarters of the first 5 organizations founded before 1950 are located.,Pathfinding Queries,companies
+Who are the first 3 people who have both parent and child roles in the database?,Pathfinding Queries,companies
+Name the first 3 cities that have organizations with revenues exceeding $500 million.,Pathfinding Queries,companies
+What are the names of organizations that have a CEO who is younger than 40 years old?,Pathfinding Queries,companies
+Which 3 organizations have the most board members?,Pathfinding Queries,companies
+List the first 3 articles that mention new energy technologies.,Pathfinding Queries,companies
+Name the top 3 organizations in terms of number of times they are mentioned as competitors in different industries.,Pathfinding Queries,companies
+Which 3 organizations have CEOs who have written articles about their own organizations?,Pathfinding Queries,companies
+List the names of 3 organizations that have subsidiaries in more than 3 countries.,Pathfinding Queries,companies
+Name the first 3 organizations that have been mentioned in articles about cybersecurity.,Pathfinding Queries,companies
+Which 3 organizations are the most frequent collaborators in joint ventures?,Pathfinding Queries,companies
+List the names of the first 3 organizations that have a CEO with a PhD.,Pathfinding Queries,companies
+Name the top 3 cities by number of organizations that are involved in environmental technology.,Pathfinding Queries,companies
+Which 3 organizations have the most diverse range of industry categories they belong to?,Pathfinding Queries,companies
+List the names of the first 3 organizations that have invested in startups in the past year.,Pathfinding Queries,companies
+Name the top 3 organizations with CEOs who have been in their position for over a decade.,Pathfinding Queries,companies
+Which 3 cities have the most organizations in the food industry?,Pathfinding Queries,companies
+List the names of organizations that have a CEO and an investor who are siblings.,Pathfinding Queries,companies
+Name the first 3 organizations that are headquartered in capital cities and are in the telecommunications industry.,Pathfinding Queries,companies
+Which 3 organizations have the longest history of continuous operation according to their founding dates in the database?,Pathfinding Queries,companies
+List the top 3 articles that focus on the impact of technology on education.,Pathfinding Queries,companies
+Name the first 3 organizations that have both a CEO and a board member from the same family.,Pathfinding Queries,companies
+Which 3 organizations have been involved in the most legal disputes according to articles?,Pathfinding Queries,companies
+"List the names of the first 3 organizations that have more than 10,000 employees.",Pathfinding Queries,companies
+Name the top 3 countries by number of organizations that have been mentioned in articles related to healthcare.,Pathfinding Queries,companies
+Which 3 organizations have the most articles mentioning them with a sentiment score below 0.3?,Pathfinding Queries,companies
+List the names of 3 organizations that have a motto related to sustainability.,Pathfinding Queries,companies
+Name the first 3 organizations that have been involved in mergers in the past 5 years.,Pathfinding Queries,companies
+Which 3 cities are most frequently cited in articles about urban development?,Pathfinding Queries,companies
+List the names of 3 organizations that have at least one female board member.,Pathfinding Queries,companies
+Name the top 3 organizations in terms of revenue that are headquartered in countries with developing economies.,Pathfinding Queries,companies
+Which 3 organizations have been featured in the most articles about market expansions?,Pathfinding Queries,companies
+List the first 3 articles that mention organizations with a significant number of layoffs in the past year.,Pathfinding Queries,companies
+Name the first 3 organizations that have a CEO who has authored a book on leadership.,Pathfinding Queries,companies
+Which 3 organizations have the most subsidiaries in different industries?,Pathfinding Queries,companies
+List the names of the first 3 organizations that have a public commitment to diversity and inclusion.,Pathfinding Queries,companies
+Name the top 3 organizations with the most mentions in articles about technology innovation.,Pathfinding Queries,companies
+Which 3 organizations have a CEO who has won international business awards?,Pathfinding Queries,companies
+List the names of 3 organizations that have undergone a major rebranding in the last decade.,Pathfinding Queries,companies
+Name the first 3 organizations that have a parent company with a revenue over $1 billion.,Pathfinding Queries,companies
+Which 3 countries have the highest number of organizations involved in the energy sector?,Pathfinding Queries,companies
+List the names of the first 3 articles that discuss changes in corporate governance.,Pathfinding Queries,companies
+Name the first 3 organizations that are involved in more than one industry category and have subsidiaries in at least two different countries.,Pathfinding Queries,companies
+Which 3 organizations have the most complex supply chains according to the database?,Pathfinding Queries,companies
+List the names of the first 3 organizations that have announced significant technological breakthroughs in the past year.,Pathfinding Queries,companies
+Name the top 3 articles that mention organizations affected by global economic changes.,Pathfinding Queries,companies
+Which 3 organizations have the most detailed corporate histories available in the database?,Pathfinding Queries,companies
+List the names of 3 organizations that have a CEO who has been featured in a major business magazine.,Pathfinding Queries,companies
+Name the first 3 organizations that have been involved in a public scandal according to articles.,Pathfinding Queries,companies
+Which 3 organizations have the most diverse geographical distribution of subsidiaries?,Pathfinding Queries,companies
+List the names of the first 3 organizations that have a significant influence in the media industry.,Pathfinding Queries,companies
+Name the top 3 organizations in terms of environmental impact according to articles.,Pathfinding Queries,companies
+Which 3 organizations have been consistently mentioned in articles about corporate social responsibility?,Pathfinding Queries,companies
+List the names of the first 3 organizations that have a CEO who is also a significant philanthropist.,Pathfinding Queries,companies
+Name the first 3 organizations that have a board member who has been a government advisor.,Pathfinding Queries,companies
+Which 3 organizations have the most patents filed according to the database?,Pathfinding Queries,companies
+List the names of 3 organizations that have been involved in major international trade deals in the past year.,Pathfinding Queries,companies
+Name the top 3 organizations with the most subsidiaries according to the database.,Pathfinding Queries,companies
+Which 3 organizations have been mentioned the most in articles about financial crises?,Pathfinding Queries,companies
+What are the names of organizations that have a revenue greater than 100 million?,Complex Aggregation Queries,companies
+List the names of persons who are CEOs of organizations with more than 500 employees.,Complex Aggregation Queries,companies
+Which organizations are public and are based in cities within the United States of America?,Complex Aggregation Queries,companies
+Identify organizations that have been dissolved.,Complex Aggregation Queries,companies
+What are the names of industry categories that have associated organizations with more than 100 employees?,Complex Aggregation Queries,companies
+Which cities have more than 10 organizations based in them?,Complex Aggregation Queries,companies
+List all organizations that have subsidiaries.,Complex Aggregation Queries,companies
+Name persons who are board members of more than three organizations.,Complex Aggregation Queries,companies
+Which organizations have competitors also based in the same country?,Complex Aggregation Queries,companies
+What are the names of organizations with suppliers that have a revenue above 50 million?,Complex Aggregation Queries,companies
+Identify articles with a sentiment score above 0.8.,Complex Aggregation Queries,companies
+What are the names of cities that host organizations with a public status?,Complex Aggregation Queries,companies
+Name articles authored by 'David Correa' that mention any technology companies.,Complex Aggregation Queries,companies
+Which organizations are mentioned in articles published after 2020?,Complex Aggregation Queries,companies
+List the persons who have at least two children recorded in the schema.,Complex Aggregation Queries,companies
+What is the summary of the country where 'Seattle' is located?,Complex Aggregation Queries,companies
+Which organizations are investors in more than two other organizations?,Complex Aggregation Queries,companies
+Name the organizations that are suppliers to 'Accenture'.,Complex Aggregation Queries,companies
+What are the names of organizations that have at least one investor but no subsidiaries?,Complex Aggregation Queries,companies
+List the top 5 organizations by number of employees.,Complex Aggregation Queries,companies
+Which organizations are both suppliers and competitors to other organizations?,Complex Aggregation Queries,companies
+Identify the organizations with the highest revenue in the 'Electronic Products Manufacturers' industry.,Complex Aggregation Queries,companies
+Which articles mention organizations with a revenue less than 10 million?,Complex Aggregation Queries,companies
+What are the names and summaries of organizations mentioned in articles with a high sentiment score (>0.9)?,Complex Aggregation Queries,companies
+List the organizations that have their CEOs also serving as board members in other organizations.,Complex Aggregation Queries,companies
+Name the children of 'Julie Spellman Sweet'.,Complex Aggregation Queries,companies
+Which organizations are based in cities not in the 'United States of America'?,Complex Aggregation Queries,companies
+Identify all organizations that have a motto containing the word 'security'.,Complex Aggregation Queries,companies
+What are the names of organizations that have at least three categories associated with them?,Complex Aggregation Queries,companies
+Which organizations have the most articles mentioning them?,Complex Aggregation Queries,companies
+List all the organizations and their respective CEOs who are mentioned in the same article.,Complex Aggregation Queries,companies
+Name the industry categories that have the most organizations associated with them.,Complex Aggregation Queries,companies
+Which organizations have been mentioned in the most negative sentiment articles?,Complex Aggregation Queries,companies
+Identify organizations that have more than 3 board members.,Complex Aggregation Queries,companies
+What are the names of organizations that have both public and private subsidiaries?,Complex Aggregation Queries,companies
+Which persons are investors in organizations that have a revenue over 100 million?,Complex Aggregation Queries,companies
+List the organizations that have been mentioned in articles related to security threats.,Complex Aggregation Queries,companies
+Name the cities that are mentioned in articles about organizations in the 'Software' industry.,Complex Aggregation Queries,companies
+What is the revenue of the subsidiaries of 'Accenture'?,Complex Aggregation Queries,companies
+List the organizations that have the most investors.,Complex Aggregation Queries,companies
+Which organizations have a board member named 'David Correa'?,Complex Aggregation Queries,companies
+Name the top 3 organizations by revenue within the 'Financial Services' category.,Complex Aggregation Queries,companies
+List the organizations that have been mentioned in the most articles.,Complex Aggregation Queries,companies
+Which organizations have a CEO who has written an article?,Complex Aggregation Queries,companies
+Identify the organizations where 'Julie Spellman Sweet' is a board member.,Complex Aggregation Queries,companies
+What are the names of organizations that have been competitors for more than 10 years?,Complex Aggregation Queries,companies
+List the organizations that are public and have more than one CEO.,Complex Aggregation Queries,companies
+Which organizations have been investors in 'New Energy Group'?,Complex Aggregation Queries,companies
+Name the organizations that are headquartered in cities known for their technology industry.,Complex Aggregation Queries,companies
+List the cities that have organizations with a revenue exceeding 500 million.,Complex Aggregation Queries,companies
+Which organizations have the most suppliers?,Complex Aggregation Queries,companies
+Name the CEOs of the top 5 organizations by number of employees.,Complex Aggregation Queries,companies
+Identify the organizations that have been dissolved but still mentioned in recent articles.,Complex Aggregation Queries,companies
+List the board members of organizations in the 'Healthcare' industry.,Complex Aggregation Queries,companies
+Which countries have the most cities with public organizations?,Complex Aggregation Queries,companies
+Identify the organizations that have the most subsidiaries.,Complex Aggregation Queries,companies
+List the articles that mention organizations headquartered in 'Seattle'.,Complex Aggregation Queries,companies
+"Which organizations are based in a city with a population less than 100,000?",Complex Aggregation Queries,companies
+Name the industry categories for organizations that have been mentioned in articles about environmental issues.,Complex Aggregation Queries,companies
+Which organizations have a CEO who is also an investor in other organizations?,Complex Aggregation Queries,companies
+Identify organizations that have undergone a merger in the last 5 years.,Complex Aggregation Queries,companies
+List the organizations that have both a high revenue and a high number of employees.,Complex Aggregation Queries,companies
+Which organizations have CEOs who have been in their position for less than 3 years?,Complex Aggregation Queries,companies
+Name the organizations with the most board members who are also CEOs of other organizations.,Complex Aggregation Queries,companies
+List the top 5 cities by number of public organizations.,Complex Aggregation Queries,companies
+Which organizations have been mentioned in articles with a sentiment score lower than 0.5?,Complex Aggregation Queries,companies
+Name the organizations that have changed their CEO in the past year.,Complex Aggregation Queries,companies
+List the organizations that have more than one category associated with them.,Complex Aggregation Queries,companies
+Which organizations are based in the same city as 'Accenture'?,Complex Aggregation Queries,companies
+Identify the organizations that are both public and have more than 1000 employees.,Complex Aggregation Queries,companies
+List the articles that mention organizations with the most employees.,Complex Aggregation Queries,companies
+Which organizations have a board member who is a CEO of a competitor organization?,Complex Aggregation Queries,companies
+Name the top 3 organizations by revenue in the 'Technology' category.,Complex Aggregation Queries,companies
+List the organizations that have the most negative sentiment articles mentioning them.,Complex Aggregation Queries,companies
+Which organizations have more than 5 board members?,Complex Aggregation Queries,companies
+Identify the organizations that have been mentioned in articles about innovation.,Complex Aggregation Queries,companies
+List the organizations that have a CEO named 'Julie Spellman Sweet'.,Complex Aggregation Queries,companies
+Which organizations are based in a country other than their CEO's nationality?,Complex Aggregation Queries,companies
+Name the organizations that have made the most investments in startups.,Complex Aggregation Queries,companies
+List the cities where the most CEOs of large organizations reside.,Complex Aggregation Queries,companies
+Which organizations have the most positive sentiment articles mentioning them?,Complex Aggregation Queries,companies
+Name the organizations that have been mentioned in articles about financial fraud.,Complex Aggregation Queries,companies
+List the organizations that have a subsidiary and a supplier in the same country.,Complex Aggregation Queries,companies
+Which organizations have the most diverse board of directors?,Complex Aggregation Queries,companies
+Identify the organizations that have been mentioned in the most articles about technology.,Complex Aggregation Queries,companies
+List the organizations that are mentioned in articles with a sentiment score of exactly 0.5.,Complex Aggregation Queries,companies
+Which organizations have a CEO who has authored more than one article?,Complex Aggregation Queries,companies
+Name the organizations that have undergone significant restructuring in the past year.,Complex Aggregation Queries,companies
+List the top 5 organizations by number of articles mentioning them.,Complex Aggregation Queries,companies
+Which organizations have been mentioned in articles about corporate social responsibility?,Complex Aggregation Queries,companies
+What are the names of the first 3 organizations that have been dissolved?,Verbose query,companies
+List the top 5 organizations with the highest revenue.,Verbose query,companies
+Which organizations are located in Seattle?,Verbose query,companies
+Who are the CEOs of the top 3 public organizations by number of employees?,Verbose query,companies
+Identify the first 3 industries mentioned in articles written by David Correa.,Verbose query,companies
+What are the names of the first 3 organizations that have a motto?,Verbose query,companies
+Identify the first 3 cities where organizations with more than 1000 employees are located.,Verbose query,companies
+What are the names of the first 5 people who are board members of more than one organization?,Verbose query,companies
+Who are the top 3 investors in the tech industry?,Verbose query,companies
+Which organizations have SAP as a competitor?,Verbose query,companies
+List the first 3 organizations categorized under 'Electronic Products Manufacturers'.,Verbose query,companies
+What are the first 5 articles that mention organizations based in the United States?,Verbose query,companies
+What are the names of the first 3 organizations that have subsidiaries?,Verbose query,companies
+Which organizations are suppliers to New Energy Group?,Verbose query,companies
+Who are the first 3 people with children also working in the same organization?,Verbose query,companies
+What are the names of the first 3 organizations that have ceased operations but are still mentioned in recent articles?,Verbose query,companies
+List the top 5 organizations by number of employees that are located in a country with 'America' in its name.,Verbose query,companies
+Which organizations have a revenue greater than 1 billion and are public?,Verbose query,companies
+What are the names of the first 3 persons who are investors in more than one organization?,Verbose query,companies
+Identify the first 3 cities mentioned in articles about technology advancements.,Verbose query,companies
+What are the names of the first 3 organizations with the least number of employees?,Verbose query,companies
+Which organizations have been mentioned in articles with a sentiment score above 0.9?,Verbose query,companies
+Who are the first 3 CEOs of organizations that have been invested in by another organization?,Verbose query,companies
+List the top 5 organizations that have more than one supplier.,Verbose query,companies
+What are the names of the first 3 organizations mentioned in articles published on MrWeb?,Verbose query,companies
+Which organizations are based in a city that is also a county seat?,Verbose query,companies
+Identify the first 3 organizations that have a public status and are mentioned in articles with a negative sentiment.,Verbose query,companies
+List the first 3 countries where organizations with over 500 employees are based.,Verbose query,companies
+What are the names of the first 3 organizations that have a CEO named Julie Spellman Sweet?,Verbose query,companies
+Who are the first 3 board members of organizations that have a revenue of over 1 million?,Verbose query,companies
+Which organizations are mentioned in the most recent 5 articles by date?,Verbose query,companies
+List the first 3 organizations that have subsidiaries in more than one country.,Verbose query,companies
+Which organizations are headquartered in a city that is not the capital of its country?,Verbose query,companies
+Identify the first 3 organizations that have both a subsidiary and a supplier.,Verbose query,companies
+What are the names of the first 3 CEOs of organizations that are not public?,Verbose query,companies
+List the first 3 countries mentioned in articles related to consumer behavior.,Verbose query,companies
+What are the names of the first 3 'Electronic Products Manufacturers' with a revenue of over 500 million?,Verbose query,companies
+Who are the first 3 people who have both parent and child relationships in the database?,Verbose query,companies
+What are the names of the top 5 countries by number of filings?,Simple Retrieval Queries,fincen
+List the first 3 filings made by 'The Bank of New York Mellon Corp.',Simple Retrieval Queries,fincen
+Which entities are connected to the country with the code 'SGP'?,Simple Retrieval Queries,fincen
+Find the top 5 filings with the highest amounts.,Simple Retrieval Queries,fincen
+What are the names of the entities that have filed between '2015-01-01' and '2015-12-31'?,Simple Retrieval Queries,fincen
+Retrieve the first 3 beneficiary banks located in 'United Kingdom'.,Simple Retrieval Queries,fincen
+List all entities that are the originator for filings involving banks in 'Singapore'.,Simple Retrieval Queries,fincen
+Which 5 filings have a beneficiary bank country of 'Singapore' and amount greater than 500000?,Simple Retrieval Queries,fincen
+Find the top 3 countries that have entities with the most filings.,Simple Retrieval Queries,fincen
+What are the names of the first 5 entities that are beneficiaries in filings?,Simple Retrieval Queries,fincen
+List the first 3 filings where the originator bank is 'CIMB Bank Berhad'.,Simple Retrieval Queries,fincen
+What are the names of the top 3 entities that originated filings with amounts over 1000000?,Simple Retrieval Queries,fincen
+Retrieve the first 5 countries with a top-level domain of 'AO'.,Simple Retrieval Queries,fincen
+Which 5 filings have the earliest begin dates?,Simple Retrieval Queries,fincen
+Find the top 3 entities that have filed the most number of filings.,Simple Retrieval Queries,fincen
+List the origin countries of the first 5 filings by 'The Bank of New York Mellon Corp.',Simple Retrieval Queries,fincen
+What are the names of the top 3 banks that served as beneficiary banks in the most filings?,Simple Retrieval Queries,fincen
+Retrieve the first 3 filings where the beneficiary bank country is 'United Kingdom' and the amount is above 100000.,Simple Retrieval Queries,fincen
+List the first 3 entities that have filed the most number of filings concerning banks in 'Singapore'.,Simple Retrieval Queries,fincen
+What are the names of the top 5 beneficiary banks in filings that have an amount greater than 200000?,Simple Retrieval Queries,fincen
+List the first 3 countries where the filings have originated from entities based in 'Angola'.,Simple Retrieval Queries,fincen
+What are the names of the top 5 originator banks in filings that ended in the year 2014?,Simple Retrieval Queries,fincen
+Retrieve the first 3 filings where the originator bank country is 'Singapore' and the beneficiary bank country is 'United Kingdom'.,Simple Retrieval Queries,fincen
+Find the top 3 entities that are concerned in filings where the amount is above 500000.,Simple Retrieval Queries,fincen
+List the first 5 countries connected to entities that have filed more than 10 filings.,Simple Retrieval Queries,fincen
+What are the names of the first 3 entities that originated filings with a beneficiary bank in 'Barclays Bank Plc'?,Simple Retrieval Queries,fincen
+Retrieve the top 5 filings with beneficiary banks located in 'Singapore' and amounts less than 300000.,Simple Retrieval Queries,fincen
+List the first 3 entities that benefit from filings where the originator bank is 'The Bank of New York Mellon Corp.',Simple Retrieval Queries,fincen
+Find the top 5 countries where the entities have filed the least number of filings.,Simple Retrieval Queries,fincen
+What are the names of the top 3 entities that have filings with an originator iso code of 'SGP'?,Simple Retrieval Queries,fincen
+Retrieve the first 3 filings with an originator bank country of 'Angola' and a beneficiary bank country of 'Singapore'.,Simple Retrieval Queries,fincen
+List the first 3 entities that originated filings with a beneficiary bank country of 'United Kingdom' and amount over 500000.,Simple Retrieval Queries,fincen
+What are the names of the top 5 entities that have benefited from filings originated by banks in 'Singapore'?,Simple Retrieval Queries,fincen
+Retrieve the first 3 filings where the beneficiary bank country is 'United Kingdom' and the beneficiary iso is 'GBR'.,Simple Retrieval Queries,fincen
+List the first 3 entities that are concerned in filings with an amount greater than 1000000.,Simple Retrieval Queries,fincen
+What are the names of the top 5 originator banks for filings that started in the year 2015?,Simple Retrieval Queries,fincen
+Retrieve the first 3 filings with a beneficiary bank country of 'Singapore' and an amount greater than 200000.,Simple Retrieval Queries,fincen
+List the first 3 entities that are originators in filings with a beneficiary bank country of 'United Kingdom' and amount less than 500000.,Simple Retrieval Queries,fincen
+What are the names of the top 5 filings in terms of amount where the originator bank is 'CIMB Bank Berhad'?,Simple Retrieval Queries,fincen
+Retrieve the first 3 countries connected to entities that are beneficiaries in filings with amounts over 1000000.,Simple Retrieval Queries,fincen
+List the first 3 entities that have filed the most number of filings with a beneficiary bank in 'Barclays Bank Plc'.,Simple Retrieval Queries,fincen
+What are the names of the top 5 entities that have originator banks in 'Angola'?,Simple Retrieval Queries,fincen
+Retrieve the first 3 filings where the originator bank country is 'United Kingdom' and the amount is above 200000.,Simple Retrieval Queries,fincen
+List the first 3 entities that are originators in filings where the originator bank is 'CIMB Bank Berhad' and the amount is above 500000.,Simple Retrieval Queries,fincen
+What are the names of the top 5 entities that have the most filings with a beneficiary bank country of 'Singapore'?,Simple Retrieval Queries,fincen
+Retrieve the first 3 filings with a beneficiary bank country of 'United Kingdom' and an amount less than 500000.,Simple Retrieval Queries,fincen
+List the first 3 entities that are concerned in filings with a beneficiary bank country of 'United Kingdom' and an amount greater than 1000000.,Simple Retrieval Queries,fincen
+What are the names of the top 5 entities that are originators in filings with an originator bank country of 'Singapore'?,Simple Retrieval Queries,fincen
+Retrieve the first 3 filings where the beneficiary bank country is 'Singapore' and the amount is above 200000.,Simple Retrieval Queries,fincen
+List the first 3 entities that have filed the most number of filings with a beneficiary bank country of 'United Kingdom'.,Simple Retrieval Queries,fincen
+List the top 5 countries by the number of filings originating from them.,Complex Retrieval Queries,fincen
+Which three entities have filed the most number of filings between 2010 and 2015?,Complex Retrieval Queries,fincen
+Find the top 3 countries where entities have filed the most number of filings in 2017.,Complex Retrieval Queries,fincen
+Who are the top 3 originator banks with the most filings in 2015?,Complex Retrieval Queries,fincen
+What are the top 5 beneficiary banks in terms of the total amount transferred in filings during 2016?,Complex Retrieval Queries,fincen
+Which three countries have entities that benefited from the highest amount in filings in 2014?,Complex Retrieval Queries,fincen
+List the top 5 entities by the number of filings concerning them in 2013.,Complex Retrieval Queries,fincen
+Which three filings have the highest amount transferred and involve a UK beneficiary bank?,Complex Retrieval Queries,fincen
+What are the top 3 originator banks by the number of filings with an end date in 2012?,Complex Retrieval Queries,fincen
+Find the top 5 filings with the largest amount transferred in 2011.,Complex Retrieval Queries,fincen
+Which three countries are most frequently listed as the originator bank country in filings during 2010?,Complex Retrieval Queries,fincen
+List the top 5 entities that have filed the most filings where the beneficiary bank is located in the United States.,Complex Retrieval Queries,fincen
+Which three filings had the longest duration from begin to end in 2009?,Complex Retrieval Queries,fincen
+Find the top 5 countries where entities are located that filed filings with an amount over 1 million USD in 2008.,Complex Retrieval Queries,fincen
+What are the top 3 entities by the number of filings they originated in 2007?,Complex Retrieval Queries,fincen
+Which three beneficiary banks were involved in filings with the highest amounts in 2006?,Complex Retrieval Queries,fincen
+List the top 5 filings with the shortest duration between begin and end in 2005.,Complex Retrieval Queries,fincen
+"What are the top 3 originator bank countries in filings involving an amount greater than 500,000 USD in 2004?",Complex Retrieval Queries,fincen
+Find the top 5 entities that benefited from filings in 2003.,Complex Retrieval Queries,fincen
+Which three countries have entities that were the originators in the most filings in 2002?,Complex Retrieval Queries,fincen
+List the three entities with the most filings where the originator bank is located in Singapore.,Complex Retrieval Queries,fincen
+Which five filings involved a beneficiary bank from the United Kingdom with amounts over 2 million USD?,Complex Retrieval Queries,fincen
+What are the top 3 filings in terms of number involving entities from China as the beneficiaries in 2001?,Complex Retrieval Queries,fincen
+Find the top 5 entities that have originated the most filings with a beneficiary bank in Germany.,Complex Retrieval Queries,fincen
+List the top 3 filings with the most complex routing involving multiple transit countries.,Complex Retrieval Queries,fincen
+Which countries have entities that have filed more than 5 filings?,Simple Aggregation Queries,fincen
+List the top 5 countries by the number of entities they host.,Simple Aggregation Queries,fincen
+What are the names of all entities in 'United Kingdom'?,Simple Aggregation Queries,fincen
+How many filings were ended in the year 2015?,Simple Aggregation Queries,fincen
+What are the top 3 originator banks by the number of filings they initiated?,Simple Aggregation Queries,fincen
+Find all entities that are beneficiaries in filings where the amount is greater than 1000000.,Simple Aggregation Queries,fincen
+Which entities are associated with originator bank 'CIMB Bank Berhad'?,Simple Aggregation Queries,fincen
+List the 3 most recent filings in the database.,Simple Aggregation Queries,fincen
+What are the entities concerned in the top 5 filings by amount?,Simple Aggregation Queries,fincen
+How many countries are represented by the beneficiary banks in the filings?,Simple Aggregation Queries,fincen
+What is the average amount of filings that ended in 2017?,Simple Aggregation Queries,fincen
+Who are the beneficiaries in the filings from originator country 'Singapore'?,Simple Aggregation Queries,fincen
+List the filings where the beneficiary bank country is 'United Kingdom'.,Simple Aggregation Queries,fincen
+Which entities have filed a filing with an amount over 500000?,Simple Aggregation Queries,fincen
+How many filings were made by 'The Bank of New York Mellon Corp.'?,Simple Aggregation Queries,fincen
+What are the top 3 filings by amount?,Simple Aggregation Queries,fincen
+List the 3 countries with the lowest number of filings.,Simple Aggregation Queries,fincen
+Which entity has filed the most filings with the originator country as 'United Kingdom'?,Simple Aggregation Queries,fincen
+Find all filings that began and ended in the same month of 2015.,Simple Aggregation Queries,fincen
+What are the most common beneficiary bank countries in the filings?,Simple Aggregation Queries,fincen
+How many entities are there in each country?,Simple Aggregation Queries,fincen
+Which filings have an originator ISO of 'SGP'?,Simple Aggregation Queries,fincen
+List all entities that have filed more than 10 filings.,Simple Aggregation Queries,fincen
+Which filings concern entities with a location in 'CHN'?,Simple Aggregation Queries,fincen
+What are the top 5 largest amounts filed by 'Barclays Bank Plc' as the beneficiary bank?,Simple Aggregation Queries,fincen
+Which filings involve a beneficiary bank and originator bank from the same country?,Simple Aggregation Queries,fincen
+List the top 5 filings based on the number of entities concerned.,Simple Aggregation Queries,fincen
+How many filings have a beneficiary bank in 'United Kingdom' and an amount greater than 200000?,Simple Aggregation Queries,fincen
+Which entities act as originators in the most number of filings?,Simple Aggregation Queries,fincen
+List the filings where the originator bank is 'CIMB Bank Berhad' and the amount is over 500000.,Simple Aggregation Queries,fincen
+How many entities have filed filings where the amount was under 10000?,Simple Aggregation Queries,fincen
+What are the top 3 beneficiary ISO codes in the filings?,Simple Aggregation Queries,fincen
+Which entity has benefited from the highest amount in a single filing?,Simple Aggregation Queries,fincen
+List the filings where the beneficiary ISO is 'GBR'.,Simple Aggregation Queries,fincen
+What are the top 3 countries by the average amount of filings?,Simple Aggregation Queries,fincen
+Which entities have been concerned by filings with an amount over 1500000?,Simple Aggregation Queries,fincen
+List the 3 most recent filings involving 'Barclays Bank Plc' as the beneficiary bank.,Simple Aggregation Queries,fincen
+What is the average number of filings per originator bank?,Simple Aggregation Queries,fincen
+"Which filings have an end date in 'Sep 25, 2015'?",Simple Aggregation Queries,fincen
+List the filings that have an originator bank country as 'Singapore' and an amount over 1000000.,Simple Aggregation Queries,fincen
+What are the entities that have both originated and been a beneficiary in filings?,Simple Aggregation Queries,fincen
+Which country hosts the most entities that are originators in filings?,Simple Aggregation Queries,fincen
+List the top 5 filings by the number of concerned entities.,Simple Aggregation Queries,fincen
+How many entities are there in 'United Kingdom'?,Simple Aggregation Queries,fincen
+Which filings have a beneficiary bank with an ISO code of 'GBR' and an amount greater than 250000?,Simple Aggregation Queries,fincen
+What is the total amount filed by entities in 'China'?,Simple Aggregation Queries,fincen
+List the 3 oldest filings based on the begin date.,Simple Aggregation Queries,fincen
+What are the filings where the amount is the minimum in the database?,Simple Aggregation Queries,fincen
+Which entities are originators in the filings involving the highest amounts?,Simple Aggregation Queries,fincen
+How many countries have at least one entity that has filed a filing?,Simple Aggregation Queries,fincen
+List the top 5 entities by the number of filings they have filed.,Simple Aggregation Queries,fincen
+Which country's entities have filed the most filings with an amount over 1000000?,Simple Aggregation Queries,fincen
+Find all filings where the beneficiary bank country is 'United States'.,Simple Aggregation Queries,fincen
+What are the entities that have filed the most filings with a begin date in 2015?,Simple Aggregation Queries,fincen
+How many filings have a beneficiary bank in 'United Kingdom'?,Simple Aggregation Queries,fincen
+List the filings with the highest number of originators.,Simple Aggregation Queries,fincen
+Which entities are concerned in filings with an amount greater than 750000?,Simple Aggregation Queries,fincen
+List entities that have filed more than 20 filings.,Simple Aggregation Queries,fincen
+Which filings have the longest duration from begin to end date?,Simple Aggregation Queries,fincen
+What are the top 5 filings by the shortest duration from begin to end date?,Simple Aggregation Queries,fincen
+Which country has the least number of entities that are originators?,Simple Aggregation Queries,fincen
+List all entities that are concerned in filings where the amount is over 2000000.,Simple Aggregation Queries,fincen
+What are the filings with a beneficiary bank from 'Singapore' and an amount over 300000?,Simple Aggregation Queries,fincen
+Which countries have entities that are both originators and beneficiaries in filings?,Simple Aggregation Queries,fincen
+How many filings are there with an originator bank from 'United Kingdom'?,Simple Aggregation Queries,fincen
+List the top 3 filings by amount where the beneficiary bank is from 'United Kingdom'.,Simple Aggregation Queries,fincen
+How many entities are there that have not been a beneficiary in any filings?,Simple Aggregation Queries,fincen
+What are the top 3 originator banks in terms of the total amount of filings they initiated?,Simple Aggregation Queries,fincen
+List all filings where the beneficiary bank is 'Barclays Bank Plc' and the amount is greater than 500000.,Simple Aggregation Queries,fincen
+Which filings have an originator and beneficiary bank from different countries?,Simple Aggregation Queries,fincen
+List the top 5 entities by the total amount they have been concerned in filings.,Simple Aggregation Queries,fincen
+How many filings have a beneficiary bank from 'United States' and an amount less than 500000?,Simple Aggregation Queries,fincen
+Which entities are originators in the most number of filings involving a beneficiary bank from 'United Kingdom'?,Simple Aggregation Queries,fincen
+"List the filings where the originator bank country is 'Singapore' and the end_date is 'Sep 25, 2015'.",Simple Aggregation Queries,fincen
+What are the entities that have filed the most filings with a beneficiary bank from 'United States'?,Simple Aggregation Queries,fincen
+How many filings have a beneficiary bank in 'Singapore'?,Simple Aggregation Queries,fincen
+List the top 5 filings by the number of originators.,Simple Aggregation Queries,fincen
+Which entities are concerned in filings with an amount greater than 1000000?,Simple Aggregation Queries,fincen
+List entities that have filed more than 30 filings.,Simple Aggregation Queries,fincen
+Which filings have the shortest duration from begin to end date involving a beneficiary bank from 'United Kingdom'?,Simple Aggregation Queries,fincen
+What are the top 5 filings by the longest duration from begin to end date?,Simple Aggregation Queries,fincen
+Which country has the least number of entities that are beneficiaries?,Simple Aggregation Queries,fincen
+List all entities that are concerned in filings where the amount is over 500000.,Simple Aggregation Queries,fincen
+What are the filings with a beneficiary bank from 'China' and an amount over 150000?,Simple Aggregation Queries,fincen
+Which countries have entities that are both originators and beneficiaries in filings with an amount over 1000000?,Simple Aggregation Queries,fincen
+How many filings are there with an originator bank from 'Singapore' and a beneficiary bank from 'United Kingdom'?,Simple Aggregation Queries,fincen
+List the top 3 filings by amount where the beneficiary bank is from 'China'.,Simple Aggregation Queries,fincen
+Which entities have filings that originated from Singapore?,Pathfinding Queries,fincen
+List the top 5 countries by the number of entities associated via the FILED relationship.,Pathfinding Queries,fincen
+What are the three entities that benefitted the most in terms of the amount from filings?,Pathfinding Queries,fincen
+Find the first 3 countries connected to entities that have a filing with a beneficiary bank in the United Kingdom.,Pathfinding Queries,fincen
+Who are the originators in filings where the beneficiary bank country is 'United Kingdom' and the amount is over 1000000?,Pathfinding Queries,fincen
+List the top 5 filings by amount where the originator bank is 'CIMB Bank Berhad'.,Pathfinding Queries,fincen
+Which filings concern entities located at a latitude greater than 50?,Pathfinding Queries,fincen
+List the three entities with the most filings during 2015.,Pathfinding Queries,fincen
+What are the top 5 filings with the shortest duration between begin and end dates?,Pathfinding Queries,fincen
+Find the three countries with the most originator banks in the filings.,Pathfinding Queries,fincen
+Which entities filed a report in March 2015 with an amount exceeding 500000?,Pathfinding Queries,fincen
+List the first 3 countries where the beneficiary bank of the filing is located.,Pathfinding Queries,fincen
+What are the top 5 countries by the total amount of filings concerning their entities?,Pathfinding Queries,fincen
+Identify the top 3 filings with the largest number of transactions.,Pathfinding Queries,fincen
+Who are the beneficiaries in the top 5 largest filings by amount?,Pathfinding Queries,fincen
+Find the top 3 entities that have the most filings where the originator bank country is 'Singapore'.,Pathfinding Queries,fincen
+Which are the three entities with filings originating from banks in 'Singapore' and concerned with banks in 'United Kingdom'?,Pathfinding Queries,fincen
+List the top 5 countries based on the total number of entities that have filed something.,Pathfinding Queries,fincen
+Which three entities have the most filings with a beneficiary bank located in 'United Kingdom'?,Pathfinding Queries,fincen
+What are the top 5 filings with the largest amounts where the originator bank country is 'United Kingdom'?,Pathfinding Queries,fincen
+List the three entities with the most filings where the originator and beneficiary banks are the same.,Pathfinding Queries,fincen
+Which filings involve an entity with the id 'the-bank-of-new-york-mellon-corp' as both originator and beneficiary?,Pathfinding Queries,fincen
+Find the first 3 countries where the total amount of filings exceeds 1000000.,Pathfinding Queries,fincen
+What are the top 5 filings where the beneficiary bank country is 'United Kingdom' and the originator bank country is 'Singapore'?,Pathfinding Queries,fincen
+Which entities are connected to a country with the code 'AFG' via the COUNTRY relationship?,Pathfinding Queries,fincen
+List the top 5 entities by the number of filings where the originator bank's country code is 'SGP'.,Pathfinding Queries,fincen
+What are the three highest amounts filed by entities located in 'China'?,Pathfinding Queries,fincen
+Identify the top 3 filings where the beneficiary bank's country is 'United Kingdom' and the amount is over 500000.,Pathfinding Queries,fincen
+List the three entities with the most filings where the originator bank's ISO code is 'SGP'.,Pathfinding Queries,fincen
+What are the top 5 filings with the largest amounts where the beneficiary bank's ISO code is 'GBR'?,Pathfinding Queries,fincen
+Which filings have a beneficiary bank in 'United Kingdom' and an amount greater than 1000000?,Pathfinding Queries,fincen
+Find the first 3 entities with filings that involve a country with the top-level domain '.AF'.,Pathfinding Queries,fincen
+Which three entities have the most filings where the originator bank is 'Barclays Bank Plc'?,Pathfinding Queries,fincen
+List the top 5 filings by amount where the beneficiary bank is 'Barclays Bank Plc'.,Pathfinding Queries,fincen
+What are the three entities with the highest total filing amounts where the originator bank country is 'Singapore'?,Pathfinding Queries,fincen
+Identify the top 3 entities based on the total amount of filings where the beneficiary bank's country is 'United Kingdom'.,Pathfinding Queries,fincen
+List the top 5 filings by number where the filing began in 2015.,Pathfinding Queries,fincen
+Which three entities have the most filings ending in the year 2015?,Pathfinding Queries,fincen
+Find the first 3 countries associated with entities that have filed more than 10 filings.,Pathfinding Queries,fincen
+What are the top 5 countries by the number of filings where the beneficiary bank country code is 'GBR'?,Pathfinding Queries,fincen
+List the three entities with the most filings involving a beneficiary bank in 'United Kingdom' and an originator bank in 'Singapore'.,Pathfinding Queries,fincen
+Which filings originated from entities in 'Singapore' and ended in 2015? Limit to top 5 results.,Complex Aggregation Queries,fincen
+"What are the names of entities that filed a filing with an amount greater than 1,000,000? Limit to first 3 results.",Complex Aggregation Queries,fincen
+List the names of countries where the beneficiary bank of the filing is located. Limit to top 5 results.,Complex Aggregation Queries,fincen
+Which entities benefited from filings where the originator bank was 'CIMB Bank Berhad'? Limit to top 3 results.,Complex Aggregation Queries,fincen
+How many filings are associated with the entity 'The Bank of New York Mellon Corp.' as both originator and beneficiary?,Complex Aggregation Queries,fincen
+"What are the top 5 filings by amount that were filed between January 1, 2015, and December 31, 2015?",Complex Aggregation Queries,fincen
+Display the country codes for the top 3 countries where the originator entities of filings are located.,Complex Aggregation Queries,fincen
+List the 3 filings with the shortest duration from beginning to end.,Complex Aggregation Queries,fincen
+What are the names of the top 5 entities that originated the most filings?,Complex Aggregation Queries,fincen
+Which 3 countries have entities that filed the most filings with an end date in 2016?,Complex Aggregation Queries,fincen
+List the top 5 filings by number that had a beneficiary bank in 'United Kingdom'.,Complex Aggregation Queries,fincen
+"What are the names and locations of the top 3 entities that benefited from filings where the amount exceeded 500,000?",Complex Aggregation Queries,fincen
+How many entities are connected to a filing where the originator bank country is 'Singapore'? Limit to top 3 results.,Complex Aggregation Queries,fincen
+List the countries of origin for the top 5 filings with the highest amounts.,Complex Aggregation Queries,fincen
+Which 3 filings have the largest difference in latitude between originator and beneficiary locations?,Complex Aggregation Queries,fincen
+Name the top 3 entities that filed the most filings with a beneficiary bank in 'United Kingdom'.,Complex Aggregation Queries,fincen
+What are the top 3 filings with the highest amounts that involve an entity based in 'China'?,Complex Aggregation Queries,fincen
+List the last 3 filings by end date that concerned entities based in 'China'.,Complex Aggregation Queries,fincen
+Which top 5 countries are most frequently listed as the beneficiary bank country in filings?,Complex Aggregation Queries,fincen
+"List the top 3 entities based on the number of filings they originated with an amount over 2,000,000.",Complex Aggregation Queries,fincen
+List the top 3 countries by the number of entities registered there.,Verbose query,fincen
+Identify the top 5 filer organizations by the total amount of filings.,Verbose query,fincen
+Which 3 countries have the most originator banks associated with filings?,Verbose query,fincen
+Find the 3 highest amounts of filings that originated from the United Kingdom.,Verbose query,fincen
+What are the top 5 filings based on the number of beneficiaries they concern?,Verbose query,fincen
+List the first 3 entities that have filed something concerning a beneficiary in Afghanistan.,Verbose query,fincen
+Which 3 filings have the highest number of originator entities involved?,Verbose query,fincen
+Identify the top 5 originator banks by the total number of filings they initiated.,Verbose query,fincen
+Which 3 countries are most frequently listed as the beneficiary bank country in filings?,Verbose query,fincen
+What are the first 3 filings made by 'The Bank of New York Mellon Corp.'?,Verbose query,fincen
+Identify the top 3 entities that have been the originator in the most filings.,Verbose query,fincen
+"Which 3 filings have the largest amounts and were filed between January 1, 2010, and December 31, 2015?",Verbose query,fincen
+List the first 3 countries where the beneficiary latitude is greater than 50 degrees.,Verbose query,fincen
+What are the top 5 filings that ended in the year 2015?,Verbose query,fincen
+Which 3 entities have filed the most filings that benefit entities in Germany?,Verbose query,fincen
+Identify the top 3 filings in terms of amount that concern entities in Singapore.,Verbose query,fincen
+List the first 3 entities based in countries with a '.uk' top-level domain.,Verbose query,fincen
+What are the top 5 filings with the earliest begin dates?,Verbose query,fincen
+Which 3 filings involve the most entities either as originators or beneficiaries?,Verbose query,fincen
+List the first 3 filings that originated from an entity in China.,Verbose query,fincen
+Identify the top 5 countries by the total amount of filings originating from them.,Verbose query,fincen
+Which 3 filings have the longest duration from begin to end date?,Verbose query,fincen
+List the first 3 entities that have filed the most concerning filings.,Verbose query,fincen
+Find the top 5 filings based on the number of different countries involved as either originator or beneficiary.,Verbose query,fincen
+Which 3 countries have the least number of filings ending in them?,Verbose query,fincen
+Identify the top 3 filings with the smallest amounts that were filed in 2015.,Verbose query,fincen
+List the first 3 entities based in 'United Kingdom' that have filed something concerning a beneficiary in 'United States'.,Verbose query,fincen
+What are the top 5 filings concerning entities that are located at a latitude higher than 40 degrees?,Verbose query,fincen
+Which 3 entities have the most filings where they are both the originator and the beneficiary?,Verbose query,fincen
+List the first 3 countries that have entities which have filed more than 10 filings.,Verbose query,fincen
+Identify the top 3 filings where the originator and beneficiary banks are in the same country.,Verbose query,fincen
+Which 3 countries have entities that have been beneficiaries in the most filings?,Verbose query,fincen
+List the first 3 filings where the beneficiary bank and the filer organization name are the same.,Verbose query,fincen
+Find the top 5 countries where entities have filed the most filings that began in 2017.,Verbose query,fincen
+Which 3 filings have beneficiary banks located at a longitude less than 0?,Verbose query,fincen
+Identify the top 3 entities that have filed the least amount of filings but have the highest amounts in those filings.,Verbose query,fincen
+List the first 3 countries where the most filings have ended.,Verbose query,fincen
+What are the top 5 filings with the most entities involved as originators?,Verbose query,fincen
+Which 3 filings have the shortest duration from begin to end date?,Verbose query,fincen
+List the first 3 countries that have the most filings where the originator bank's country is different from the beneficiary bank's country.,Verbose query,fincen
+Identify the top 5 filings with the most entities involved as beneficiaries.,Verbose query,fincen
+Which 3 countries have entities that have filed the most concerning filings?,Verbose query,fincen
+List the first 3 filings made by entities located in countries with the top-level domain '.de'.,Verbose query,fincen
+Find the top 5 entities that have the most filings concerning entities in their own country.,Verbose query,fincen
+Which 3 countries have the most entities involved as beneficiaries in filings?,Verbose query,fincen
+Identify the top 3 filings with the latest end dates.,Verbose query,fincen
+List the first 3 entities based in 'Singapore' that have filed something concerning a beneficiary in 'Malaysia'.,Verbose query,fincen
+What are the top 5 filings by the amount that originated from entities in 'Germany'?,Verbose query,fincen
+Which 3 entities have filed the most filings that originated from a country other than their own?,Verbose query,fincen
+List the first 3 entities that have filed the most filings where the beneficiary bank's country is the same as the originator bank's country.,Verbose query,fincen
+Identify the top 3 filings where the originator bank and the beneficiary bank are located at the same latitude.,Verbose query,fincen
+Which 3 countries have the most filings where the originator bank's country is the same as the beneficiary bank's country?,Verbose query,fincen
+List the first 3 countries with the most filings where the beneficiary bank's country is different from the filer organization's country.,Verbose query,fincen
+What are the top 5 countries by the total number of filings that have entities as both originators and beneficiaries?,Verbose query,fincen
+Which characters have a book1BetweennessCentrality greater than 2000?,Simple Retrieval Queries,gameofthrones
+List the top 3 characters with the highest book45PageRank.,Simple Retrieval Queries,gameofthrones
+Find all characters with a centrality of 0 and limit the results to 5.,Simple Retrieval Queries,gameofthrones
+Who are the top 5 characters by degree in the database?,Simple Retrieval Queries,gameofthrones
+Retrieve the names of 3 characters who have a louvain community number of 1.,Simple Retrieval Queries,gameofthrones
+Which characters are part of a community number greater than 750?,Simple Retrieval Queries,gameofthrones
+List three characters with a pagerank less than 1.,Simple Retrieval Queries,gameofthrones
+Identify three characters whose fastrf_embedding includes a value greater than 1.,Simple Retrieval Queries,gameofthrones
+What are the names of the characters that have an INTERACTS45 relationship with a weight greater than 50?,Simple Retrieval Queries,gameofthrones
+Fetch the top 5 characters based on the book1PageRank.,Simple Retrieval Queries,gameofthrones
+"Find all characters involved in an INTERACTS relationship with a weight below 10, limit to 5 results.",Simple Retrieval Queries,gameofthrones
+Who are the characters with a community number between 600 and 700?,Simple Retrieval Queries,gameofthrones
+Retrieve the first 3 characters who interact in book 1 with a weight of exactly 291.,Simple Retrieval Queries,gameofthrones
+List the characters with an INTERACTS2 relationship of weight less than 20.,Simple Retrieval Queries,gameofthrones
+Who are the characters connected by an INTERACTS3 relationship with a weight above 80?,Simple Retrieval Queries,gameofthrones
+Find characters who have a book45PageRank less than 0.7 and limit the results to three.,Simple Retrieval Queries,gameofthrones
+Which characters have a fastrf_embedding first element below 0?,Simple Retrieval Queries,gameofthrones
+List the names of three characters who have a book1BetweennessCentrality of 0.,Simple Retrieval Queries,gameofthrones
+Retrieve the names of the characters who have a louvain community number of 6.,Simple Retrieval Queries,gameofthrones
+Find three characters whose degree is exactly 0.,Simple Retrieval Queries,gameofthrones
+Identify the characters with an INTERACTS relationship with a weight over 300.,Simple Retrieval Queries,gameofthrones
+What are the top 5 characters by centrality in the database?,Simple Retrieval Queries,gameofthrones
+List three characters with the highest pagerank in the database.,Simple Retrieval Queries,gameofthrones
+"Find characters involved in an INTERACTS1 relationship with a weight of 150, limit to 3 results.",Simple Retrieval Queries,gameofthrones
+Who are three characters connected by an INTERACTS45 relationship in book 45?,Simple Retrieval Queries,gameofthrones
+Retrieve characters with a book1PageRank greater than 5 and limit to 5 results.,Simple Retrieval Queries,gameofthrones
+Who are the characters with a community number less than 580?,Simple Retrieval Queries,gameofthrones
+List three characters whose degree is greater than 100.,Simple Retrieval Queries,gameofthrones
+Find characters with a pagerank between 2 and 3.,Simple Retrieval Queries,gameofthrones
+Who are three characters with a centrality exactly 0.8333333333333334?,Simple Retrieval Queries,gameofthrones
+Which characters have a 'book1PageRank' higher than 1? List the first 5.,Complex Retrieval Queries,gameofthrones
+Find all characters with a 'centrality' exactly at 0.5.,Complex Retrieval Queries,gameofthrones
+Who are the top 3 characters by 'degree' in the graph?,Complex Retrieval Queries,gameofthrones
+List all characters who have a 'book45PageRank' less than 1.,Complex Retrieval Queries,gameofthrones
+Which characters are part of community 579? Provide top 5 results.,Complex Retrieval Queries,gameofthrones
+Identify characters with a 'louvain' value of 1 and show the first 5.,Complex Retrieval Queries,gameofthrones
+What are the names of characters who interact with 'Theon-Greyjoy' in any book? List up to 5.,Complex Retrieval Queries,gameofthrones
+Who has the highest 'pagerank' among all characters? Show top 3.,Complex Retrieval Queries,gameofthrones
+Find characters that have 'book1BetweennessCentrality' greater than 100.,Complex Retrieval Queries,gameofthrones
+List the characters who have a 'degree' of zero.,Complex Retrieval Queries,gameofthrones
+Who are the top 5 characters by 'book1PageRank' in descending order?,Complex Retrieval Queries,gameofthrones
+Which characters have an 'INTERACTS45' relationship with a weight above 50?,Complex Retrieval Queries,gameofthrones
+Display characters with a 'community' of 642 and list top 3.,Complex Retrieval Queries,gameofthrones
+Find all characters that have interacted in 'book 2'.,Complex Retrieval Queries,gameofthrones
+Who interacted with 'Aegon-Frey-(son-of-Stevron)'? List first 3 characters.,Complex Retrieval Queries,gameofthrones
+Which characters from community 795 have 'pagerank' above 0.15?,Complex Retrieval Queries,gameofthrones
+Identify the top 5 characters by 'book45PageRank' who are in the same community as 'Murenmure'.,Complex Retrieval Queries,gameofthrones
+Who are the top 3 characters in terms of 'pagerank' who also have a 'louvain' value of 6?,Complex Retrieval Queries,gameofthrones
+List characters that have interacted in 'book 3' with a relationship weight less than 10.,Complex Retrieval Queries,gameofthrones
+Which characters have a 'book1BetweennessCentrality' of exactly 0 and are part of community 642?,Complex Retrieval Queries,gameofthrones
+Find the characters who have interacted with 'Roose-Bolton' in 'book 1'. List the top 5.,Complex Retrieval Queries,gameofthrones
+Who are the characters in the louvain community 5 with a 'book45PageRank' greater than 5?,Complex Retrieval Queries,gameofthrones
+List the top 3 characters by 'degree' who also have a 'book1PageRank' higher than 0.5.,Complex Retrieval Queries,gameofthrones
+Which characters have the lowest 'book1BetweennessCentrality' and are part of community 579? Provide first 3 results.,Complex Retrieval Queries,gameofthrones
+Identify all characters with a 'pagerank' below 0.2 and list top 3.,Complex Retrieval Queries,gameofthrones
+Which characters interacted in 'book 45' with a weight of exactly 96?,Complex Retrieval Queries,gameofthrones
+List the top 5 characters by 'centrality' who have a 'book45PageRank' above 1.,Complex Retrieval Queries,gameofthrones
+Find all characters that have 'INTERACTS3' relationship with a weight above 90.,Complex Retrieval Queries,gameofthrones
+Who are the top 3 characters with the highest 'book1BetweennessCentrality' in community 795?,Complex Retrieval Queries,gameofthrones
+Identify characters with a 'degree' over 100. List the first 5.,Complex Retrieval Queries,gameofthrones
+Which characters have interacted in 'book 1' with a weight less than 5?,Complex Retrieval Queries,gameofthrones
+Who are the characters with a 'louvain' value of 10? Provide first 3 names.,Complex Retrieval Queries,gameofthrones
+List the characters who have a 'book45PageRank' over 10.,Complex Retrieval Queries,gameofthrones
+Which characters have a 'community' number higher than 700 and a 'pagerank' above 1? List top 3.,Complex Retrieval Queries,gameofthrones
+Identify the characters with 'fastrf_embedding' values that start with a positive number. List the first 5.,Complex Retrieval Queries,gameofthrones
+Who has the highest 'book1BetweennessCentrality' among all characters? Show top 3.,Complex Retrieval Queries,gameofthrones
+Find characters that have 'INTERACTS1' relationship with a weight above 200.,Complex Retrieval Queries,gameofthrones
+Display characters with a 'community' of 504 and list top 3.,Complex Retrieval Queries,gameofthrones
+Find all characters that have interacted in 'book 2' and have a 'louvain' value greater than 5.,Complex Retrieval Queries,gameofthrones
+Who interacted with 'Walder-Rivers' in 'book 45'? List first 3 characters.,Complex Retrieval Queries,gameofthrones
+Which characters from community 642 have 'pagerank' above 1?,Complex Retrieval Queries,gameofthrones
+Identify the top 5 characters by 'book1PageRank' who are in the same community as 'Ryman-Frey'.,Complex Retrieval Queries,gameofthrones
+Who are the top 3 characters in terms of 'pagerank' who also have a 'louvain' value of 1?,Complex Retrieval Queries,gameofthrones
+List characters that have interacted in 'book 3' with a relationship weight of exactly 95.,Complex Retrieval Queries,gameofthrones
+Which characters have a 'book1BetweennessCentrality' of exactly 168.75234023581112 and are part of community 642?,Complex Retrieval Queries,gameofthrones
+Find the characters who have interacted with 'Murenmure' in 'book 45'. List the top 5.,Complex Retrieval Queries,gameofthrones
+Who are the characters in the louvain community 6 with a 'book45PageRank' greater than 3?,Complex Retrieval Queries,gameofthrones
+List the top 3 characters by 'degree' who also have a 'book1PageRank' higher than 1.,Complex Retrieval Queries,gameofthrones
+Which characters have the lowest 'book1BetweennessCentrality' and are part of community 642? Provide first 3 results.,Complex Retrieval Queries,gameofthrones
+Identify all characters with a 'pagerank' below 0.3 and list top 3.,Complex Retrieval Queries,gameofthrones
+Which characters interacted in 'book 45' with a weight of exactly 50?,Complex Retrieval Queries,gameofthrones
+List the top 5 characters by 'centrality' who have a 'book45PageRank' above 2.,Complex Retrieval Queries,gameofthrones
+Find all characters that have 'INTERACTS2' relationship with a weight above 50.,Complex Retrieval Queries,gameofthrones
+Who are the top 3 characters with the highest 'book1BetweennessCentrality' in community 504?,Complex Retrieval Queries,gameofthrones
+Identify characters with a 'degree' over 150. List the first 5.,Complex Retrieval Queries,gameofthrones
+Which characters have interacted in 'book 1' with a weight less than 10?,Complex Retrieval Queries,gameofthrones
+Who are the characters with a 'louvain' value of 0? Provide first 3 names.,Complex Retrieval Queries,gameofthrones
+List the characters who have a 'book45PageRank' over 11.,Complex Retrieval Queries,gameofthrones
+Which characters have a 'community' number higher than 600 and a 'pagerank' above 0.5? List top 3.,Complex Retrieval Queries,gameofthrones
+Identify the characters with 'fastrf_embedding' values that start with a negative number. List the first 5.,Complex Retrieval Queries,gameofthrones
+Who has the highest 'book1PageRank' among all characters? Show top 3.,Complex Retrieval Queries,gameofthrones
+Find characters that have 'INTERACTS1' relationship with a weight above 250.,Complex Retrieval Queries,gameofthrones
+Display characters with a 'community' of 735 and list top 3.,Complex Retrieval Queries,gameofthrones
+Find all characters that have interacted in 'book 2' and have a 'louvain' value greater than 3.,Complex Retrieval Queries,gameofthrones
+Who interacted with 'Aeron-Greyjoy' in 'book 45'? List first 3 characters.,Complex Retrieval Queries,gameofthrones
+Which characters from community 795 have 'pagerank' above 0.2?,Complex Retrieval Queries,gameofthrones
+Which characters have a book1PageRank greater than 5?,Simple Aggregation Queries,gameofthrones
+List all characters with a degree greater than 100.,Simple Aggregation Queries,gameofthrones
+What are the names of characters who have a centrality of 1.0?,Simple Aggregation Queries,gameofthrones
+Identify characters who belong to community 579.,Simple Aggregation Queries,gameofthrones
+Who are the top 5 characters with the highest pagerank?,Simple Aggregation Queries,gameofthrones
+Which characters have a book45PageRank less than 1?,Simple Aggregation Queries,gameofthrones
+List characters with a louvain community value of 6.,Simple Aggregation Queries,gameofthrones
+Who are the top 3 characters based on their book1BetweennessCentrality?,Simple Aggregation Queries,gameofthrones
+Which characters interact in book 1 with a weight greater than 50?,Simple Aggregation Queries,gameofthrones
+Who are characters that interact in book 45 with a weight of exactly 96?,Simple Aggregation Queries,gameofthrones
+Find all characters with fastrf_embedding values that include more than 0.5 in any dimension.,Simple Aggregation Queries,gameofthrones
+What are the names of characters with a degree of zero?,Simple Aggregation Queries,gameofthrones
+List characters whose louvain community index is less than 5.,Simple Aggregation Queries,gameofthrones
+Which characters have a community number between 600 and 700?,Simple Aggregation Queries,gameofthrones
+Identify the top 3 characters by degree in the graph.,Simple Aggregation Queries,gameofthrones
+Which characters have an INTERACTS relationship with a weight under 10?,Simple Aggregation Queries,gameofthrones
+What are the top 5 characters by book1PageRank in descending order?,Simple Aggregation Queries,gameofthrones
+List all characters with a book45PageRank above 8.,Simple Aggregation Queries,gameofthrones
+Who has the highest centrality score in the graph?,Simple Aggregation Queries,gameofthrones
+Identify characters who have interacted in book 2 with any weight.,Simple Aggregation Queries,gameofthrones
+List the characters who interact in book 3 with a weight over 50.,Simple Aggregation Queries,gameofthrones
+Which characters are in the same community as Daenerys Targaryen?,Simple Aggregation Queries,gameofthrones
+Who are the top 5 characters with the lowest book1BetweennessCentrality?,Simple Aggregation Queries,gameofthrones
+Identify characters with a pagerank higher than 4.,Simple Aggregation Queries,gameofthrones
+List all characters with a louvain value of 10.,Simple Aggregation Queries,gameofthrones
+Which characters have an INTERACTS1 relationship with a weight less than 100?,Simple Aggregation Queries,gameofthrones
+Who are the characters with a degree greater than 50 and less than 150?,Simple Aggregation Queries,gameofthrones
+List the characters whose name starts with 'A'.,Simple Aggregation Queries,gameofthrones
+Which characters have a community number exactly 795?,Simple Aggregation Queries,gameofthrones
+Identify characters with a fastrf_embedding first element greater than 0.5.,Simple Aggregation Queries,gameofthrones
+Who are the characters with the lowest book45PageRank?,Simple Aggregation Queries,gameofthrones
+List the characters with an INTERACTS2 relationship and a weight of 92.,Simple Aggregation Queries,gameofthrones
+Which characters have a book1PageRank exactly 0.15000000000000002?,Simple Aggregation Queries,gameofthrones
+Identify characters with a centrality less than 0.5.,Simple Aggregation Queries,gameofthrones
+List characters in community 504.,Simple Aggregation Queries,gameofthrones
+Which characters have an INTERACTS3 relationship with a weight over 90?,Simple Aggregation Queries,gameofthrones
+Who are the characters with a book45PageRank between 2 and 5?,Simple Aggregation Queries,gameofthrones
+List the characters that interact in book 45 with any character named 'Aegon-I-Targaryen'.,Simple Aggregation Queries,gameofthrones
+Who are the characters with a book1PageRank and a book45PageRank over 3?,Simple Aggregation Queries,gameofthrones
+Identify characters whose pagerank is exactly 0.15000000000000002.,Simple Aggregation Queries,gameofthrones
+List all characters with a degree less than 5 but greater than 0.,Simple Aggregation Queries,gameofthrones
+Which characters have a louvain community value of 3 and a pagerank over 2?,Simple Aggregation Queries,gameofthrones
+Identify the characters who interact with 'Theon-Greyjoy' in any book.,Simple Aggregation Queries,gameofthrones
+Who are the top 5 characters by degree in ascending order?,Simple Aggregation Queries,gameofthrones
+List characters whose fastrf_embedding tenth element is less than -0.5.,Simple Aggregation Queries,gameofthrones
+Which characters have a community number and a louvain value both above 600?,Simple Aggregation Queries,gameofthrones
+Identify characters with a book1BetweennessCentrality over 1000.,Simple Aggregation Queries,gameofthrones
+List the characters who interact in book 1 with a weight exactly 291.,Simple Aggregation Queries,gameofthrones
+Who are the characters with a book1PageRank less than 1 and a degree over 10?,Simple Aggregation Queries,gameofthrones
+Identify characters with an INTERACTS45 relationship and a weight between 10 and 50.,Simple Aggregation Queries,gameofthrones
+List all characters whose name ends in 'Targaryen'.,Simple Aggregation Queries,gameofthrones
+Which characters have a pagerank less than 0.5?,Simple Aggregation Queries,gameofthrones
+Identify the characters with a louvain value of exactly 2.,Simple Aggregation Queries,gameofthrones
+Who are the characters with a degree of 300?,Simple Aggregation Queries,gameofthrones
+List characters with a community number below 550.,Simple Aggregation Queries,gameofthrones
+Which characters have an INTERACTS relationship with a weight exactly 334?,Simple Aggregation Queries,gameofthrones
+Identify characters with a centrality exactly 0.0 and a degree over 20.,Simple Aggregation Queries,gameofthrones
+List the characters whose fastrf_embedding fifth element is greater than 0.5.,Simple Aggregation Queries,gameofthrones
+Who are the top 3 characters by book45PageRank?,Simple Aggregation Queries,gameofthrones
+List characters with a pagerank between 0.2 and 1.0.,Simple Aggregation Queries,gameofthrones
+Which characters have a book1PageRank less than 0.4?,Simple Aggregation Queries,gameofthrones
+Identify characters with a community number exactly 642.,Simple Aggregation Queries,gameofthrones
+List all characters with a book1BetweennessCentrality above 1500.,Simple Aggregation Queries,gameofthrones
+Who are the characters with an INTERACTS1 relationship and a weight under 30?,Simple Aggregation Queries,gameofthrones
+List the characters whose name contains 'Greyjoy'.,Simple Aggregation Queries,gameofthrones
+Which characters have a louvain value exactly 5 and a pagerank less than 2?,Simple Aggregation Queries,gameofthrones
+Identify characters with a degree exactly 125.,Simple Aggregation Queries,gameofthrones
+Who are the characters with a community number above 750?,Simple Aggregation Queries,gameofthrones
+Which characters have a degree greater than 100?,Pathfinding Queries,gameofthrones
+List all characters with a book1PageRank higher than 5.,Pathfinding Queries,gameofthrones
+Who are the top 5 characters by centrality metric?,Pathfinding Queries,gameofthrones
+Find characters with a book45PageRank less than 1.,Pathfinding Queries,gameofthrones
+Which characters belong to community 579?,Pathfinding Queries,gameofthrones
+Identify characters with a louvain value of 2.,Pathfinding Queries,gameofthrones
+What are the names of characters who have a pagerank above 8?,Pathfinding Queries,gameofthrones
+Which characters have a centrality of exactly 0?,Pathfinding Queries,gameofthrones
+List all characters who have a book1BetweennessCentrality greater than 1000.,Pathfinding Queries,gameofthrones
+Who are the characters with a degree under 10?,Pathfinding Queries,gameofthrones
+Find characters in the top 3 communities by number of members.,Pathfinding Queries,gameofthrones
+Who has the highest book45PageRank in community 759?,Pathfinding Queries,gameofthrones
+List characters with the lowest 5 book1PageRanks.,Pathfinding Queries,gameofthrones
+Which characters interact in book 1 with a weight greater than 100?,Pathfinding Queries,gameofthrones
+Identify the top 5 strongest INTERACTS relationships by weight.,Pathfinding Queries,gameofthrones
+What are the characters involved in the top 3 heaviest INTERACTS45 relationships?,Pathfinding Queries,gameofthrones
+List all characters who interact in book 2.,Pathfinding Queries,gameofthrones
+Who are the characters with an INTERACTS relationship of exact weight 45?,Pathfinding Queries,gameofthrones
+Find all characters connected by INTERACTS3 with a weight less than 20.,Pathfinding Queries,gameofthrones
+Which characters have an INTERACTS2 relationship with a book value of 2?,Pathfinding Queries,gameofthrones
+Identify all pairs of characters connected by INTERACTS where the weight is between 50 and 100.,Pathfinding Queries,gameofthrones
+List characters who share the same community and have INTERACTS relationships.,Pathfinding Queries,gameofthrones
+Find characters connected by any INTERACTS relationship with a weight over 200.,Pathfinding Queries,gameofthrones
+Who are the top 3 characters with the highest degree in community 795?,Pathfinding Queries,gameofthrones
+List the characters with a centrality between 0.2 and 0.5.,Pathfinding Queries,gameofthrones
+Which characters have a book1BetweennessCentrality of zero?,Pathfinding Queries,gameofthrones
+Identify the characters in the top 10% of pagerank values.,Pathfinding Queries,gameofthrones
+What are the names of characters with a degree of exactly 0?,Pathfinding Queries,gameofthrones
+List characters within louvain communities 0 to 5 with a pagerank greater than 0.5.,Pathfinding Queries,gameofthrones
+Find characters with a book1PageRank and book45PageRank both above 3.,Pathfinding Queries,gameofthrones
+Who are the characters with a louvain value higher than 5?,Pathfinding Queries,gameofthrones
+List the characters with a pagerank less than 0.2.,Pathfinding Queries,gameofthrones
+Which characters belong to the community with the highest number of relationships?,Pathfinding Queries,gameofthrones
+Identify characters with a centrality greater than 0.8 and a pagerank less than 0.4.,Pathfinding Queries,gameofthrones
+What are the names of characters who have a pagerank and a centrality of 0?,Pathfinding Queries,gameofthrones
+List all characters with a book1BetweennessCentrality lower than 50 and a book1PageRank higher than 2.,Pathfinding Queries,gameofthrones
+Who are the characters in community 504?,Pathfinding Queries,gameofthrones
+Find characters with a book45PageRank in the top 5 highest values.,Pathfinding Queries,gameofthrones
+Which characters have a centrality less than 0.1?,Pathfinding Queries,gameofthrones
+List characters with the highest 5 book1PageRanks in community 795.,Pathfinding Queries,gameofthrones
+Identify characters in community 578 with a pagerank above 0.3.,Pathfinding Queries,gameofthrones
+What are the names of characters with a degree between 50 and 100?,Pathfinding Queries,gameofthrones
+List all characters with a centrality of 1.,Pathfinding Queries,gameofthrones
+Who are the characters with a louvain value of 1 and a pagerank above 0.5?,Pathfinding Queries,gameofthrones
+Find characters with a book1PageRank less than 1 and a degree greater than 10.,Pathfinding Queries,gameofthrones
+Which characters are connected by INTERACTS1 with a weight less than 10?,Pathfinding Queries,gameofthrones
+Identify the top 3 most frequent communities in INTERACTS relationships.,Pathfinding Queries,gameofthrones
+List characters who interact in book 45 with a weight greater than 90.,Pathfinding Queries,gameofthrones
+Find the characters involved in the heaviest INTERACTS3 relationship.,Pathfinding Queries,gameofthrones
+Who are the characters with an INTERACTS2 relationship with a weight exactly 92?,Pathfinding Queries,gameofthrones
+Which characters have an INTERACTS relationship in book 1 with a weight over 150?,Pathfinding Queries,gameofthrones
+Identify characters with a centrality greater than 0.5 and a book1BetweennessCentrality less than 100.,Pathfinding Queries,gameofthrones
+List characters with a pagerank greater than 7 and a degree less than 50.,Pathfinding Queries,gameofthrones
+Find characters in the top 3 louvain communities by centrality.,Pathfinding Queries,gameofthrones
+Who has the lowest book1PageRank in community 579?,Pathfinding Queries,gameofthrones
+List the characters with a centrality between 0.5 and 0.8.,Pathfinding Queries,gameofthrones
+Which characters have a book1BetweennessCentrality of exactly 2604.7556467555924?,Pathfinding Queries,gameofthrones
+Identify characters with a degree greater than 20 and a pagerank less than 0.3.,Pathfinding Queries,gameofthrones
+What are the names of characters with a degree of 300?,Pathfinding Queries,gameofthrones
+List characters within louvain community 1 with a pagerank greater than 0.4.,Pathfinding Queries,gameofthrones
+Find characters with a book1PageRank and book45PageRank both under 2.,Pathfinding Queries,gameofthrones
+Who are the characters with a louvain value less than 1?,Pathfinding Queries,gameofthrones
+List the characters with a pagerank less than 0.15.,Pathfinding Queries,gameofthrones
+Which characters belong to the community with the lowest number of relationships?,Pathfinding Queries,gameofthrones
+Identify characters with a centrality greater than 0.9 and a pagerank less than 0.5.,Pathfinding Queries,gameofthrones
+What are the names of characters who have a pagerank and a centrality of 1?,Pathfinding Queries,gameofthrones
+List all characters with a book1BetweennessCentrality higher than 2000 and a book1PageRank lower than 3.,Pathfinding Queries,gameofthrones
+Who are the characters in community 795 with a pagerank above 0.5?,Pathfinding Queries,gameofthrones
+Find characters with a book45PageRank in the top 10 highest values.,Pathfinding Queries,gameofthrones
+Which characters have a centrality less than 0.05?,Pathfinding Queries,gameofthrones
+List characters with the highest 3 book1PageRanks in community 504.,Pathfinding Queries,gameofthrones
+Identify characters in community 759 with a pagerank above 0.4.,Pathfinding Queries,gameofthrones
+What are the names of characters with a degree between 10 and 20?,Pathfinding Queries,gameofthrones
+List all characters with a centrality of 0.5.,Pathfinding Queries,gameofthrones
+Who are the characters with a louvain value of 3 and a pagerank above 0.6?,Pathfinding Queries,gameofthrones
+Find characters with a book1PageRank less than 0.5 and a degree greater than 5.,Pathfinding Queries,gameofthrones
+Which characters are connected by INTERACTS1 with a weight greater than 200?,Pathfinding Queries,gameofthrones
+Identify the top 5 most frequent communities in INTERACTS1 relationships.,Pathfinding Queries,gameofthrones
+List characters who interact in book 45 with a weight greater than 95.,Pathfinding Queries,gameofthrones
+Find the characters involved in the heaviest INTERACTS2 relationship.,Pathfinding Queries,gameofthrones
+Who are the characters with an INTERACTS3 relationship with a weight exactly 95?,Pathfinding Queries,gameofthrones
+Which characters have an INTERACTS relationship in book 1 with a weight over 250?,Pathfinding Queries,gameofthrones
+Which characters have a book1PageRank greater than 3?,Complex Aggregation Queries,gameofthrones
+List all characters with a degree higher than 100.,Complex Aggregation Queries,gameofthrones
+Find characters with a book45PageRank below 1.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters by pagerank?,Complex Aggregation Queries,gameofthrones
+Identify characters that have a centrality of 0.,Complex Aggregation Queries,gameofthrones
+Which characters are part of community 584?,Complex Aggregation Queries,gameofthrones
+Who has the highest book1BetweennessCentrality?,Complex Aggregation Queries,gameofthrones
+List characters with a centrality greater than 0.5.,Complex Aggregation Queries,gameofthrones
+Which characters belong to the louvain community 3?,Complex Aggregation Queries,gameofthrones
+List the top 3 characters by book1BetweennessCentrality.,Complex Aggregation Queries,gameofthrones
+Who interacts in book 45 with a weight greater than 90?,Complex Aggregation Queries,gameofthrones
+Find characters with an INTERACTS relationship having a weight over 100.,Complex Aggregation Queries,gameofthrones
+Which characters have an INTERACTS2 relationship in book 2?,Complex Aggregation Queries,gameofthrones
+List characters with INTERACTS3 relationships in book 3 with weights greater than 50.,Complex Aggregation Queries,gameofthrones
+Who has the highest weight in an INTERACTS1 relationship?,Complex Aggregation Queries,gameofthrones
+Find characters that interact with a weight of exactly 92 in book 2.,Complex Aggregation Queries,gameofthrones
+Which characters have the least centrality but more than 30 degree?,Complex Aggregation Queries,gameofthrones
+List characters with a pagerank less than 1 but more than 0.5.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the highest degree?,Complex Aggregation Queries,gameofthrones
+Find characters with a louvain value of 0 and a community above 750.,Complex Aggregation Queries,gameofthrones
+Which characters have a book1PageRank exactly 0.15?,Complex Aggregation Queries,gameofthrones
+List all characters with a book45PageRank above 10.,Complex Aggregation Queries,gameofthrones
+Find characters in community 578 with a degree of 0.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters with the lowest book1BetweennessCentrality?,Complex Aggregation Queries,gameofthrones
+Which characters belong to louvain community 1 and have a pagerank above 1?,Complex Aggregation Queries,gameofthrones
+List characters with an INTERACTS relationship having a weight below 10.,Complex Aggregation Queries,gameofthrones
+Find characters with INTERACTS2 relationships in book 2 with a weight less than 20.,Complex Aggregation Queries,gameofthrones
+Who has the lowest weight in an INTERACTS3 relationship?,Complex Aggregation Queries,gameofthrones
+List characters with a louvain value of 1 and a degree above 50.,Complex Aggregation Queries,gameofthrones
+Find characters with a book1PageRank between 2 and 4.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the highest book1PageRank?,Complex Aggregation Queries,gameofthrones
+List characters with a book45PageRank of exactly 2.,Complex Aggregation Queries,gameofthrones
+Find characters in community 759 with a pagerank less than 1.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters by centrality?,Complex Aggregation Queries,gameofthrones
+Which characters have a degree exactly 300?,Complex Aggregation Queries,gameofthrones
+List characters with a pagerank greater than 8.,Complex Aggregation Queries,gameofthrones
+Find characters with a centrality less than 0.1 and a book1PageRank above 5.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the lowest pagerank?,Complex Aggregation Queries,gameofthrones
+List characters with a louvain value of 0 and a community below 600.,Complex Aggregation Queries,gameofthrones
+Find characters with a degree between 50 and 100.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the lowest book45PageRank?,Complex Aggregation Queries,gameofthrones
+List characters with a centrality above 0.5 and a book1PageRank below 1.,Complex Aggregation Queries,gameofthrones
+Find characters in community 584 with a pagerank above 9.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters by book45PageRank?,Complex Aggregation Queries,gameofthrones
+Which characters have a degree less than 10?,Complex Aggregation Queries,gameofthrones
+List characters with a pagerank of exactly 0.15.,Complex Aggregation Queries,gameofthrones
+Find characters with a centrality above 0.2 and a book1BetweennessCentrality above 1000.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the highest centrality?,Complex Aggregation Queries,gameofthrones
+List characters with a louvain value of 2 and a degree above 20.,Complex Aggregation Queries,gameofthrones
+Find characters with a book1PageRank of exactly 8.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters with the lowest degree?,Complex Aggregation Queries,gameofthrones
+List characters with a centrality below 0.1 and a pagerank above 2.,Complex Aggregation Queries,gameofthrones
+Find characters in community 759 with a book45PageRank less than 4.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters by book1BetweennessCentrality?,Complex Aggregation Queries,gameofthrones
+List characters with a book45PageRank above 5 and a community of 584.,Complex Aggregation Queries,gameofthrones
+Find characters with a pagerank above 7 and a degree above 150.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters with the highest weight in INTERACTS relationships?,Complex Aggregation Queries,gameofthrones
+List characters with a book1PageRank below 0.2 and a degree above 10.,Complex Aggregation Queries,gameofthrones
+Find characters with a centrality above 0.3 and a louvain value of 1.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the lowest book1PageRank?,Complex Aggregation Queries,gameofthrones
+List characters with a pagerank below 0.5.,Complex Aggregation Queries,gameofthrones
+Find characters in community 578 with a book1BetweennessCentrality above 500.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters with the lowest pagerank?,Complex Aggregation Queries,gameofthrones
+List characters with a louvain value of 3 and a degree below 5.,Complex Aggregation Queries,gameofthrones
+Find characters with a centrality below 0.2 and a book45PageRank above 3.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters by degree?,Complex Aggregation Queries,gameofthrones
+List characters with a pagerank above 9.,Complex Aggregation Queries,gameofthrones
+Find characters with a centrality above 0.4 and a book1PageRank below 0.3.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters with the highest weight in INTERACTS1 relationships?,Complex Aggregation Queries,gameofthrones
+List characters with a book1BetweennessCentrality above 2000.,Complex Aggregation Queries,gameofthrones
+Find characters with a centrality below 0.1 and a louvain value above 5.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the lowest centrality?,Complex Aggregation Queries,gameofthrones
+List characters with a book45PageRank below 1.5.,Complex Aggregation Queries,gameofthrones
+Find characters in community 759 with a degree above 30.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters with the highest book1BetweennessCentrality?,Complex Aggregation Queries,gameofthrones
+List characters with a centrality above 0.6 and a pagerank below 1.,Complex Aggregation Queries,gameofthrones
+Find characters with a book1PageRank above 5 and a community of 578.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the highest weight in INTERACTS2 relationships?,Complex Aggregation Queries,gameofthrones
+List characters with a centrality below 0.4 and a book45PageRank above 2.,Complex Aggregation Queries,gameofthrones
+Find characters with a pagerank below 0.6 and a degree above 20.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters with the lowest book45PageRank?,Complex Aggregation Queries,gameofthrones
+List characters with a community above 750 and a pagerank below 1.,Complex Aggregation Queries,gameofthrones
+Find characters with a centrality above 0.5 and a book1BetweennessCentrality above 3000.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the lowest weight in INTERACTS3 relationships?,Complex Aggregation Queries,gameofthrones
+List characters with a louvain value of 0 and a pagerank above 8.,Complex Aggregation Queries,gameofthrones
+Find characters with a book1PageRank below 0.25 and a degree above 5.,Complex Aggregation Queries,gameofthrones
+Who are the top 3 characters with the highest centrality?,Complex Aggregation Queries,gameofthrones
+List characters with a community of 795 and a pagerank below 0.2.,Complex Aggregation Queries,gameofthrones
+Find characters with a centrality above 0.8 and a book1BetweennessCentrality above 4000.,Complex Aggregation Queries,gameofthrones
+Who are the top 5 characters with the highest weight in INTERACTS45 relationships?,Complex Aggregation Queries,gameofthrones
+What are the names of the top 5 characters with the highest book1PageRank?,Verbose query,gameofthrones
+List the top 3 characters with the highest degree of centrality.,Verbose query,gameofthrones
+Which characters have a louvain community number less than 5? Limit to 5 characters.,Verbose query,gameofthrones
+Identify 3 characters with a book45PageRank greater than 5.,Verbose query,gameofthrones
+Who are the top 5 characters by pagerank in the entire dataset?,Verbose query,gameofthrones
+What are the names of the characters who have a degree greater than 50?,Verbose query,gameofthrones
+Name 3 characters from the community with the highest number of members.,Verbose query,gameofthrones
+List the top 3 characters with the least betweenness centrality in book 1.,Verbose query,gameofthrones
+Who are the characters with a louvain value of 0? Limit to top 5.,Verbose query,gameofthrones
+Find the top 5 characters with the highest weight in INTERACTS relationship.,Verbose query,gameofthrones
+Which characters interact in book 1 with a weight greater than 100?,Verbose query,gameofthrones
+Name the characters involved in the INTERACTS2 relationship with the highest weights. Limit to 3 characters.,Verbose query,gameofthrones
+List the characters who have more than one type of INTERACTS relationship. Limit to 5 characters.,Verbose query,gameofthrones
+Who are the top 5 characters with the lowest book1PageRank but more than zero degree?,Verbose query,gameofthrones
+Find 3 characters with fastrf_embedding values where the first element is greater than 0.5.,Verbose query,gameofthrones
+What are the top 3 characters with a community number exactly 579?,Verbose query,gameofthrones
+Identify characters who have both high pagerank and high degree of centrality. Limit to top 5.,Verbose query,gameofthrones
+Which characters have a book45PageRank less than 1 but a book1PageRank greater than 2?,Verbose query,gameofthrones
+Name the 3 characters with the highest INTERACTS3 relationship weight.,Verbose query,gameofthrones
+List the top 5 characters based on the sum weight of their INTERACTS1 and INTERACTS2 relationships.,Verbose query,gameofthrones
+Find 3 characters with the most diverse fastrf_embedding values (considering range between max and min in the list).,Verbose query,gameofthrones
+Who has the highest book1BetweennessCentrality and is from community 759?,Verbose query,gameofthrones
+What are the names of characters with a louvain value of 1 and degree greater than 10?,Verbose query,gameofthrones
+Identify the top 3 characters with the lowest pagerank but who interact in book 45.,Verbose query,gameofthrones
+List the characters who are part of both community 578 and 579. Limit to 5 characters.,Verbose query,gameofthrones
+Name the characters with a degree of zero and a centrality greater than 0.5.,Verbose query,gameofthrones
+Who are the top 5 characters in terms of INTERACTS45 weight?,Verbose query,gameofthrones
+List 3 characters with a book1PageRank less than 1 but an INTERACTS weight greater than 150.,Verbose query,gameofthrones
+Find the characters who have a louvain community number of 10 and a pagerank greater than 0.5.,Verbose query,gameofthrones
+Which characters have the lowest degree but are part of community 795? Limit to top 5.,Verbose query,gameofthrones
+Identify the top 3 characters based on the sum of their centrality values across all books.,Verbose query,gameofthrones
+List the characters with the highest sum of INTERACTS weights across all books. Limit to top 5.,Verbose query,gameofthrones
+Who are the top 3 characters based on the combination of book1PageRank and book45PageRank?,Verbose query,gameofthrones
+Find the characters with a community number less than 600 and a centrality of 1.,Verbose query,gameofthrones
+Name the top 5 characters with the highest degree in the entire dataset.,Verbose query,gameofthrones
+What are the names of characters who have an INTERACTS1 book value of 1 and a weight greater than 50?,Verbose query,gameofthrones
+List the top 3 characters with the highest book1BetweennessCentrality.,Verbose query,gameofthrones
+Identify characters with a pagerank less than 0.2 but a degree greater than 10.,Verbose query,gameofthrones
+Which characters are in the top 5 for louvain community size?,Verbose query,gameofthrones
+Who are the characters with a fastrf_embedding value at the last position less than -0.5? Limit to 3 characters.,Verbose query,gameofthrones
+Identify the top 5 characters with the most interactions in book 3.,Verbose query,gameofthrones
+List the characters who have a centrality value of exactly 0.8. Limit to top 5.,Verbose query,gameofthrones
+Name the 3 characters with the highest pagerank in book 45.,Verbose query,gameofthrones
+What are the names of the top 5 characters by degree who are also in louvain community 2?,Verbose query,gameofthrones
+Find the characters with a book1PageRank greater than 3 and a book45PageRank less than 2.,Verbose query,gameofthrones
+Who are the top 3 characters based on the sum of weights in their INTERACTS and INTERACTS3 relationships?,Verbose query,gameofthrones
+List the characters who are part of community 504 and have a degree greater than 20.,Verbose query,gameofthrones
+Identify the top 5 characters based on the average of their centrality values across all books.,Verbose query,gameofthrones
+Which characters have the highest sum of pagerank values across all books? Limit to top 5.,Verbose query,gameofthrones
+Name the characters with a louvain value of 6 and a pagerank greater than 0.3.,Verbose query,gameofthrones
+List the top 5 characters with a community number exactly 795.,Verbose query,gameofthrones
+Find the characters who have a degree of zero and a book1PageRank greater than 0.5.,Verbose query,gameofthrones
+Who are the top 5 characters with the lowest book45PageRank but a book1PageRank greater than 4?,Verbose query,gameofthrones
+List the characters with a pagerank above 0.5 and an INTERACTS weight over 200.,Verbose query,gameofthrones
+What are the names of characters who have an INTERACTS2 book value of 2 and a weight greater than 50?,Verbose query,gameofthrones
+Identify the top 3 characters with the highest book1BetweennessCentrality and a community number of 759.,Verbose query,gameofthrones
+Which characters are in the top 5 for the sum of their INTERACTS1 and INTERACTS2 weights?,Verbose query,gameofthrones
+Name the top 3 characters based on the sum of their book1PageRank and book45PageRank.,Verbose query,gameofthrones
+List the characters with a community number less than 600 and a pagerank greater than 0.4.,Verbose query,gameofthrones
+Who are the top 5 characters based on the combination of centrality and degree?,Verbose query,gameofthrones
+Find the characters with a book1PageRank less than 2 and a community number greater than 750.,Verbose query,gameofthrones
+What are the names of the top 5 characters by pagerank who also have a centrality greater than 0.5?,Verbose query,gameofthrones
+List the top 3 characters with the highest INTERACTS3 relationship weight.,Verbose query,gameofthrones
+What are the addresses of the first 3 businesses in Missoula?,Simple Retrieval Queries,grandstack
+Which users wrote reviews with a rating of 5 stars?,Simple Retrieval Queries,grandstack
+List the names of businesses located in 'San Mateo'.,Simple Retrieval Queries,grandstack
+Which business has the address '301 E Main St'?,Simple Retrieval Queries,grandstack
+How many businesses are located in Burlingame?,Simple Retrieval Queries,grandstack
+Find the top 5 most recent reviews.,Simple Retrieval Queries,grandstack
+Who wrote the earliest review in the dataset?,Simple Retrieval Queries,grandstack
+What is the name of the business reviewed by user with userId 'u1'?,Simple Retrieval Queries,grandstack
+What are the categories of the businesses on 'W Broadway St'?,Simple Retrieval Queries,grandstack
+Which businesses have a rating of 3.5 or higher?,Simple Retrieval Queries,grandstack
+List all businesses that have been reviewed by 'Jenny'.,Simple Retrieval Queries,grandstack
+What are the names of the businesses that serve as libraries?,Simple Retrieval Queries,grandstack
+Which businesses are categorized under 'Coffee'?,Simple Retrieval Queries,grandstack
+What are the first 3 businesses reviewed in 2018?,Simple Retrieval Queries,grandstack
+What are the names of users who reviewed businesses in 'CA'?,Simple Retrieval Queries,grandstack
+Which user has reviewed 'Zootown Brew'?,Simple Retrieval Queries,grandstack
+What are the addresses of businesses in state 'MT'?,Simple Retrieval Queries,grandstack
+List the businesses that have been reviewed more than once.,Simple Retrieval Queries,grandstack
+What are the names of all categories associated with 'Neo4j'?,Simple Retrieval Queries,grandstack
+Which businesses have reviews written on '2016-11-21'?,Simple Retrieval Queries,grandstack
+What are the business names and their categories on 'E Front St'?,Simple Retrieval Queries,grandstack
+Which reviews mention 'great selection'?,Simple Retrieval Queries,grandstack
+List the names of businesses and their cities with reviews rating exactly 4.0.,Simple Retrieval Queries,grandstack
+How many reviews have been written for businesses in 'San Mateo'?,Simple Retrieval Queries,grandstack
+Which business located at '723 California Dr' has been reviewed?,Simple Retrieval Queries,grandstack
+What are the names and addresses of businesses located in 'MT'?,Simple Retrieval Queries,grandstack
+List all users who have written a review in September 2018.,Simple Retrieval Queries,grandstack
+What are the business names and categories for businesses on 'Pine St'?,Simple Retrieval Queries,grandstack
+Which reviews were written before 2017?,Simple Retrieval Queries,grandstack
+What are the names of businesses with a review that mentions 'breakfast'?,Simple Retrieval Queries,grandstack
+What is the state of the business named 'Market on Front'?,Simple Retrieval Queries,grandstack
+How many businesses are there in each city listed in the schema?,Simple Retrieval Queries,grandstack
+Which user wrote a review for 'Missoula Public Library'?,Simple Retrieval Queries,grandstack
+Name all businesses that have a review mentioning 'IPA'.,Simple Retrieval Queries,grandstack
+Which businesses have been reviewed by users named 'Angie'?,Simple Retrieval Queries,grandstack
+Which businesses are located at '716 N San Mateo Dr'?,Simple Retrieval Queries,grandstack
+List the businesses and their review text for reviews with more than 4.5 stars.,Simple Retrieval Queries,grandstack
+What is the location point of 'Ninja Mike's'?,Simple Retrieval Queries,grandstack
+Who wrote the review with the highest star rating?,Simple Retrieval Queries,grandstack
+List the reviews written by 'Bob'.,Simple Retrieval Queries,grandstack
+What are the names of businesses located on 'Broadway St' and their categories?,Simple Retrieval Queries,grandstack
+Which businesses in 'Missoula' have a review with exactly 5 stars?,Simple Retrieval Queries,grandstack
+Which reviews discuss 'car wash'?,Simple Retrieval Queries,grandstack
+How many different categories are there for businesses in 'CA'?,Simple Retrieval Queries,grandstack
+What are the names of businesses with reviews written in August 2018?,Simple Retrieval Queries,grandstack
+What are the names of businesses located at '301 E Main St' and their review dates?,Simple Retrieval Queries,grandstack
+Which user has reviewed businesses in both 'Missoula' and 'San Mateo'?,Simple Retrieval Queries,grandstack
+List the reviews mentioning 'world leading' and the businesses they review.,Simple Retrieval Queries,grandstack
+What is the category of the business located at '1151 W Broadway St'?,Simple Retrieval Queries,grandstack
+Which categories have more than one business in Missoula?,Simple Retrieval Queries,grandstack
+List the business names and their review stars for businesses on 'Main St'.,Simple Retrieval Queries,grandstack
+Who are the users that have reviewed 'Imagine Nation Brewing'?,Simple Retrieval Queries,grandstack
+What are the exact addresses of businesses categorized as 'Coffee' in 'Burlingame'?,Simple Retrieval Queries,grandstack
+Which businesses have reviews from more than one user?,Simple Retrieval Queries,grandstack
+List the reviews mentioning 'selection' and their corresponding businesses.,Simple Retrieval Queries,grandstack
+What are the names of businesses in 'San Mateo' and their addresses?,Simple Retrieval Queries,grandstack
+Give the review texts for businesses reviewed on '2017-05-03'.,Simple Retrieval Queries,grandstack
+Which businesses in 'CA' have been reviewed by 'Jenny'?,Simple Retrieval Queries,grandstack
+What are the names of businesses and their states for those located on '1st St W'?,Simple Retrieval Queries,grandstack
+List all the business names and review dates for businesses in 'Burlingame'.,Simple Retrieval Queries,grandstack
+Which businesses have reviews mentioning 'sandwich'?,Simple Retrieval Queries,grandstack
+What are the categories of businesses at '200 W Pine St'?,Simple Retrieval Queries,grandstack
+Who wrote the review for 'Hanabi' and what was the star rating?,Simple Retrieval Queries,grandstack
+Which businesses in 'MT' have reviews written in 2016?,Simple Retrieval Queries,grandstack
+List the businesses on 'E 5th Ave' and their review texts.,Simple Retrieval Queries,grandstack
+What are the business names in 'Missoula' categorized under 'Brewery'?,Simple Retrieval Queries,grandstack
+Which business on 'California Dr' has the highest number of reviews?,Simple Retrieval Queries,grandstack
+List the businesses located at '716 N San Mateo Dr' and their categories.,Simple Retrieval Queries,grandstack
+What are the review texts for businesses rated exactly 3 stars?,Simple Retrieval Queries,grandstack
+Which reviews were written by 'Will'?,Simple Retrieval Queries,grandstack
+What are the businesses reviewed on '2018-09-10' and who wrote the reviews?,Simple Retrieval Queries,grandstack
+List the businesses in 'San Mateo' along with their review stars.,Simple Retrieval Queries,grandstack
+What are the names of users who wrote reviews in '2016'?,Simple Retrieval Queries,grandstack
+Which businesses have a library category and are located in 'CA'?,Simple Retrieval Queries,grandstack
+List the business addresses and their user reviews in 'Burlingame'.,Simple Retrieval Queries,grandstack
+What categories does 'Zootown Brew' belong to and what are the reviews?,Simple Retrieval Queries,grandstack
+Which businesses have a POINT location with a latitude greater than 37 degrees?,Simple Retrieval Queries,grandstack
+Which businesses in 'Missoula' have reviews mentioning 'IPA'?,Simple Retrieval Queries,grandstack
+List the reviews and their business names for businesses on 'Pine St'.,Simple Retrieval Queries,grandstack
+What are the business names and their locations for businesses reviewed by 'Angie'?,Simple Retrieval Queries,grandstack
+Who wrote the most recent review and for which business?,Simple Retrieval Queries,grandstack
+What are the review texts and dates for businesses on 'Broadway St'?,Simple Retrieval Queries,grandstack
+List all business names and their categories located in 'CA'.,Simple Retrieval Queries,grandstack
+Who wrote reviews for businesses with addresses on 'Main St'?,Simple Retrieval Queries,grandstack
+What are the businesses in 'MT' reviewed by users named 'Bob'?,Simple Retrieval Queries,grandstack
+What are the names of businesses and their review stars located on '1st St W'?,Simple Retrieval Queries,grandstack
+Which businesses in 'CA' have reviews mentioning 'great'?,Simple Retrieval Queries,grandstack
+What are the names and categories of businesses at '313 N 1st St W'?,Simple Retrieval Queries,grandstack
+Who wrote the review for 'Neo4j' and what was the star rating?,Simple Retrieval Queries,grandstack
+What are the review texts for the businesses with the lowest star ratings?,Simple Retrieval Queries,grandstack
+List the businesses on 'Front St' and their categories.,Simple Retrieval Queries,grandstack
+Which businesses in 'San Mateo' have been reviewed in 2017?,Simple Retrieval Queries,grandstack
+List the names of all businesses located in 'Missoula'.,Complex Retrieval Queries,grandstack
+Which businesses have a 'Beer' category in their classification?,Complex Retrieval Queries,grandstack
+Find all users who have written a review with a 5-star rating.,Complex Retrieval Queries,grandstack
+Show all businesses located at '301 E Main St'.,Complex Retrieval Queries,grandstack
+What are the names of businesses that have received reviews with a rating of 4 or higher?,Complex Retrieval Queries,grandstack
+Display the names and cities of businesses that are in the 'Library' category.,Complex Retrieval Queries,grandstack
+Which businesses in 'San Mateo' are reviewed by 'Jenny'?,Complex Retrieval Queries,grandstack
+Identify all reviews written by 'Bob'.,Complex Retrieval Queries,grandstack
+Find the names of businesses that are located in 'CA' and have been reviewed.,Complex Retrieval Queries,grandstack
+List the names of businesses along with their categories located in 'Burlingame'.,Complex Retrieval Queries,grandstack
+Which users have reviewed businesses located at '1151 W Broadway St'?,Complex Retrieval Queries,grandstack
+Show the businesses that have the highest number of reviews.,Complex Retrieval Queries,grandstack
+Find businesses in 'Missoula' with reviews dated after 2017-01-01.,Complex Retrieval Queries,grandstack
+List the names of businesses along with their reviews and ratings.,Complex Retrieval Queries,grandstack
+Which businesses are categorized under 'Coffee' and have reviews with text mentioning 'best'?,Complex Retrieval Queries,grandstack
+Display the top 5 businesses with the highest average review rating.,Complex Retrieval Queries,grandstack
+Identify the businesses reviewed by 'Angie' and list the corresponding review texts.,Complex Retrieval Queries,grandstack
+Show businesses that are both in 'Beer' and 'Coffee' categories.,Complex Retrieval Queries,grandstack
+Which businesses in 'Missoula' have an address starting with '2'?,Complex Retrieval Queries,grandstack
+List the users who have written reviews for businesses in 'San Mateo'.,Complex Retrieval Queries,grandstack
+Find all reviews for 'Imagine Nation Brewing' and their corresponding stars.,Complex Retrieval Queries,grandstack
+Which user has reviewed 'Zootown Brew' and what was the star rating?,Complex Retrieval Queries,grandstack
+Display all businesses reviewed by 'Will' and their locations.,Complex Retrieval Queries,grandstack
+List all categories available for businesses in 'Burlingame'.,Complex Retrieval Queries,grandstack
+Show the reviews and their dates for businesses located on 'W Broadway St'.,Complex Retrieval Queries,grandstack
+What are the business names and addresses for all businesses in 'CA'?,Complex Retrieval Queries,grandstack
+Find the names and review texts of businesses with a rating less than 4.,Complex Retrieval Queries,grandstack
+Which businesses have reviews written in 2016 and are located in 'CA'?,Complex Retrieval Queries,grandstack
+List the businesses named 'Neo4j' and their reviews.,Complex Retrieval Queries,grandstack
+Display the names of users who have written reviews for 'Coffee' category businesses.,Complex Retrieval Queries,grandstack
+Which businesses in 'Burlingame' have been reviewed by users with names starting with 'A'?,Complex Retrieval Queries,grandstack
+Show the reviews and stars for businesses located on 'E Front St'.,Complex Retrieval Queries,grandstack
+Find businesses with names containing 'Brew' and their review texts.,Complex Retrieval Queries,grandstack
+List all the reviews with a date in 2017 for businesses in 'Missoula'.,Complex Retrieval Queries,grandstack
+Which businesses are located at '716 N San Mateo Dr' and what are their categories?,Complex Retrieval Queries,grandstack
+Display all businesses in 'CA' that have been reviewed by 'Jenny' and show their review texts.,Complex Retrieval Queries,grandstack
+What are the names of all businesses that have been reviewed and are located in 'MT'?,Complex Retrieval Queries,grandstack
+Find businesses with the name 'KettleHouse Brewing Co.' and their categories.,Complex Retrieval Queries,grandstack
+List all categories for 'Ducky's Car Wash' and its reviews.,Complex Retrieval Queries,grandstack
+Which users have written reviews for businesses in the 'Library' category?,Complex Retrieval Queries,grandstack
+Show the reviews for 'Market on Front' along with the review dates and stars.,Complex Retrieval Queries,grandstack
+Find the businesses in 'San Mateo' with reviews mentioning 'car wash'.,Complex Retrieval Queries,grandstack
+List all businesses in 'Missoula' and their categories.,Complex Retrieval Queries,grandstack
+Which businesses have been reviewed by 'Will' and are located in 'CA'?,Complex Retrieval Queries,grandstack
+Display the reviews and their texts for businesses on '1st St W'.,Complex Retrieval Queries,grandstack
+What are the business names and categories for all businesses in 'Missoula' that are located on 'Broadway St'?,Complex Retrieval Queries,grandstack
+Find the categories and addresses of businesses that have been reviewed by 'Bob'.,Complex Retrieval Queries,grandstack
+List the businesses with a 'Library' category and their reviews.,Complex Retrieval Queries,grandstack
+Which businesses in 'San Mateo' have been reviewed by 'Angie' and what were the ratings?,Complex Retrieval Queries,grandstack
+Show all reviews written by 'Jenny' for businesses in 'Coffee' category.,Complex Retrieval Queries,grandstack
+Find the businesses in 'Burlingame' that are located on 'California Dr' and their categories.,Complex Retrieval Queries,grandstack
+List all reviews for businesses in 'San Mateo' with a review text containing 'leading'.,Complex Retrieval Queries,grandstack
+Display the names and addresses of businesses in 'MT' with reviews dated before 2017.,Complex Retrieval Queries,grandstack
+What are the businesses located at '200 W Pine St' and their reviews?,Complex Retrieval Queries,grandstack
+Which businesses in 'CA' have a 'Coffee' category and what are their review ratings?,Complex Retrieval Queries,grandstack
+Which businesses are located in Missoula and in the 'Beer' category?,Simple Aggregation Queries,grandstack
+List the top 5 reviews with the highest stars rating.,Simple Aggregation Queries,grandstack
+Which users have written more than one review?,Simple Aggregation Queries,grandstack
+What are the addresses of businesses reviewed by user 'Will'?,Simple Aggregation Queries,grandstack
+Find the top 3 businesses with the highest number of reviews.,Simple Aggregation Queries,grandstack
+Which business has the most reviews in San Mateo?,Simple Aggregation Queries,grandstack
+List all the businesses along 'W Broadway St' and their categories.,Simple Aggregation Queries,grandstack
+What is the average stars rating for businesses in Burlingame?,Simple Aggregation Queries,grandstack
+How many reviews have been written for 'KettleHouse Brewing Co.'?,Simple Aggregation Queries,grandstack
+List the top 3 users by the number of reviews they have written.,Simple Aggregation Queries,grandstack
+Which business in 'Missoula' has the highest star rating based on reviews?,Simple Aggregation Queries,grandstack
+What is the text of the review with the lowest stars rating?,Simple Aggregation Queries,grandstack
+List the names of all businesses in the 'Library' category.,Simple Aggregation Queries,grandstack
+How many businesses are there in each city?,Simple Aggregation Queries,grandstack
+What are the names of businesses that have reviews with exactly 5 stars?,Simple Aggregation Queries,grandstack
+Which users have reviewed businesses in 'San Mateo'?,Simple Aggregation Queries,grandstack
+Find the top 3 longest reviews in terms of text length.,Simple Aggregation Queries,grandstack
+Which business has the longest name and what is its location?,Simple Aggregation Queries,grandstack
+How many categories are there for businesses in 'Missoula'?,Simple Aggregation Queries,grandstack
+List the top 3 most recent reviews.,Simple Aggregation Queries,grandstack
+What is the average number of stars given by each user?,Simple Aggregation Queries,grandstack
+Which business has the most diverse range of review star ratings?,Simple Aggregation Queries,grandstack
+List all reviews written in 2017.,Simple Aggregation Queries,grandstack
+How many businesses are reviewed by users named 'Bob'?,Simple Aggregation Queries,grandstack
+What are the cities of the businesses reviewed by 'Angie'?,Simple Aggregation Queries,grandstack
+Find the top 5 businesses with the lowest average stars rating.,Simple Aggregation Queries,grandstack
+Which categories contain exactly three businesses?,Simple Aggregation Queries,grandstack
+List all businesses and their corresponding reviews from 'Burlingame'.,Simple Aggregation Queries,grandstack
+Which user has reviewed the most businesses in 'Beer' category?,Simple Aggregation Queries,grandstack
+What are the names of users who have reviewed 'Neo4j'?,Simple Aggregation Queries,grandstack
+List the addresses of businesses that have no reviews.,Simple Aggregation Queries,grandstack
+Which business in 'San Mateo' has reviews with an average star rating above 4.5?,Simple Aggregation Queries,grandstack
+How many businesses in 'MT' have been reviewed more than once?,Simple Aggregation Queries,grandstack
+What is the total number of reviews written in 2016?,Simple Aggregation Queries,grandstack
+Find the top 3 shortest reviews in terms of text length.,Simple Aggregation Queries,grandstack
+Which user has given the lowest average star rating?,Simple Aggregation Queries,grandstack
+List all reviews that have exactly 4.0 stars.,Simple Aggregation Queries,grandstack
+Which business located on 'E Front St' has the highest number of reviews?,Simple Aggregation Queries,grandstack
+How many businesses are there in 'CA' with a perfect 5-star review?,Simple Aggregation Queries,grandstack
+What are the categories of businesses located on 'Main St'?,Simple Aggregation Queries,grandstack
+Which reviews mention 'selection' in their text?,Simple Aggregation Queries,grandstack
+How many businesses have reviews with stars rating less than 4.0?,Simple Aggregation Queries,grandstack
+What is the city with the least number of businesses?,Simple Aggregation Queries,grandstack
+Find the top 3 businesses with the most diverse range of star ratings in their reviews.,Simple Aggregation Queries,grandstack
+Which users have not written any reviews?,Simple Aggregation Queries,grandstack
+List all businesses with more than one category.,Simple Aggregation Queries,grandstack
+What are the names of all categories a business in '200 W Pine St' belongs to?,Simple Aggregation Queries,grandstack
+How many reviews are there with a stars rating exactly 3.5?,Simple Aggregation Queries,grandstack
+Which user's reviews have the highest average stars rating?,Simple Aggregation Queries,grandstack
+What are the cities with businesses that have been reviewed exactly twice?,Simple Aggregation Queries,grandstack
+Which businesses are located in Missoula?,Pathfinding Queries,grandstack
+List all businesses in the state of California.,Pathfinding Queries,grandstack
+Which users have written a review for 'Ninja Mike's'?,Pathfinding Queries,grandstack
+Find all reviews with a star rating of 5.,Pathfinding Queries,grandstack
+Which business has the address '301 E Main St'?,Pathfinding Queries,grandstack
+What are the names of businesses that have been reviewed by Jenny?,Pathfinding Queries,grandstack
+How many businesses are categorized as 'Library'?,Pathfinding Queries,grandstack
+What are the reviews for businesses located on 'W Broadway St'?,Pathfinding Queries,grandstack
+Which businesses have more than one review?,Pathfinding Queries,grandstack
+List the reviews made by Will.,Pathfinding Queries,grandstack
+What is the address of 'Neo4j'?,Pathfinding Queries,grandstack
+Which users have written reviews for businesses in San Mateo?,Pathfinding Queries,grandstack
+Show businesses within 1km of '301 E Main St'.,Pathfinding Queries,grandstack
+Find users who have rated a business in 'Burlingame'.,Pathfinding Queries,grandstack
+What categories include businesses from 'Missoula'?,Pathfinding Queries,grandstack
+How many different categories are represented in businesses in California?,Pathfinding Queries,grandstack
+Which business has the highest average star rating?,Pathfinding Queries,grandstack
+List the top 3 most recent reviews.,Pathfinding Queries,grandstack
+"What are the business names of 'b1', 'b2', and 'b3'?",Pathfinding Queries,grandstack
+Which reviews mention 'great selection'?,Pathfinding Queries,grandstack
+Find the businesses reviewed by users named Angie.,Pathfinding Queries,grandstack
+Show all business addresses on 'E Front St'.,Pathfinding Queries,grandstack
+Which category does 'KettleHouse Brewing Co.' belong to?,Pathfinding Queries,grandstack
+List the businesses that have a review mentioning 'breakfast'.,Pathfinding Queries,grandstack
+What is the text of the first review written in 2018?,Pathfinding Queries,grandstack
+How many users have written reviews for 'Missoula Public Library'?,Pathfinding Queries,grandstack
+Which businesses are in the same city as 'Zootown Brew'?,Pathfinding Queries,grandstack
+List all reviews with a rating less than 4 stars.,Pathfinding Queries,grandstack
+Which businesses have been reviewed in 2017?,Pathfinding Queries,grandstack
+How many categories have businesses in 'San Mateo'?,Pathfinding Queries,grandstack
+What are the names of all businesses reviewed by Bob?,Pathfinding Queries,grandstack
+Which business has the lowest number of reviews?,Pathfinding Queries,grandstack
+Find the first 3 reviews with the highest star ratings.,Pathfinding Queries,grandstack
+What are the businesses that have a POINT location within 1km of '301 E Main St'?,Pathfinding Queries,grandstack
+Which reviews were written by users from 'CA'?,Pathfinding Queries,grandstack
+List the businesses that have been categorized as 'Library' in California.,Pathfinding Queries,grandstack
+What are the reviews for businesses that have more than one category?,Pathfinding Queries,grandstack
+Which businesses in 'Burlingame' have been reviewed by more than one user?,Pathfinding Queries,grandstack
+List all reviews for businesses on 'W Pine St'.,Pathfinding Queries,grandstack
+What are the categories of businesses on 'Broadway St'?,Pathfinding Queries,grandstack
+Which businesses have reviews that mention 'car wash'?,Pathfinding Queries,grandstack
+Find the first 3 reviews in the database.,Pathfinding Queries,grandstack
+Which business is closest to '301 E Main St' based on their POINT location?,Pathfinding Queries,grandstack
+List the categories of businesses reviewed by Will.,Pathfinding Queries,grandstack
+Which businesses have been reviewed by all users?,Pathfinding Queries,grandstack
+Show businesses that have been reviewed with exactly 5 stars.,Pathfinding Queries,grandstack
+List top 3 businesses by the number of reviews.,Pathfinding Queries,grandstack
+Which category does 'Ducky's Car Wash' belong to?,Pathfinding Queries,grandstack
+What is the state of businesses that have been reviewed by Jenny?,Pathfinding Queries,grandstack
+Which businesses have been reviewed on '2018-09-10'?,Pathfinding Queries,grandstack
+Find businesses with reviews mentioning 'graph database'.,Pathfinding Queries,grandstack
+List all reviews made by Angie.,Pathfinding Queries,grandstack
+Which businesses have reviews with stars between 4 and 5?,Pathfinding Queries,grandstack
+Show all users who have written a review for a business in 'Missoula'.,Pathfinding Queries,grandstack
+Which businesses are located on 'E Front St'?,Pathfinding Queries,grandstack
+What are the business names in 'San Mateo'?,Pathfinding Queries,grandstack
+Find the reviews made for businesses in 'MT'.,Pathfinding Queries,grandstack
+Which business in 'CA' has the most reviews?,Pathfinding Queries,grandstack
+How many businesses have been reviewed by Bob?,Pathfinding Queries,grandstack
+List the businesses that are in the same category as 'Neo4j'.,Pathfinding Queries,grandstack
+Show the reviews for businesses with addresses on 'California Dr'.,Pathfinding Queries,grandstack
+Find the top 5 earliest reviews.,Pathfinding Queries,grandstack
+Which businesses have reviews that mention 'IPA'?,Pathfinding Queries,grandstack
+What are the reviews for 'KettleHouse Brewing Co.'?,Pathfinding Queries,grandstack
+Which users have reviewed more than one business?,Pathfinding Queries,grandstack
+List the reviews from the latest to the earliest.,Pathfinding Queries,grandstack
+What are the categories for businesses in 'Burlingame'?,Pathfinding Queries,grandstack
+How many businesses have a review mentioning 'Wifi'?,Pathfinding Queries,grandstack
+Which businesses have reviews with a text length over 100 characters?,Pathfinding Queries,grandstack
+What categories have businesses with a location in 'Missoula'?,Pathfinding Queries,grandstack
+List the reviews for businesses on 'N San Mateo Dr'.,Pathfinding Queries,grandstack
+Which reviews are for businesses in the same state as 'Zootown Brew'?,Pathfinding Queries,grandstack
+Show all the businesses reviewed in September 2018.,Pathfinding Queries,grandstack
+What are the addresses of businesses with reviews mentioning 'selection of books'?,Pathfinding Queries,grandstack
+Find the reviews for the business with the highest number of stars.,Pathfinding Queries,grandstack
+Which business reviewed by Jenny has the lowest star rating?,Pathfinding Queries,grandstack
+List the businesses that have been reviewed by both Will and Jenny.,Pathfinding Queries,grandstack
+Which businesses have reviews written in 2016?,Pathfinding Queries,grandstack
+What is the address of the business with the most recent review?,Pathfinding Queries,grandstack
+Show the reviews that mention 'full-service'.,Pathfinding Queries,grandstack
+List all the categories represented by businesses in 'San Mateo'.,Pathfinding Queries,grandstack
+Which businesses have a review written on '2017-11-13'?,Pathfinding Queries,grandstack
+What are the reviews mentioning 'farmer's market'?,Pathfinding Queries,grandstack
+Find all businesses within 2km of '716 N San Mateo Dr'.,Pathfinding Queries,grandstack
+Which business has the most categories associated with it?,Pathfinding Queries,grandstack
+List the reviews written by users in 'MT'.,Pathfinding Queries,grandstack
+Show the businesses that have been reviewed by users named Bob and have a star rating above 4.,Pathfinding Queries,grandstack
+List the reviews for businesses that have been reviewed exactly twice.,Pathfinding Queries,grandstack
+Which businesses have reviews mentioning 'world leading'?,Pathfinding Queries,grandstack
+What is the city of the business named 'Zootown Brew'?,Pathfinding Queries,grandstack
+Which businesses have a user review mentioning 'comfortable places'?,Pathfinding Queries,grandstack
+What are the names of businesses located in Missoula?,Complex Aggregation Queries,grandstack
+List all the users who have written at least one review.,Complex Aggregation Queries,grandstack
+Which businesses are categorized under 'Library'?,Complex Aggregation Queries,grandstack
+Find all reviews that have a star rating of 5.,Complex Aggregation Queries,grandstack
+Who wrote the review with the text 'Great IPA selection!'?,Complex Aggregation Queries,grandstack
+What are the names of businesses located in 'CA' state?,Complex Aggregation Queries,grandstack
+List all reviews written by the user named 'Jenny'.,Complex Aggregation Queries,grandstack
+Which business has the review with the lowest star rating?,Complex Aggregation Queries,grandstack
+What are the names of businesses that have reviews with a star rating above 4.5?,Complex Aggregation Queries,grandstack
+How many categories are associated with the business named 'Neo4j'?,Complex Aggregation Queries,grandstack
+List all businesses along with their categories in the city of 'Burlingame'.,Complex Aggregation Queries,grandstack
+What are the names of the users who have written a review for 'KettleHouse Brewing Co.'?,Complex Aggregation Queries,grandstack
+List the names and addresses of all businesses in 'San Mateo'.,Complex Aggregation Queries,grandstack
+How many reviews does each user have?,Complex Aggregation Queries,grandstack
+What is the average star rating of reviews for 'Missoula Public Library'?,Complex Aggregation Queries,grandstack
+Find the top 3 most recent reviews.,Complex Aggregation Queries,grandstack
+Which user has written the most reviews?,Complex Aggregation Queries,grandstack
+List the businesses reviewed by 'Bob'.,Complex Aggregation Queries,grandstack
+Which reviews mention 'sandwich' in their text?,Complex Aggregation Queries,grandstack
+How many businesses are there in each city within the database?,Complex Aggregation Queries,grandstack
+What categories are available for businesses in 'Missoula'?,Complex Aggregation Queries,grandstack
+Identify businesses that have received exactly three reviews.,Complex Aggregation Queries,grandstack
+List the top 5 highest-rated businesses based on average review stars.,Complex Aggregation Queries,grandstack
+Which businesses have a review dated earlier than 2016?,Complex Aggregation Queries,grandstack
+What are the names of businesses that have received a review from 'Angie'?,Complex Aggregation Queries,grandstack
+How many businesses are there in each state listed in the database?,Complex Aggregation Queries,grandstack
+What are the complete addresses of businesses named 'Zootown Brew'?,Complex Aggregation Queries,grandstack
+List all the reviews with a star rating below 3.5.,Complex Aggregation Queries,grandstack
+Which business in 'San Mateo' has the highest average star rating based on reviews?,Complex Aggregation Queries,grandstack
+Find businesses that have reviews both above and below 4 stars.,Complex Aggregation Queries,grandstack
+What are the names of the businesses that 'Will' has reviewed?,Complex Aggregation Queries,grandstack
+List the categories of businesses that have been reviewed in 2018.,Complex Aggregation Queries,grandstack
+Which user has reviewed the most number of unique businesses?,Complex Aggregation Queries,grandstack
+How many reviews have been written for each category of business?,Complex Aggregation Queries,grandstack
+What are the business names and their corresponding city that have been reviewed by 'Jenny'?,Complex Aggregation Queries,grandstack
+List all businesses that have not been reviewed.,Complex Aggregation Queries,grandstack
+Which business has the most reviews in 'Burlingame'?,Complex Aggregation Queries,grandstack
+"Find all businesses located within 2 km of the point (-113.990976, 46.870035).",Complex Aggregation Queries,grandstack
+What are the names of businesses that have reviews with text mentioning 'car wash'?,Complex Aggregation Queries,grandstack
+List the user names and their corresponding review texts.,Complex Aggregation Queries,grandstack
+Which categories have businesses in both 'Missoula' and 'San Mateo'?,Complex Aggregation Queries,grandstack
+Find businesses that have been reviewed by users whose name starts with 'J'.,Complex Aggregation Queries,grandstack
+Show the locations and names of businesses in 'Burlingame' with reviews rating exactly 4 stars.,Complex Aggregation Queries,grandstack
+Which businesses have the most categories associated with them?,Complex Aggregation Queries,grandstack
+List all businesses that have at least two different categories.,Complex Aggregation Queries,grandstack
+Which user has given the highest average rating in their reviews?,Complex Aggregation Queries,grandstack
+Can you find reviews that were written on '2017-05-21'?,Complex Aggregation Queries,grandstack
+Which businesses have reviews that mention 'breakfast'?,Complex Aggregation Queries,grandstack
+List the businesses and their review counts in descending order of reviews.,Complex Aggregation Queries,grandstack
+List the top 3 businesses in 'Missoula' based on the number of reviews.,Complex Aggregation Queries,grandstack
+Who reviewed 'Imagine Nation Brewing' and what was the star rating?,Complex Aggregation Queries,grandstack
+Show businesses that have been reviewed only once and the reviewers' names.,Complex Aggregation Queries,grandstack
+Which businesses have a review with stars greater than the average stars of all reviews?,Complex Aggregation Queries,grandstack
+List the businesses reviewed by 'Bob' and the corresponding categories of these businesses.,Complex Aggregation Queries,grandstack
+Which business has the earliest review date in the database?,Complex Aggregation Queries,grandstack
+What are the review texts for 'Zootown Brew' and who wrote them?,Complex Aggregation Queries,grandstack
+Which users have reviewed the business located at '301 E Main St'?,Complex Aggregation Queries,grandstack
+List the businesses that have been reviewed by exactly two different users.,Complex Aggregation Queries,grandstack
+Which business in 'Missoula' has received the most 5-star reviews?,Complex Aggregation Queries,grandstack
+How many users have reviewed businesses in 'Burlingame'?,Complex Aggregation Queries,grandstack
+What are the different categories of businesses that 'Angie' has reviewed?,Complex Aggregation Queries,grandstack
+List the businesses along with their review dates that have been reviewed by 'Will'.,Complex Aggregation Queries,grandstack
+Find the business with the highest number of categories in 'San Mateo'.,Complex Aggregation Queries,grandstack
+Which reviews contain the word 'selection' in their text?,Complex Aggregation Queries,grandstack
+What is the average number of reviews per user?,Complex Aggregation Queries,grandstack
+List businesses that have been reviewed in the last quarter of 2017.,Complex Aggregation Queries,grandstack
+Which business in 'Burlingame' has reviews mentioning 'great'?,Complex Aggregation Queries,grandstack
+How many reviews have been written for businesses categorized under 'Library'?,Complex Aggregation Queries,grandstack
+Which reviews are written by users from 'CA' state businesses?,Complex Aggregation Queries,grandstack
+List the names of businesses that have only 4-star reviews.,Complex Aggregation Queries,grandstack
+Which businesses have the most number of reviews in 'Missoula'?,Complex Aggregation Queries,grandstack
+Show the names of businesses located at '313 N 1st St W' and their review texts.,Complex Aggregation Queries,grandstack
+What are the review texts for reviews written in 2016 and who wrote them?,Complex Aggregation Queries,grandstack
+Which business categories do not have any reviews mentioning 'awesome'?,Complex Aggregation Queries,grandstack
+List the businesses that have been reviewed by each user more than once.,Complex Aggregation Queries,grandstack
+Find the business with the most reviews in 'San Mateo' and list its reviews.,Complex Aggregation Queries,grandstack
+Which businesses have a review written on '2018-09-10'?,Complex Aggregation Queries,grandstack
+What are the names of businesses that have been reviewed by all users listed in the schema?,Complex Aggregation Queries,grandstack
+Which businesses in 'Missoula' are located within 1 km of 'Missoula Public Library'?,Complex Aggregation Queries,grandstack
+List the review texts and their corresponding business names for reviews with exactly 3 stars.,Complex Aggregation Queries,grandstack
+Which businesses have reviews mentioning 'ipa' in their text?,Complex Aggregation Queries,grandstack
+List all the businesses in 'Burlingame' and the reviews written for them.,Complex Aggregation Queries,grandstack
+Which businesses have reviews with star ratings between 3 and 4?,Complex Aggregation Queries,grandstack
+Show all businesses that have been reviewed in January of any year.,Complex Aggregation Queries,grandstack
+List the categories of businesses that have the most reviews.,Complex Aggregation Queries,grandstack
+Which businesses have been reviewed more than once by the same user?,Complex Aggregation Queries,grandstack
+What are the names of businesses in 'CA' that have not received any reviews?,Complex Aggregation Queries,grandstack
+"List businesses within 5 km of the location point (-113.995297, 46.877981).",Complex Aggregation Queries,grandstack
+Which businesses in 'San Mateo' have reviews with text mentioning 'world'?,Complex Aggregation Queries,grandstack
+List the businesses that have only received 5-star reviews.,Complex Aggregation Queries,grandstack
+What is the highest number of reviews a single business has received and which business is it?,Complex Aggregation Queries,grandstack
+Which businesses in 'Missoula' have reviews mentioning 'library'?,Complex Aggregation Queries,grandstack
+List all businesses and their review stars where the review text includes 'love'.,Complex Aggregation Queries,grandstack
+What are the names of businesses that have received reviews from 'Bob' and 'Angie'?,Complex Aggregation Queries,grandstack
+Which businesses have categories associated with more than one location?,Complex Aggregation Queries,grandstack
+Which businesses have reviews written in September of any year?,Complex Aggregation Queries,grandstack
+List the top 5 businesses located in Missoula.,Verbose query,grandstack
+What are the top 3 businesses located in Burlingame?,Verbose query,grandstack
+Find the first 3 businesses located in San Mateo.,Verbose query,grandstack
+Can you retrieve the top 5 highest-rated reviews?,Verbose query,grandstack
+Which 3 users have written the most reviews?,Verbose query,grandstack
+Identify the first 3 businesses in the 'Library' category.,Verbose query,grandstack
+What are the top 5 businesses in the 'Beer' category?,Verbose query,grandstack
+List the top 3 highest scoring reviews for 'Ninja Mike's'.,Verbose query,grandstack
+Which 3 businesses have the most reviews written about them?,Verbose query,grandstack
+Show the first 3 reviews written by the user named 'Jenny'.,Verbose query,grandstack
+Can you display the top 5 businesses based on their addresses alphabetically?,Verbose query,grandstack
+What are the first 3 reviews with a star rating above 4.5?,Verbose query,grandstack
+List the top 3 users by the number of reviews they have written.,Verbose query,grandstack
+Which 3 businesses have reviews dated after 2017?,Verbose query,grandstack
+Find the first 3 reviews that contain the text 'great selection'.,Verbose query,grandstack
+List the top 5 businesses located in the state of CA.,Verbose query,grandstack
+What are the top 3 businesses located in the state of MT?,Verbose query,grandstack
+Show the first 3 businesses with addresses on 'Broadway St'.,Verbose query,grandstack
+Can you find the top 5 most recent reviews?,Verbose query,grandstack
+Which 3 businesses have the oldest reviews?,Verbose query,grandstack
+What are the top 3 businesses by the number of categories they belong to?,Verbose query,grandstack
+List the first 3 businesses that have a review with exactly 5 stars.,Verbose query,grandstack
+What are the top 5 reviews written in the year 2016?,Verbose query,grandstack
+Show the first 3 businesses with names starting with 'Z'.,Verbose query,grandstack
+Can you display the top 5 businesses that have reviews with a text mentioning 'IPA'?,Verbose query,grandstack
+Find the top 3 users who have written reviews for 'Imagine Nation Brewing'.,Verbose query,grandstack
+List the top 3 users who have written reviews for businesses in 'Missoula'.,Verbose query,grandstack
+Which 3 users have written reviews for businesses in 'San Mateo'?,Verbose query,grandstack
+Show the first 3 reviews for businesses located at '301 E Main St'.,Verbose query,grandstack
+Can you find the top 3 businesses with the longest reviews?,Verbose query,grandstack
+What are the top 5 businesses with the shortest review texts?,Verbose query,grandstack
+List the first 3 reviews for businesses in 'Burlingame'.,Verbose query,grandstack
+Which 3 businesses have reviews mentioning 'breakfast'?,Verbose query,grandstack
+Find the top 3 reviews that mention 'car wash'.,Verbose query,grandstack
+Show the top 5 businesses with reviews written in September.,Verbose query,grandstack
+Can you list the top 3 businesses that have a user named 'Bob' writing a review for them?,Verbose query,grandstack
+What are the first 3 businesses that have been reviewed by more than one user?,Verbose query,grandstack
+List the top 3 businesses with the highest average review score.,Verbose query,grandstack
+Which 3 businesses have the lowest average review score?,Verbose query,grandstack
+Find the top 5 users who have written reviews for businesses in 'CA'.,Verbose query,grandstack
+Show the first 3 reviews that resulted in an exact star rating of 4.0.,Verbose query,grandstack
+Can you find the top 5 businesses located closest to the provided POINT(-114.009628 46.876672)?,Verbose query,grandstack
+What are the top 3 businesses with the most recent review dates?,Verbose query,grandstack
+List the first 3 businesses with reviews from users named 'Angie'.,Verbose query,grandstack
+Which 3 businesses have reviews that give them a star rating below 3.5?,Verbose query,grandstack
+Find the top 3 businesses with reviews on or after '2017-01-01'.,Verbose query,grandstack
+Show the first 3 businesses with reviews from users whose name starts with 'W'.,Verbose query,grandstack
+Can you display the top 5 reviews that mention 'selection'?,Verbose query,grandstack
+What are the top 3 reviews that mention 'awesome'?,Verbose query,grandstack
+List the top 3 businesses that are categorized under both 'Library' and 'Beer'.,Verbose query,grandstack
+Which 3 businesses have reviews that mention 'Ninja'?,Verbose query,grandstack
+Find the top 3 reviews for businesses located at '200 W Pine St'.,Verbose query,grandstack
+Show the first 3 businesses that have reviews mentioning both 'great' and 'IPA'.,Verbose query,grandstack
+Can you find the top 5 businesses that are the furthest from POINT(-113.995057 46.874029)?,Verbose query,grandstack
+What are the top 3 businesses that have been reviewed in both 2016 and 2017?,Verbose query,grandstack
+List the first 3 businesses that have reviews with text mentioning 'world's leading'.,Verbose query,grandstack
+Which 3 businesses have reviews that mention 'Ducky's'?,Verbose query,grandstack
+Find the top 3 businesses with the most reviews in 'Missoula'.,Verbose query,grandstack
+Show the top 5 reviews for businesses with addresses on '1st St'.,Verbose query,grandstack
+Can you find the top 3 businesses that have been reviewed by 'Jenny' and 'Bob'?,Verbose query,grandstack
+What are the first 3 businesses with reviews that have a text length greater than 50 characters?,Verbose query,grandstack
+List the top 3 businesses with reviews that have a star rating of 5 and mention 'awesome'.,Verbose query,grandstack
+Which 3 reviews mention both 'great' and 'selection' in their text?,Verbose query,grandstack
+Find the top 3 businesses that have received reviews only from users named 'Will'.,Verbose query,grandstack
+Show the first 3 businesses that have reviews mentioning 'sandwich'.,Verbose query,grandstack
+Can you display the top 5 businesses with reviews that mention 'love'?,Verbose query,grandstack
+What are the top 3 businesses with reviews mentioning 'car'?,Verbose query,grandstack
+List the top 3 businesses with reviews mentioning 'farmer's market'.,Verbose query,grandstack
+Which 3 businesses have reviews that mention 'books'?,Verbose query,grandstack
+Find the top 3 reviews for businesses located at '313 N 1st St W'.,Verbose query,grandstack
+Show the top 5 reviews that mention 'best'.,Verbose query,grandstack
+Can you find the top 3 businesses with reviews mentioning 'beer'?,Verbose query,grandstack
+What are the top 3 businesses with reviews mentioning 'breakfast' and located in 'Missoula'?,Verbose query,grandstack
+List the top 3 businesses that have been reviewed by users from California.,Verbose query,grandstack
+Which 3 businesses have reviews mentioning 'full-service'?,Verbose query,grandstack
+Find the top 3 businesses with reviews mentioning 'IPA' and having a star rating greater than 4.5.,Verbose query,grandstack
+Show the first 3 businesses that have reviews mentioning 'Ninja Mike's'.,Verbose query,grandstack
+Can you display the top 5 businesses that have reviews with 'awesome' in their text?,Verbose query,grandstack
+What are the top 3 businesses with reviews that have a star rating of exactly 4.5?,Verbose query,grandstack
+List the top 3 businesses with reviews from the latest three different users.,Verbose query,grandstack
+Which 3 businesses have reviews that mention both 'world' and 'leading'?,Verbose query,grandstack
+Find the top 3 businesses that have reviews from the earliest three different dates.,Verbose query,grandstack
+Show the first 3 businesses that have reviews mentioning 'sandwich' and 'farmer's market'.,Verbose query,grandstack
+Can you show the top 5 businesses with reviews mentioning 'book'?,Verbose query,grandstack
+What are the top 3 businesses with the most recent reviews mentioning 'car wash'?,Verbose query,grandstack
+List the top 3 businesses with reviews having the exact text 'Great IPA selection!'.,Verbose query,grandstack
+Which 3 businesses have reviews written by users named 'Angie' in 2017?,Verbose query,grandstack
+Find the top 3 businesses that have reviews mentioning 'library'.,Verbose query,grandstack
+Show the top 5 businesses with reviews that have a star rating greater than 4 and mention 'awesome'.,Verbose query,grandstack
+Can you find the top 3 businesses with reviews from users named 'Jenny' and 'Will'?,Verbose query,grandstack
+What are the top 3 businesses that have been reviewed on '2017-11-13'?,Verbose query,grandstack
+List the first 3 businesses that have reviews from 'Burlingame' with a star rating above 4.5.,Verbose query,grandstack
+Which movies were released in 2003?,Simple Retrieval Queries,movies
+List all movies with more than 1000 votes.,Simple Retrieval Queries,movies
+What are the top 5 highest rated movies based on votes?,Simple Retrieval Queries,movies
+Find the first 3 people born after 1960.,Simple Retrieval Queries,movies
+Who reviewed movies with a rating higher than 90?,Simple Retrieval Queries,movies
+List all movies directed by people born before 1950 limited to top 5.,Simple Retrieval Queries,movies
+What are the roles of Keanu Reeves in the movies he acted in?,Simple Retrieval Queries,movies
+Find the first 3 movies produced by someone born in 1952.,Simple Retrieval Queries,movies
+Who acted in the movie with the tagline 'Welcome to the Real World'?,Simple Retrieval Queries,movies
+"Display the top 5 movies that have been reviewed with the summary 'Dark, but compelling'.",Simple Retrieval Queries,movies
+Which people have directed more than one movie?,Simple Retrieval Queries,movies
+Show the top 3 movies with the lowest number of votes.,Simple Retrieval Queries,movies
+Who are the first 3 people to follow Keanu Reeves?,Simple Retrieval Queries,movies
+List all people who have produced a movie and acted in another.,Simple Retrieval Queries,movies
+What are the top 5 most recent movies in the database?,Simple Retrieval Queries,movies
+Find all movies with a released year in the 1990s.,Simple Retrieval Queries,movies
+Who wrote the movie titled 'The Matrix'?,Simple Retrieval Queries,movies
+List the first 3 people born in 1964.,Simple Retrieval Queries,movies
+Which movies have been reviewed with a rating less than 50?,Simple Retrieval Queries,movies
+Show the first 3 movies produced by Joel Silver.,Simple Retrieval Queries,movies
+What are the roles of Carrie-Anne Moss in 'The Matrix Revolutions'?,Simple Retrieval Queries,movies
+Which person reviewed the most movies?,Simple Retrieval Queries,movies
+List top 5 oldest people in the database.,Simple Retrieval Queries,movies
+"Find all movies where Nancy Meyers was involved either by acting, directing, producing, or writing.",Simple Retrieval Queries,movies
+What are the first 3 movies with a tagline containing the word 'limits'?,Simple Retrieval Queries,movies
+Who are the first 3 actors in the movie titled 'Speed Racer'?,Simple Retrieval Queries,movies
+List all the relationships a person named 'Keanu Reeves' has with movies.,Simple Retrieval Queries,movies
+Show the top 5 movies by the number of reviews they received.,Simple Retrieval Queries,movies
+Which people have produced and also reviewed the same movie?,Simple Retrieval Queries,movies
+List the first 3 people who have directed and written the same movie.,Simple Retrieval Queries,movies
+What are the birth years of people who have acted in movies released before 1980?,Simple Retrieval Queries,movies
+Which movie has the lowest number of votes and was released after 2000?,Simple Retrieval Queries,movies
+Find all movies that have been produced by persons born after 1960 limited to top 5.,Simple Retrieval Queries,movies
+"Who are the first 3 people to have reviewed a movie with the summary 'Silly, but fun'?",Simple Retrieval Queries,movies
+List all movies with a tagline that includes the phrase 'Real World'.,Simple Retrieval Queries,movies
+What are the first 3 movies reviewed by a person born in 1967?,Simple Retrieval Queries,movies
+Show the top 5 movies with the most roles in their cast.,Simple Retrieval Queries,movies
+"Which person has acted in, directed, and produced the same movie?",Simple Retrieval Queries,movies
+List the first 3 movies with a tagline containing the word 'football'.,Simple Retrieval Queries,movies
+Who are the persons that have written and also acted in the same movie?,Simple Retrieval Queries,movies
+Find all movies where a person named 'Nancy Meyers' acted.,Simple Retrieval Queries,movies
+Show the top 5 people by the number of movies they have produced.,Simple Retrieval Queries,movies
+Which movies have been reviewed with a rating exactly 75?,Simple Retrieval Queries,movies
+List the first 3 movies that have been both produced and reviewed by people born before 1960.,Simple Retrieval Queries,movies
+What are the roles of actors in the movie with the highest number of votes?,Simple Retrieval Queries,movies
+Who are the first 3 directors of movies released in the 2000s?,Simple Retrieval Queries,movies
+List all movies directed by a person with the name 'Joel Silver'.,Simple Retrieval Queries,movies
+Find all people who have followed and been followed by the same person.,Simple Retrieval Queries,movies
+Show the top 5 movies that have been acted in by the oldest person in the database.,Simple Retrieval Queries,movies
+Which people have reviewed and also produced the movie titled 'The Matrix Revolutions'?,Simple Retrieval Queries,movies
+List the first 3 movies that have been acted in and directed by the same person.,Simple Retrieval Queries,movies
+What are the first 3 movies with a released year of 2008?,Simple Retrieval Queries,movies
+Show the top 5 people who have the most followers.,Simple Retrieval Queries,movies
+Which person reviewed the movie with the lowest rating?,Simple Retrieval Queries,movies
+List all movies with more than one role listed in the 'ACTED_IN' relationship.,Simple Retrieval Queries,movies
+Find the first 3 people who acted in a movie released in the 1990s.,Simple Retrieval Queries,movies
+Who are the first 3 people to have produced a movie with more than 500 votes?,Simple Retrieval Queries,movies
+List the top 5 movies with a released year before 1985.,Simple Retrieval Queries,movies
+What are the first 3 movies that have a tagline containing the word 'journey'?,Simple Retrieval Queries,movies
+Show the top 5 people by the number of movies they have directed.,Simple Retrieval Queries,movies
+Which person has the most roles in a single movie?,Simple Retrieval Queries,movies
+"List the first 3 movies with a review summary of 'Fun, but a little far fetched'.",Simple Retrieval Queries,movies
+Find all people born in 1949 who have directed a movie.,Simple Retrieval Queries,movies
+Who are the first 3 people who acted in a movie titled 'Something's Gotta Give'?,Simple Retrieval Queries,movies
+List all movies that were released in the year 2001.,Simple Retrieval Queries,movies
+What are the top 5 movies with the most roles listed in their 'ACTED_IN' relationship?,Simple Retrieval Queries,movies
+Show the first 3 people born in 1980 who have reviewed a movie.,Simple Retrieval Queries,movies
+Which movies have been reviewed and also acted in by the same person?,Simple Retrieval Queries,movies
+List the first 3 people who have directed a movie and also followed someone.,Simple Retrieval Queries,movies
+Find all movies with a tagline including the word 'compelling'.,Simple Retrieval Queries,movies
+Show the top 5 people who have reviewed the most movies.,Simple Retrieval Queries,movies
+Which person has produced the most movies?,Simple Retrieval Queries,movies
+List the first 3 movies where someone named 'Carrie-Anne Moss' acted.,Simple Retrieval Queries,movies
+What are the first 3 movies with a released year of 1996?,Simple Retrieval Queries,movies
+Who are the top 5 oldest directors in the database?,Simple Retrieval Queries,movies
+List all movies with a rating of exactly 85 in the 'REVIEWED' relationship.,Simple Retrieval Queries,movies
+Find the first 3 people who have written and directed the same movie.,Simple Retrieval Queries,movies
+Who are the first 3 actors in the movie with the tagline 'Speed has no limits'?,Simple Retrieval Queries,movies
+Show the top 5 movies reviewed by a person named 'Joel Silver'.,Simple Retrieval Queries,movies
+Which movies have been directed by persons born after 1970?,Simple Retrieval Queries,movies
+List the first 3 movies that have been both acted in and reviewed by the same person.,Simple Retrieval Queries,movies
+What are the roles of actors in the movie titled 'Speed Racer'?,Simple Retrieval Queries,movies
+What are the titles of the top 5 movies released after 2000 with more than 1000 votes?,Complex Retrieval Queries,movies
+List the names of the first 3 people born after 1970 who acted in a movie released before 1980.,Complex Retrieval Queries,movies
+"Which 3 movies reviewed with a rating above 90 have the tagline 'Dark, but compelling'?",Complex Retrieval Queries,movies
+Name the first 5 people who directed a movie with a tagline containing the word 'limits'.,Complex Retrieval Queries,movies
+What are the first 3 movies produced by someone born before 1960?,Complex Retrieval Queries,movies
+List the top 5 movies with the highest votes that were released in the 1990s.,Complex Retrieval Queries,movies
+"Who are the first 3 people to review a movie with the tagline 'Fun, but a little far fetched'?",Complex Retrieval Queries,movies
+Name the top 5 actors who acted in a movie released in 1999.,Complex Retrieval Queries,movies
+Find the first 3 movies where 'Keanu Reeves' acted.,Complex Retrieval Queries,movies
+Who are the top 3 people that follow someone born in 1961?,Complex Retrieval Queries,movies
+List the top 3 movies with the lowest votes that a person born in 1952 acted in.,Complex Retrieval Queries,movies
+Which 3 people reviewed the movie titled 'The Matrix Revolutions'?,Complex Retrieval Queries,movies
+Find the first 5 people born after 1980 who directed a movie released before 2000.,Complex Retrieval Queries,movies
+"List the first 3 movies reviewed with a summary 'Silly, but fun' and a tagline containing 'world'.",Complex Retrieval Queries,movies
+What are the first 3 movies where someone born in 1996 acted?,Complex Retrieval Queries,movies
+Who are the top 5 producers of the movie with the title 'Speed Racer'?,Complex Retrieval Queries,movies
+List the first 3 people who wrote and also reviewed the same movie.,Complex Retrieval Queries,movies
+What are the top 5 movies with the most roles for actors born after 1970?,Complex Retrieval Queries,movies
+Which 3 people born before 1950 reviewed a movie with a rating less than 50?,Complex Retrieval Queries,movies
+Name the first 5 people who acted in a movie with a tagline mentioning 'Real World'.,Complex Retrieval Queries,movies
+What are the first 3 movies directed by someone who also reviewed them?,Complex Retrieval Queries,movies
+List the top 5 movies with the tagline 'Welcome to the Real World' that were released after 1995.,Complex Retrieval Queries,movies
+Who reviewed the movie titled 'Speed Racer' and what was their summary?,Complex Retrieval Queries,movies
+Find the first 3 actors who acted in more than one movie with a tagline containing 'beginning'.,Complex Retrieval Queries,movies
+List the top 5 people who produced movies that received more than 2000 votes.,Complex Retrieval Queries,movies
+Which 3 movies with a tagline containing 'journey' were reviewed with a rating above 85?,Complex Retrieval Queries,movies
+Name the top 5 people who followed and were followed by 'Laurence Fishburne'.,Complex Retrieval Queries,movies
+What are the first 3 movies where someone born in 1965 directed a person born in 1952?,Complex Retrieval Queries,movies
+List the first 5 people born before 1980 who wrote a movie with a tagline mentioning 'speed'.,Complex Retrieval Queries,movies
+Who are the top 3 actors with the most roles in movies released before 1990?,Complex Retrieval Queries,movies
+List the first 3 people who produced and acted in the same movie.,Complex Retrieval Queries,movies
+What are the top 5 movies with a tagline containing 'football' that were produced by someone born after 1960?,Complex Retrieval Queries,movies
+Which 3 people born after 1970 reviewed a movie with a summary 'An amazing journey'?,Complex Retrieval Queries,movies
+Name the first 5 people who directed a movie with votes less than 50.,Complex Retrieval Queries,movies
+What are the first 3 movies where 'Joel Silver' acted?,Complex Retrieval Queries,movies
+List the top 5 movies directed by someone who also acted in them.,Complex Retrieval Queries,movies
+Who are the first 3 people to review a movie with a summary 'Pretty funny at times'?,Complex Retrieval Queries,movies
+Find the first 3 actors who acted in a movie with a tagline containing 'Robin Williams'.,Complex Retrieval Queries,movies
+List the first 5 movies with a tagline containing 'end' that were reviewed with a rating above 75.,Complex Retrieval Queries,movies
+"Which 3 movies reviewed with a summary 'Dark, but compelling' were produced by someone born before 1960?",Complex Retrieval Queries,movies
+Name the top 5 directors of movies that have a tagline mentioning 'Real World'.,Complex Retrieval Queries,movies
+What are the first 3 movies with a tagline containing 'fun' that were directed by someone born after 1970?,Complex Retrieval Queries,movies
+List the top 5 movies where the director and the main actor were born in the same decade.,Complex Retrieval Queries,movies
+Who are the first 3 actors born after 1980 who acted in a movie produced by someone born before 1950?,Complex Retrieval Queries,movies
+Find the first 3 movies produced by 'Lana Wachowski'.,Complex Retrieval Queries,movies
+List the first 5 people who followed someone with the same birth year.,Complex Retrieval Queries,movies
+Which 3 people born before 1950 acted in a movie with a tagline containing 'limits'?,Complex Retrieval Queries,movies
+Name the top 5 directors who also reviewed the movies they directed.,Complex Retrieval Queries,movies
+What are the first 3 movies where someone named 'Keanu Reeves' was the producer?,Complex Retrieval Queries,movies
+List the top 5 actors who acted in movies reviewed with a summary 'Slapstick redeemed only by the Robin Williams and '.,Complex Retrieval Queries,movies
+Who are the first 3 people born after 1975 who wrote a movie released after 2005?,Complex Retrieval Queries,movies
+What are the titles of the top 5 movies with the highest votes?,Simple Aggregation Queries,movies
+List the names of 3 people who were born after 1970.,Simple Aggregation Queries,movies
+Which movies released after 2000 have been reviewed with a rating above 80?,Simple Aggregation Queries,movies
+Find the top 5 movies with the most number of reviews.,Simple Aggregation Queries,movies
+Who are the first 3 people that Keanu Reeves follows?,Simple Aggregation Queries,movies
+What are the roles played by Laurence Fishburne in movies released before 2010?,Simple Aggregation Queries,movies
+Which movie has the lowest number of votes and what is its tagline?,Simple Aggregation Queries,movies
+List the top 3 directors by the number of movies they have directed.,Simple Aggregation Queries,movies
+What are the names of the people who reviewed 'The Matrix' and what were their ratings?,Simple Aggregation Queries,movies
+Which person has produced the most movies and what are those movies?,Simple Aggregation Queries,movies
+How many people have acted in 'Something's Gotta Give'?,Simple Aggregation Queries,movies
+What are the top 5 movies with the highest average review rating?,Simple Aggregation Queries,movies
+List the top 3 movies by Laurence Fishburne as an actor.,Simple Aggregation Queries,movies
+Who are the first 3 people born before 1950 and what movies have they directed?,Simple Aggregation Queries,movies
+"What are the names of the movies that received a review summary 'Dark, but compelling'?",Simple Aggregation Queries,movies
+Which movies have been both written and directed by the same person and what are their titles?,Simple Aggregation Queries,movies
+How many different people have reviewed movies released before 1990?,Simple Aggregation Queries,movies
+What are the first 3 most recent movies that have a tagline?,Simple Aggregation Queries,movies
+Which person has acted in the most movies and what are those movies titles?,Simple Aggregation Queries,movies
+List 3 movies Laurence Fishburne has reviewed and their corresponding ratings.,Simple Aggregation Queries,movies
+Who are the top 5 youngest producers in the database?,Simple Aggregation Queries,movies
+Which movies have a tagline containing the word 'real' and were released in the 2000s?,Simple Aggregation Queries,movies
+What are the first 3 movies that received a review with a rating less than 50?,Simple Aggregation Queries,movies
+List the top 5 oldest actors and the movies they have acted in.,Simple Aggregation Queries,movies
+Which people follow Keanu Reeves and have also acted in a movie with him?,Simple Aggregation Queries,movies
+"What are the names of the first 3 people who have produced, directed, and written the same movie?",Simple Aggregation Queries,movies
+What is the average rating of movies reviewed by people born after 1980?,Simple Aggregation Queries,movies
+List the roles of actors in the top 5 movies with the most votes.,Simple Aggregation Queries,movies
+Who are the first 3 people to have directed a movie with a tagline including the word 'beginning'?,Simple Aggregation Queries,movies
+What are the top 5 movies with the least votes and their release years?,Simple Aggregation Queries,movies
+Which people have reviewed the same movie and what were their review summaries?,Simple Aggregation Queries,movies
+List the first 3 movies that Keanu Reeves has acted in with their release years.,Simple Aggregation Queries,movies
+Who has directed the most movies released after 2000 and what are those movies?,Simple Aggregation Queries,movies
+What are the taglines of the top 3 movies released in 1996?,Simple Aggregation Queries,movies
+List the top 5 people who have produced the most number of movies with their birth years.,Simple Aggregation Queries,movies
+"Which movies have been reviewed with a summary 'Fun, but a little far fetched' and what were their ratings?",Simple Aggregation Queries,movies
+What is the average number of votes for movies released in the 1980s?,Simple Aggregation Queries,movies
+Who are the first 3 people born in the 1960s that Keanu Reeves follows?,Simple Aggregation Queries,movies
+List the roles played by actors in the first 3 movies directed by Nancy Meyers.,Simple Aggregation Queries,movies
+What are the first 3 movies produced by Joel Silver and their respective release years?,Simple Aggregation Queries,movies
+Which movies have the tagline 'Speed has no limits' and who are the producers?,Simple Aggregation Queries,movies
+What are the names of the people who wrote and also acted in the same movie?,Simple Aggregation Queries,movies
+List the first 3 movies reviewed by a person born before 1950 and their review summaries.,Simple Aggregation Queries,movies
+Which person has the most followers and who are they?,Simple Aggregation Queries,movies
+What are the top 5 movies with the most actors involved and their release years?,Simple Aggregation Queries,movies
+Who reviewed the movie with the highest votes and what was the summary?,Simple Aggregation Queries,movies
+List the first 3 movies that have been produced and directed by the same person.,Simple Aggregation Queries,movies
+What are the roles of Keanu Reeves in movies he reviewed with a rating above 90?,Simple Aggregation Queries,movies
+Who are the first 3 directors born after 1970 and the movies they directed?,Simple Aggregation Queries,movies
+List the movies that have been reviewed and also have a tagline including the word 'journey'.,Simple Aggregation Queries,movies
+Which movies released in the 1990s have been acted in by more than 5 people?,Simple Aggregation Queries,movies
+What are the top 5 reviewed movies by people born in the 1980s and their ratings?,Simple Aggregation Queries,movies
+List the first 3 movies with roles that include 'Captain' and their actors.,Simple Aggregation Queries,movies
+What are the names of the first 3 movies directed by a person born in 1949?,Simple Aggregation Queries,movies
+Who are the first 3 people to have reviewed and also produced the same movie?,Simple Aggregation Queries,movies
+What is the average age of directors of the top 5 voted movies?,Simple Aggregation Queries,movies
+List the top 3 actors who have acted in movies with a tagline including the word 'limits'.,Simple Aggregation Queries,movies
+Which movies have a role listed as 'Hero' and who are the actors?,Simple Aggregation Queries,movies
+What are the first 3 movies with the highest ratings reviewed by people born after 1980?,Simple Aggregation Queries,movies
+List the top 5 movies by the number of roles and their respective actors.,Simple Aggregation Queries,movies
+Who are the first 3 youngest actors to have directed a movie?,Simple Aggregation Queries,movies
+What are the first 3 movies where Keanu Reeves and Laurence Fishburne acted together?,Simple Aggregation Queries,movies
+Which movies have been directed by a person born in 1970 and what are their titles?,Simple Aggregation Queries,movies
+List the roles of actors in the 3 movies with the highest number of actors involved.,Simple Aggregation Queries,movies
+What are the first 3 movies reviewed by people with a review summary 'Pretty funny at times' and their ratings?,Simple Aggregation Queries,movies
+Who directed the first 3 movies reviewed with a rating of 100 and what are their titles?,Simple Aggregation Queries,movies
+What are the names of the top 3 oldest actors and the movies they have produced?,Simple Aggregation Queries,movies
+List the first 3 movies with a tagline including the word 'world' and their release years.,Simple Aggregation Queries,movies
+Which movies released before 2000 have a person who both acted and directed in them?,Simple Aggregation Queries,movies
+What are the first 3 movies where Nancy Meyers was involved as a writer and their release years?,Simple Aggregation Queries,movies
+Who are the top 5 people who have acted in the most number of movies with a tagline?,Simple Aggregation Queries,movies
+List the first 3 movies with at least one role listed as 'Villain' and their actors.,Simple Aggregation Queries,movies
+What are the first 3 movies produced by people born in the 1950s?,Simple Aggregation Queries,movies
+Which movies have been reviewed with a summary 'The coolest football movie ever' and who reviewed them?,Simple Aggregation Queries,movies
+What is the average number of votes for movies directed by people born before 1950?,Simple Aggregation Queries,movies
+Who are the first 3 people to have written and directed the same movie and what are those movies?,Simple Aggregation Queries,movies
+List the top 5 movies with roles including 'Doctor' and the actors who played them.,Simple Aggregation Queries,movies
+Which movies have a person who both produced and reviewed them and what are their titles?,Simple Aggregation Queries,movies
+What are the first 3 movies where the directors were also actors and their titles?,Simple Aggregation Queries,movies
+List the top 5 movies with the highest number of different actors involved.,Simple Aggregation Queries,movies
+Who are the first 3 oldest directors and the movies they have directed?,Simple Aggregation Queries,movies
+What are the first 3 movies with a review summary 'An amazing journey' and their ratings?,Simple Aggregation Queries,movies
+List the roles of actors in the first 3 movies produced by a person born after 1980.,Simple Aggregation Queries,movies
+Which movies released in the 2000s have been acted in by more than 3 people?,Simple Aggregation Queries,movies
+What are the top 5 movies directed by people born in the 1960s and their release years?,Simple Aggregation Queries,movies
+List the first 3 movies reviewed by a person named 'Nancy Meyers' and their review summaries.,Simple Aggregation Queries,movies
+What are the first 3 movies with a tagline including the word 'fun' and their release years?,Simple Aggregation Queries,movies
+Who are the top 3 actors born after 1970 who acted in movies released before 2000?,Pathfinding Queries,movies
+What are the top 5 movies with the most votes released after 2000?,Pathfinding Queries,movies
+List the first 3 people who directed and also acted in the same movie.,Pathfinding Queries,movies
+Who are the top 3 youngest directors of movies released in the 1990s?,Pathfinding Queries,movies
+Which movies released between 1980 and 1990 have been reviewed with a rating higher than 80?,Pathfinding Queries,movies
+Name the first 3 actors who have acted in more than one movie with a tagline containing the word 'freedom'.,Pathfinding Queries,movies
+What are the top 3 movies with the lowest votes released before 1980?,Pathfinding Queries,movies
+List the first 3 actors born before 1950 who reviewed a movie with a summary containing the word 'funny'.,Pathfinding Queries,movies
+Which directors were born after 1960 and directed a movie with a tagline containing the word 'speed'?,Pathfinding Queries,movies
+Name the first 3 people who follow more than 5 other people.,Pathfinding Queries,movies
+List the first 3 movies that were both written and reviewed by the same person.,Pathfinding Queries,movies
+"Who are the top 5 actors by number of movies acted in, with each movie having at least 100 votes?",Pathfinding Queries,movies
+What are the first 3 movies produced by persons born before 1960 with a rating over 90?,Pathfinding Queries,movies
+Name the first 3 movies with a tagline that includes the word 'real' and were released before 2000.,Pathfinding Queries,movies
+Which people have acted in and also reviewed the same movie? List the first 3.,Pathfinding Queries,movies
+What are the top 5 movies with a tagline containing the word 'Houston'?,Pathfinding Queries,movies
+List the first 3 people who have written and directed the same movie released after 2000.,Pathfinding Queries,movies
+Who are the top 3 actors with roles in the most diverse genres (based on taglines)?,Pathfinding Queries,movies
+Which movies have been reviewed with a summary containing 'amazing journey' and have a rating less than 80?,Pathfinding Queries,movies
+Name the first 3 people who produced a movie that they also acted in.,Pathfinding Queries,movies
+Which movies released between 1990 and 2000 have more than 5000 votes?,Complex Aggregation Queries,movies
+List all movies directed by Lana Wachowski.,Complex Aggregation Queries,movies
+Find the top 3 actors by number of movies acted in from 1990 to 2000.,Complex Aggregation Queries,movies
+What are the top 5 most voted movies?,Complex Aggregation Queries,movies
+Who are the actors that acted in 'The Matrix'?,Complex Aggregation Queries,movies
+Which movies have a tagline containing the word 'limit'?,Complex Aggregation Queries,movies
+List all movies produced by Joel Silver.,Complex Aggregation Queries,movies
+Which movies were released in 1999?,Complex Aggregation Queries,movies
+Who wrote the movie 'Speed Racer'?,Complex Aggregation Queries,movies
+Find all movies with a rating above 90.,Complex Aggregation Queries,movies
+Show the top 3 movies with the lowest number of votes.,Complex Aggregation Queries,movies
+Which people were born between 1940 and 1960?,Complex Aggregation Queries,movies
+List all movies reviewed by people born after 1960.,Complex Aggregation Queries,movies
+Who has directed more than one movie?,Complex Aggregation Queries,movies
+What are the roles played by Keanu Reeves in 'The Matrix'?,Complex Aggregation Queries,movies
+List all movies with a tagline that includes 'Welcome'.,Complex Aggregation Queries,movies
+Which movies have been both acted in and directed by the same person?,Complex Aggregation Queries,movies
+List the top 5 movies with the most roles listed in ACTED_IN relationship.,Complex Aggregation Queries,movies
+Who are the people that Keanu Reeves follows?,Complex Aggregation Queries,movies
+List all persons who have reviewed a movie with a rating less than 50.,Complex Aggregation Queries,movies
+"Who has produced, directed, and acted in the same movie?",Complex Aggregation Queries,movies
+"Find all movies with a summary 'Dark, but compelling'.",Complex Aggregation Queries,movies
+Which person has the highest number of followers?,Complex Aggregation Queries,movies
+List all movies with a vote count between 100 and 500.,Complex Aggregation Queries,movies
+Who are the top 3 youngest directors in the database?,Complex Aggregation Queries,movies
+What are the distinct summaries available for movie reviews?,Complex Aggregation Queries,movies
+Which movies have been produced by more than one person?,Complex Aggregation Queries,movies
+List the top 5 movies with the highest release year.,Complex Aggregation Queries,movies
+Who has acted in movies directed by Lana Wachowski?,Complex Aggregation Queries,movies
+List the top 3 oldest actors in the database.,Complex Aggregation Queries,movies
+What roles are available in the ACTED_IN relationship for movies released before 2000?,Complex Aggregation Queries,movies
+Which people have both acted in and reviewed the same movie?,Complex Aggregation Queries,movies
+List all persons who have directed a movie and also follow someone.,Complex Aggregation Queries,movies
+Who has the most roles in a single movie?,Complex Aggregation Queries,movies
+List all movies where the same person has acted and produced.,Complex Aggregation Queries,movies
+Which movies have been reviewed with a rating of 100?,Complex Aggregation Queries,movies
+"List the persons who have written, directed, and produced the same movie.",Complex Aggregation Queries,movies
+Who are the top 5 persons with the most reviews written?,Complex Aggregation Queries,movies
+What are the most common roles played by actors in movies from the 1990s?,Complex Aggregation Queries,movies
+Which people were born in the 1960s and have acted in movies?,Complex Aggregation Queries,movies
+List the movies with exactly 3 roles in the ACTED_IN relationship.,Complex Aggregation Queries,movies
+Which movies have a tagline ending with 'world'?,Complex Aggregation Queries,movies
+Find the top 5 movies with the lowest ratings in REVIEWS.,Complex Aggregation Queries,movies
+Who are the actors in the movie with the highest number of votes?,Complex Aggregation Queries,movies
+List all persons who have produced more than 3 movies.,Complex Aggregation Queries,movies
+What are the roles played by Laurence Fishburne in 'The Matrix Revolutions'?,Complex Aggregation Queries,movies
+Which movies have been acted in by persons born before 1950?,Complex Aggregation Queries,movies
+List the top 3 movies reviewed by the youngest reviewers.,Complex Aggregation Queries,movies
+Who has directed the most movies released after 2000?,Complex Aggregation Queries,movies
+List all movies that have multiple reviews.,Complex Aggregation Queries,movies
+What are the common roles for Keanu Reeves across all his movies?,Complex Aggregation Queries,movies
+List the top 5 movies with the most diverse cast in terms of birth years.,Complex Aggregation Queries,movies
+Who has reviewed movies directed by Lana Wachowski?,Complex Aggregation Queries,movies
+List the top 3 actors with roles in movies released before 1980.,Complex Aggregation Queries,movies
+Which movies have been produced and directed by the same person?,Complex Aggregation Queries,movies
+"Find all movies with a summary 'Fun, but a little far fetched'.",Complex Aggregation Queries,movies
+Which actors have acted in both 'The Matrix' and 'Speed Racer'?,Complex Aggregation Queries,movies
+List all movies that Joel Silver has both produced and reviewed.,Complex Aggregation Queries,movies
+Who are the directors of movies with more than 1000 votes?,Complex Aggregation Queries,movies
+List the top 5 oldest movies in the database.,Complex Aggregation Queries,movies
+What are the roles played by actors in the movie 'Speed Racer'?,Complex Aggregation Queries,movies
+Which movies have been reviewed by more than two persons?,Complex Aggregation Queries,movies
+What are the top 5 movies released between 2000 and 2010?,Verbose query,movies
+List 3 people born before 1960.,Verbose query,movies
+Which movies have more than 5000 votes?,Verbose query,movies
+Name 3 persons who acted in a movie released before 1980.,Verbose query,movies
+Who are the top 5 directors of movies released after 1995?,Verbose query,movies
+What are the top 3 movies with the highest number of votes?,Verbose query,movies
+List 3 actors who have acted in more than one movie.,Verbose query,movies
+Which person has directed the most films? Limit to top 3.,Verbose query,movies
+Who are the people that Keanu Reeves follows?,Verbose query,movies
+List three movies reviewed with a rating above 90.,Verbose query,movies
+What are the roles of Keanu Reeves in 'The Matrix'?,Verbose query,movies
+Who produced 'Speed Racer' and what year was it released?,Verbose query,movies
+Which movies did Lana Wachowski direct?,Verbose query,movies
+List the top 3 highest-rated movies by reviews.,Verbose query,movies
+Name 3 people who were born after 1980 and have directed a movie.,Verbose query,movies
+Who wrote 'Something's Gotta Give' and what is the movie's release year?,Verbose query,movies
+What are the top 3 least voted for movies in the database?,Verbose query,movies
+List 3 actors who also have roles as producers.,Verbose query,movies
+Which movies have a tagline containing the word 'limit'?,Verbose query,movies
+Who reviewed the movie with the highest rating and what was the summary?,Verbose query,movies
+List movies that have been both acted in and directed by the same person.,Verbose query,movies
+Who are the top 3 youngest producers in the database?,Verbose query,movies
+List 3 movies with the tagline including the word 'real'.,Verbose query,movies
+What are the roles played by actors in 'Speed Racer'?,Verbose query,movies
+Name 3 persons who have reviewed a movie and also acted in a different movie.,Verbose query,movies
+How many people have directed more than two movies?,Verbose query,movies
+List the movies that have been produced and directed by the same person.,Verbose query,movies
+Which person has the most relationships of any type in the database?,Verbose query,movies
+Name 3 movies that Keanu Reeves has acted in.,Verbose query,movies
+What are the top 3 oldest movies in the database by release year?,Verbose query,movies
+Which movies were released in 1995?,Simple Retrieval Queries,neoflix
+List the first 3 movies with a budget over 50 million.,Simple Retrieval Queries,neoflix
+What are the top 5 most popular movies according to their popularity score?,Simple Retrieval Queries,neoflix
+Name 3 movies directed by Pixar Animation Studios.,Simple Retrieval Queries,neoflix
+Which movies have a runtime longer than 100 minutes?,Simple Retrieval Queries,neoflix
+List the first 3 movies in the Toy Story Collection.,Simple Retrieval Queries,neoflix
+What are the top 5 highest revenue-generating movies?,Simple Retrieval Queries,neoflix
+Which movies have been rated by user with ID 1?,Simple Retrieval Queries,neoflix
+Name 3 movies that have the keyword 'jealousy'.,Simple Retrieval Queries,neoflix
+Which movies are categorized under the genre 'Animation'?,Simple Retrieval Queries,neoflix
+What are the latest 3 movies added to the database?,Simple Retrieval Queries,neoflix
+List the first 3 movies with a tagline containing the word 'excitement'.,Simple Retrieval Queries,neoflix
+Which movies have been produced in the United States of America?,Simple Retrieval Queries,neoflix
+What are the top 5 movies with the highest average vote?,Simple Retrieval Queries,neoflix
+Name 3 movies that have been translated into Kiswahili.,Simple Retrieval Queries,neoflix
+Which movies feature the original language as 'en'?,Simple Retrieval Queries,neoflix
+List the first 3 movies where Tom Hanks acted as a cast member.,Simple Retrieval Queries,neoflix
+Which movies are part of a collection with a backdrop path containing '/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg'?,Simple Retrieval Queries,neoflix
+What are the top 5 movies with the most votes?,Simple Retrieval Queries,neoflix
+Name 3 movies with a release date after 2000.,Simple Retrieval Queries,neoflix
+Which movies have a homepage URL specified?,Simple Retrieval Queries,neoflix
+List the first 3 movies that have a poster path ending in '.jpg'.,Simple Retrieval Queries,neoflix
+Which movies are associated with the production company 'Pixar Animation Studios'?,Simple Retrieval Queries,neoflix
+What are the 3 most recent movies with a status of 'Released'?,Simple Retrieval Queries,neoflix
+Name 3 movies that Tom Hanks has a credit in as a crew member.,Simple Retrieval Queries,neoflix
+Which movies have a revenue greater than 300 million?,Simple Retrieval Queries,neoflix
+List the first 3 movies with an average vote less than 5.,Simple Retrieval Queries,neoflix
+Which movies have a runtime less than 85 minutes?,Simple Retrieval Queries,neoflix
+What are the top 5 movies by budget size?,Simple Retrieval Queries,neoflix
+Name 3 movies spoken in more than one language.,Simple Retrieval Queries,neoflix
+Which movies have been rated by at least 100 users?,Simple Retrieval Queries,neoflix
+List the first 3 movies with an IMDb ID starting with 'tt'.,Simple Retrieval Queries,neoflix
+Which movies have been produced in more than one country?,Simple Retrieval Queries,neoflix
+What are the top 5 movies with the shortest runtime?,Simple Retrieval Queries,neoflix
+Name 3 movies that have been keyword-tagged with 'based on novel'.,Simple Retrieval Queries,neoflix
+Which movies have a tagline that includes the word 'love'?,Simple Retrieval Queries,neoflix
+List the first 3 movies that have a vote count greater than 500.,Simple Retrieval Queries,neoflix
+What are the top 5 movies with the lowest revenue?,Simple Retrieval Queries,neoflix
+Name 3 movies with a budget of exactly 30 million.,Simple Retrieval Queries,neoflix
+Which movies feature music by a person named 'John Williams' as a crew member?,Simple Retrieval Queries,neoflix
+List the top 5 movies by revenue.,Complex Retrieval Queries,neoflix
+Which movies have a budget greater than 50 million dollars?,Complex Retrieval Queries,neoflix
+Find all movies produced by Pixar Animation Studios.,Complex Retrieval Queries,neoflix
+What are the top 3 most popular movies according to their popularity score?,Complex Retrieval Queries,neoflix
+Which movies have been rated by more than 5000 users?,Complex Retrieval Queries,neoflix
+Display the top 5 longest movies by runtime.,Complex Retrieval Queries,neoflix
+Which movies are part of the Toy Story Collection?,Complex Retrieval Queries,neoflix
+List all movies that have the keyword 'jealousy'.,Complex Retrieval Queries,neoflix
+What are the top 3 highest voted movies in terms of average vote?,Complex Retrieval Queries,neoflix
+Which movies are released in the 'Animation' genre?,Complex Retrieval Queries,neoflix
+Which movies have a runtime longer than 120 minutes and are categorized under the 'Drama' genre?,Complex Retrieval Queries,neoflix
+Display movies that have been released in the 'United States of America'.,Complex Retrieval Queries,neoflix
+List the top 5 movies that have a poster path available.,Complex Retrieval Queries,neoflix
+Which movies feature 'Tom Hanks' as a cast member?,Complex Retrieval Queries,neoflix
+What are the movies directed by a person who has also acted in a movie?,Complex Retrieval Queries,neoflix
+Which movies have been rated exactly 5.0 by any user?,Complex Retrieval Queries,neoflix
+Display all movies that were released in the 1990s.,Complex Retrieval Queries,neoflix
+List the top 3 movies with the most revenue that were released before the year 2000.,Complex Retrieval Queries,neoflix
+Which movies have a homepage listed in their properties?,Complex Retrieval Queries,neoflix
+Find all movies where the original language is 'en' and have a tagline included.,Complex Retrieval Queries,neoflix
+Which movies have been translated into more than three languages?,Complex Retrieval Queries,neoflix
+List the genres associated with the movie 'Toy Story'.,Complex Retrieval Queries,neoflix
+Find all movies where Tom Hanks is listed first in the cast.,Complex Retrieval Queries,neoflix
+Which movies are associated with more than one production company?,Complex Retrieval Queries,neoflix
+Display the top 5 movies with the highest budget to revenue ratio.,Complex Retrieval Queries,neoflix
+List all movies where the overview mentions 'adventure'.,Complex Retrieval Queries,neoflix
+Which movies have a status of 'Released' and a vote count of over 1000?,Complex Retrieval Queries,neoflix
+Identify all movies that were produced in a country other than the United States.,Complex Retrieval Queries,neoflix
+List all movies that have been rated by user with ID 1.,Complex Retrieval Queries,neoflix
+Which movies have a budget less than 10 million but a revenue greater than 100 million?,Complex Retrieval Queries,neoflix
+"Display movies that have been rated after January 1, 2015.",Complex Retrieval Queries,neoflix
+Which movies have the most keywords associated with them?,Complex Retrieval Queries,neoflix
+List the top 3 movies with the shortest runtime.,Complex Retrieval Queries,neoflix
+Which movies are associated with the keyword 'space'?,Complex Retrieval Queries,neoflix
+Display the top 5 movies that were most recently released.,Complex Retrieval Queries,neoflix
+Find all movies that have a runtime of exactly 90 minutes.,Complex Retrieval Queries,neoflix
+Which movies have Tom Hanks credited as a producer?,Complex Retrieval Queries,neoflix
+List all genres that have been accessed by the 'Ultimate' package.,Complex Retrieval Queries,neoflix
+Display the top 3 movies with the least popularity.,Complex Retrieval Queries,neoflix
+Which movies have a cast member who has also worked in the crew of the same movie?,Complex Retrieval Queries,neoflix
+Find all movies where the original and spoken languages are different.,Complex Retrieval Queries,neoflix
+List all movies that have a backdrop path available.,Complex Retrieval Queries,neoflix
+Which movies have more than three genres associated with them?,Complex Retrieval Queries,neoflix
+Display the top 5 movies with the lowest average vote.,Complex Retrieval Queries,neoflix
+Which movies are associated with a collection that has a poster path?,Complex Retrieval Queries,neoflix
+List all movies produced in countries where the primary language is not English.,Complex Retrieval Queries,neoflix
+Which movies have the highest number of associated keywords?,Complex Retrieval Queries,neoflix
+Display movies that have a revenue of zero.,Complex Retrieval Queries,neoflix
+Find all adult movies that have been released.,Complex Retrieval Queries,neoflix
+List the top 3 adult movies by average vote.,Complex Retrieval Queries,neoflix
+"Which adult movies have a budget greater than 500,000 dollars?",Complex Retrieval Queries,neoflix
+What are the top 5 movies by revenue?,Simple Aggregation Queries,neoflix
+Which movies have a runtime longer than 120 minutes?,Simple Aggregation Queries,neoflix
+List all the languages spoken in the movie 'Jumanji'.,Simple Aggregation Queries,neoflix
+What are the first 3 highest voted movies?,Simple Aggregation Queries,neoflix
+Which movies were released after the year 2000?,Simple Aggregation Queries,neoflix
+How many movies have a budget greater than 100 million?,Simple Aggregation Queries,neoflix
+Which movies are associated with the genre 'Animation'?,Simple Aggregation Queries,neoflix
+Can you find movies that are part of the 'Toy Story Collection'?,Simple Aggregation Queries,neoflix
+What are the top 5 most popular movies?,Simple Aggregation Queries,neoflix
+Which movies have 'Tom Hanks' as a cast member?,Simple Aggregation Queries,neoflix
+List all the genres associated with the movie 'Toy Story'.,Simple Aggregation Queries,neoflix
+Which production companies have produced movies with a budget over 50 million?,Simple Aggregation Queries,neoflix
+What are the languages available for the movie 'Toy Story'?,Simple Aggregation Queries,neoflix
+Which movies have a homepage listed?,Simple Aggregation Queries,neoflix
+List the first 5 movies sorted by popularity in descending order.,Simple Aggregation Queries,neoflix
+What are the original titles of movies that have been translated to Spanish?,Simple Aggregation Queries,neoflix
+Who are the top 5 most frequent directors in the movies dataset?,Simple Aggregation Queries,neoflix
+Which countries have produced movies with a revenue exceeding 200 million?,Simple Aggregation Queries,neoflix
+List the first 3 production companies by the number of movies produced.,Simple Aggregation Queries,neoflix
+Which movies feature the keyword 'jealousy'?,Simple Aggregation Queries,neoflix
+What are the top 5 movies with the most user ratings?,Simple Aggregation Queries,neoflix
+Which movies have been rated by user '1'?,Simple Aggregation Queries,neoflix
+List all movies that have been produced in 'United States of America'.,Simple Aggregation Queries,neoflix
+What are the first 3 oldest movies in the database?,Simple Aggregation Queries,neoflix
+Which movies have the tagline 'Roll the dice and unleash the excitement!'?,Simple Aggregation Queries,neoflix
+What are the top 5 longest movies by runtime?,Simple Aggregation Queries,neoflix
+Which movies have exactly 3 keywords associated with them?,Simple Aggregation Queries,neoflix
+List the first 5 movies that have been associated with more than one genre.,Simple Aggregation Queries,neoflix
+Who are the first 3 actors in the cast list of 'Toy Story'?,Simple Aggregation Queries,neoflix
+What are the different jobs listed in the crew for the movie 'Toy Story'?,Simple Aggregation Queries,neoflix
+Which languages have more than 5 movies spoken in them?,Simple Aggregation Queries,neoflix
+List the first 3 genres most commonly found in videos.,Simple Aggregation Queries,neoflix
+Which videos have a runtime less than 30 minutes?,Simple Aggregation Queries,neoflix
+What are the top 5 most popular videos?,Simple Aggregation Queries,neoflix
+Which videos have been produced by 'Pixar Animation Studios'?,Simple Aggregation Queries,neoflix
+List all the keywords associated with the video 'Jonah: A VeggieTales Movie'.,Simple Aggregation Queries,neoflix
+What are the top 3 countries by the number of adult films produced?,Simple Aggregation Queries,neoflix
+Which adult films have a runtime longer than 90 minutes?,Simple Aggregation Queries,neoflix
+List the top 3 most controversial adult films based on their overview.,Simple Aggregation Queries,neoflix
+What are the original languages of the top 5 highest rated adult films?,Simple Aggregation Queries,neoflix
+Which adult films have been released after 2010?,Simple Aggregation Queries,neoflix
+List the first 3 production companies that have produced the most adult films.,Simple Aggregation Queries,neoflix
+Which adult films are associated with the genre 'Horror'?,Simple Aggregation Queries,neoflix
+What are the first 3 most popular adult films based on popularity?,Simple Aggregation Queries,neoflix
+Which packages provide access to the genre 'Animation'?,Simple Aggregation Queries,neoflix
+List the first 5 subscriptions that expire in 2020.,Simple Aggregation Queries,neoflix
+What are the prices of the packages named 'Gold' and 'Platinum'?,Simple Aggregation Queries,neoflix
+Which genres are accessible through the 'Ultimate' package?,Simple Aggregation Queries,neoflix
+What are the top 3 videos rated by users?,Simple Aggregation Queries,neoflix
+Which movies have Tom Hanks listed both in cast and crew?,Simple Aggregation Queries,neoflix
+What are the top 3 movies by vote count that were released in the 1990s?,Simple Aggregation Queries,neoflix
+Which movies have a revenue greater than their budget?,Simple Aggregation Queries,neoflix
+List all the movies that have a status of 'In Production'.,Simple Aggregation Queries,neoflix
+What are the original languages for the top 5 movies based on average vote?,Simple Aggregation Queries,neoflix
+Which movies are tagged with 'adventure' and have a popularity above 15?,Simple Aggregation Queries,neoflix
+Which countries have produced more than 10 movies in the database?,Simple Aggregation Queries,neoflix
+What are the first 5 production companies by the number of genres they produce movies in?,Simple Aggregation Queries,neoflix
+Which movies have been produced in more than one country?,Simple Aggregation Queries,neoflix
+List the first 5 movies with a poster path ending in '.jpg'.,Simple Aggregation Queries,neoflix
+What are the jobs of the first 3 crew members for the movie with the highest budget?,Simple Aggregation Queries,neoflix
+Which movies have been translated into more than three languages?,Simple Aggregation Queries,neoflix
+Which movies have the most number of keywords associated with them?,Simple Aggregation Queries,neoflix
+What are the first 3 movies with the highest budget to revenue ratio?,Simple Aggregation Queries,neoflix
+List the first 5 countries that have produced movies with an average vote above 7.0.,Simple Aggregation Queries,neoflix
+Which production companies have produced movies that are part of a collection?,Simple Aggregation Queries,neoflix
+What are the first 3 movies in the 'Toy Story Collection' based on release date?,Simple Aggregation Queries,neoflix
+Which movies have a cast member with the profile path ending in 'jpg'?,Simple Aggregation Queries,neoflix
+List the first 3 movies with a revenue of zero.,Simple Aggregation Queries,neoflix
+What are the first 3 genres associated with the most popular movies?,Simple Aggregation Queries,neoflix
+Which movies have been rated by more than 5000 users?,Simple Aggregation Queries,neoflix
+List the first 3 movies sorted by release date in ascending order.,Simple Aggregation Queries,neoflix
+What are the first 5 movies with the lowest average vote?,Simple Aggregation Queries,neoflix
+Which movies have a tagline containing the word 'excitement'?,Simple Aggregation Queries,neoflix
+What are the first 3 countries with the most movies produced in the genre 'Drama'?,Simple Aggregation Queries,neoflix
+Which videos have a budget less than 100000?,Simple Aggregation Queries,neoflix
+List the first 3 videos with no revenue reported.,Simple Aggregation Queries,neoflix
+What are the top 5 most popular genres in adult films?,Simple Aggregation Queries,neoflix
+Which adult films have been produced by companies not based in the USA?,Simple Aggregation Queries,neoflix
+List the first 3 adult films sorted by runtime in descending order.,Simple Aggregation Queries,neoflix
+What are the first 5 adult films with the highest average vote?,Simple Aggregation Queries,neoflix
+Which adult films feature the keyword 'murder'?,Simple Aggregation Queries,neoflix
+What are the first 3 videos that have been rated higher than 8.0?,Simple Aggregation Queries,neoflix
+List the top 5 longest running adult films.,Simple Aggregation Queries,neoflix
+Which adult films have a homepage listed?,Simple Aggregation Queries,neoflix
+What are the top 3 most budget-efficient adult films (highest revenue to budget ratio)?,Simple Aggregation Queries,neoflix
+Which adult films have been released with the status 'In Production'?,Simple Aggregation Queries,neoflix
+What are the top 5 movies with the highest revenue?,Pathfinding Queries,neoflix
+List the top 3 movies released in the United States of America.,Pathfinding Queries,neoflix
+Which 5 movies were produced by Pixar Animation Studios?,Pathfinding Queries,neoflix
+Find the first 3 movies in the Toy Story Collection.,Pathfinding Queries,neoflix
+Which 3 movies have the keyword 'jealousy'?,Pathfinding Queries,neoflix
+What are the first 5 movies rated by user with ID 1?,Pathfinding Queries,neoflix
+List the top 5 highest voted movies on IMDb.,Pathfinding Queries,neoflix
+Which 3 highest budget movies were released after 2000?,Pathfinding Queries,neoflix
+What are the top 3 movies spoken in Kiswahili?,Pathfinding Queries,neoflix
+Which 5 movies have Tom Hanks in the cast?,Pathfinding Queries,neoflix
+List the first 3 movies directed by a person with gender 2.,Pathfinding Queries,neoflix
+What are the top 5 movies with a runtime longer than 120 minutes?,Pathfinding Queries,neoflix
+Show the first 5 movies that have a popularity score over 15.,Pathfinding Queries,neoflix
+Which 3 movies are part of genres with an ID between 15 and 50?,Pathfinding Queries,neoflix
+List the top 5 movies that have been rated over 8.0.,Pathfinding Queries,neoflix
+Which 3 movies have the most keywords associated?,Pathfinding Queries,neoflix
+Show the top 3 movies that were produced in multiple countries.,Pathfinding Queries,neoflix
+List the first 5 movies that have been tagged with 'based on novel'.,Pathfinding Queries,neoflix
+Which 3 movies have the most diverse cast in terms of gender?,Pathfinding Queries,neoflix
+What are the top 5 movies that premiered in the last quarter of any year?,Pathfinding Queries,neoflix
+Find the first 3 movies that feature both English and Spanish languages.,Pathfinding Queries,neoflix
+Which 5 movies were produced by companies with an ID over 1000?,Pathfinding Queries,neoflix
+List the top 3 oldest movies in the database.,Pathfinding Queries,neoflix
+What are the top 5 movies with a tagline containing the word 'adventure'?,Pathfinding Queries,neoflix
+Which 3 movies have the shortest runtime?,Pathfinding Queries,neoflix
+Show the first 5 movies that were originally titled differently from their English title.,Pathfinding Queries,neoflix
+List the top 3 movies that have a homepage listed.,Pathfinding Queries,neoflix
+What are the first 5 movies that have no revenue recorded?,Pathfinding Queries,neoflix
+Which 5 movies have the most poster path variations?,Pathfinding Queries,neoflix
+Show the top 3 movies that have been reviewed most recently by any user.,Pathfinding Queries,neoflix
+List the first 3 videos with the highest average vote.,Pathfinding Queries,neoflix
+Which 5 videos have a runtime under 60 minutes?,Pathfinding Queries,neoflix
+Show the first 3 adult films that are spoken in Italian.,Pathfinding Queries,neoflix
+List the top 5 adult films with a tagline containing 'murder'.,Pathfinding Queries,neoflix
+What are the first 3 packages that provide access to the genre 'Animation'?,Pathfinding Queries,neoflix
+Which 5 subscriptions are linked to the 'Ultimate' package?,Pathfinding Queries,neoflix
+List the top 3 genres most frequently associated with videos.,Pathfinding Queries,neoflix
+What are the first 5 countries where most adult films are produced?,Pathfinding Queries,neoflix
+Which 3 languages are most common in adult films?,Pathfinding Queries,neoflix
+Show the top 5 most popular adult films based on their popularity score.,Pathfinding Queries,neoflix
+List the first 3 adult films with the largest budget.,Pathfinding Queries,neoflix
+What are the top 5 videos that have been rated by the most users?,Pathfinding Queries,neoflix
+Which 3 videos have the most keywords associated with them?,Pathfinding Queries,neoflix
+Show the first 5 videos produced by the company with ID 10.,Pathfinding Queries,neoflix
+List the top 3 collections with the most movies included.,Pathfinding Queries,neoflix
+What are the first 5 movies with a release date on a weekend?,Pathfinding Queries,neoflix
+Which 3 production companies have produced the most movies?,Pathfinding Queries,neoflix
+Show the top 5 movies with the lowest average vote but highest revenue.,Pathfinding Queries,neoflix
+List the first 3 people who have both acted in and produced a movie.,Pathfinding Queries,neoflix
+What are the top 5 languages spoken in movies that have a budget over $50 million?,Pathfinding Queries,neoflix
+Which 3 countries have produced the most movies in the genre 'Drama'?,Pathfinding Queries,neoflix
+Show the first 5 movies that have a character named 'Charlie Wilson' in their cast.,Pathfinding Queries,neoflix
+List the top 3 people with the most crew roles in movies.,Pathfinding Queries,neoflix
+What are the first 5 movies that have a genre change from their original genre in a collection?,Pathfinding Queries,neoflix
+Which 3 movies have changed their status from 'In Production' to 'Released'?,Pathfinding Queries,neoflix
+Show the top 5 movies with a poster path ending in '.jpg'.,Pathfinding Queries,neoflix
+List the first 3 movies with a backdrop path that includes '/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg'.,Pathfinding Queries,neoflix
+What are the top 5 movies that have undergone a title change after release?,Pathfinding Queries,neoflix
+Which 3 movies have the highest discrepancy between budget and revenue?,Pathfinding Queries,neoflix
+Show the first 5 movies where the original language is not English but have English as a spoken language.,Pathfinding Queries,neoflix
+List the top 3 highest grossing movies in the genre 'Action'.,Pathfinding Queries,neoflix
+What are the first 5 movies that have a character played by a person with gender 1?,Pathfinding Queries,neoflix
+Which 3 movies have the most extensive cast list?,Pathfinding Queries,neoflix
+Show the top 5 oldest movies in the collection with the highest revenue.,Pathfinding Queries,neoflix
+List the first 3 movies that have a link to their homepage that includes 'disney'.,Pathfinding Queries,neoflix
+What are the top 5 movies with the most significant number of languages spoken?,Pathfinding Queries,neoflix
+Which 3 movies have been rated exactly 5 times?,Pathfinding Queries,neoflix
+Show the first 5 movies where the production company's name includes 'Studios'.,Pathfinding Queries,neoflix
+List the top 3 videos that have a revenue of zero.,Pathfinding Queries,neoflix
+What are the first 5 adult films that have a runtime over 100 minutes?,Pathfinding Queries,neoflix
+Which 3 adult films have been released during a leap year?,Pathfinding Queries,neoflix
+Show the top 5 adult films with a poster path containing '/tzVK7nTnzUiVeFSZhOAIHmrgXUS.jpg'.,Pathfinding Queries,neoflix
+List the first 3 adult films with a tagline mentioning 'love'.,Pathfinding Queries,neoflix
+What are the top 5 adult films with the highest number of votes?,Pathfinding Queries,neoflix
+Which 3 adult films have the lowest average votes but were produced in 'United States of America'?,Pathfinding Queries,neoflix
+Show the first 5 adult films based on their IMDB ID starting with 'tt007'.,Pathfinding Queries,neoflix
+"List the top 3 adult films with a budget under $10,000.",Pathfinding Queries,neoflix
+What are the top 5 movies sorted by revenue?,Complex Aggregation Queries,neoflix
+List the first 3 movies released after 2010.,Complex Aggregation Queries,neoflix
+Which 3 movies have the highest average vote?,Complex Aggregation Queries,neoflix
+Name the top 5 oldest movies in the database.,Complex Aggregation Queries,neoflix
+What are the first 3 highest budget movies that were released?,Complex Aggregation Queries,neoflix
+List 5 movies that have a runtime longer than 120 minutes.,Complex Aggregation Queries,neoflix
+Which 3 movies have the most keywords associated with them?,Complex Aggregation Queries,neoflix
+Name the top 5 movies by vote count.,Complex Aggregation Queries,neoflix
+What are the first 3 movies with the most characters in their overview?,Complex Aggregation Queries,neoflix
+List the top 5 movies that made the least revenue.,Complex Aggregation Queries,neoflix
+Which 3 languages are spoken in the most number of movies?,Complex Aggregation Queries,neoflix
+Name the top 5 production companies by the number of movies produced.,Complex Aggregation Queries,neoflix
+What are the first 3 genres that have the most movies?,Complex Aggregation Queries,neoflix
+List 5 countries where the most movies were produced.,Complex Aggregation Queries,neoflix
+Which 3 collections contain the most movies?,Complex Aggregation Queries,neoflix
+Name the top 5 movies with the longest runtime.,Complex Aggregation Queries,neoflix
+What are the first 3 movies with the shortest runtime?,Complex Aggregation Queries,neoflix
+List the top 5 movies based on popularity.,Complex Aggregation Queries,neoflix
+Which 3 movies have the least number of votes?,Complex Aggregation Queries,neoflix
+Name the top 5 movies with the most budget to revenue ratio.,Complex Aggregation Queries,neoflix
+What are the first 3 genres with the least number of associated movies?,Complex Aggregation Queries,neoflix
+List the top 5 languages based on the number of movies originally in that language.,Complex Aggregation Queries,neoflix
+Which 3 production companies have the smallest number of movies?,Complex Aggregation Queries,neoflix
+Name the top 5 movies that are part of a collection.,Complex Aggregation Queries,neoflix
+What are the first 3 movies that are not part of any collection?,Complex Aggregation Queries,neoflix
+List 5 movies that have a poster path containing '/rh'.,Complex Aggregation Queries,neoflix
+Which 3 movies have the most revenue among those released in the 1990s?,Complex Aggregation Queries,neoflix
+Name the top 5 movies with a tagline containing the word 'love'.,Complex Aggregation Queries,neoflix
+What are the first 3 movies with a release date on a Monday?,Complex Aggregation Queries,neoflix
+List the top 5 movies that have a homepage URL.,Complex Aggregation Queries,neoflix
+Which 3 movies have the highest popularity but the least revenue?,Complex Aggregation Queries,neoflix
+Name the top 5 genres by the average votes of the movies in them.,Complex Aggregation Queries,neoflix
+What are the first 3 languages spoken in movies with a budget over $50 million?,Complex Aggregation Queries,neoflix
+List 5 movies where the original and spoken languages are different.,Complex Aggregation Queries,neoflix
+Which 3 countries have the least number of movies produced in them?,Complex Aggregation Queries,neoflix
+Name the top 5 movies with 'Animated' as a keyword.,Complex Aggregation Queries,neoflix
+What are the first 3 adult videos by revenue?,Complex Aggregation Queries,neoflix
+List the top 5 adult videos by vote count.,Complex Aggregation Queries,neoflix
+Which 3 adult videos have the longest runtime?,Complex Aggregation Queries,neoflix
+Name the top 5 adult videos with the highest average vote.,Complex Aggregation Queries,neoflix
+"What are the first 3 adult videos with a budget over $500,000?",Complex Aggregation Queries,neoflix
+List the 5 oldest adult videos based on release date.,Complex Aggregation Queries,neoflix
+Which 3 adult videos have the most keywords associated with them?,Complex Aggregation Queries,neoflix
+Name the top 5 adult videos that were produced in Italy.,Complex Aggregation Queries,neoflix
+What are the first 3 adult videos not produced in any country listed?,Complex Aggregation Queries,neoflix
+List 5 adult videos with a tagline containing the word 'sex'.,Complex Aggregation Queries,neoflix
+Which 3 adult videos have the most provocative poster paths?,Complex Aggregation Queries,neoflix
+Name the top 5 adult videos with the least revenue.,Complex Aggregation Queries,neoflix
+What are the first 3 adult videos with exactly one keyword?,Complex Aggregation Queries,neoflix
+List the top 5 adult videos based on popularity.,Complex Aggregation Queries,neoflix
+Which 3 packages provide access to the most genres?,Complex Aggregation Queries,neoflix
+Name the top 5 subscriptions by the duration of the package they are for.,Complex Aggregation Queries,neoflix
+What are the first 3 packages with the highest price?,Complex Aggregation Queries,neoflix
+List the top 5 packages by the number of subscriptions associated with them.,Complex Aggregation Queries,neoflix
+Which 3 genres are provided access to by the 'Gold' package?,Complex Aggregation Queries,neoflix
+Name the top 5 packages that provide access to the 'Animation' genre.,Complex Aggregation Queries,neoflix
+What are the first 3 movies with the most associated cast members?,Complex Aggregation Queries,neoflix
+List the top 5 movies with the most crew members in the 'Production' department.,Complex Aggregation Queries,neoflix
+Which 3 movies have the highest number of associated languages?,Complex Aggregation Queries,neoflix
+Name the top 5 countries based on the number of languages spoken in their produced movies.,Complex Aggregation Queries,neoflix
+What are the first 3 movies with the highest number of associated production companies?,Complex Aggregation Queries,neoflix
+List the top 5 movies that are rated by the most users.,Complex Aggregation Queries,neoflix
+Which 3 movies have the most associated genres?,Complex Aggregation Queries,neoflix
+Name the top 5 movies with the most associated collections.,Complex Aggregation Queries,neoflix
+What are the first 3 videos with the most associated keywords?,Complex Aggregation Queries,neoflix
+List the top 5 videos by the number of countries they were produced in.,Complex Aggregation Queries,neoflix
+Which 3 videos have the highest number of associated production companies?,Complex Aggregation Queries,neoflix
+Name the top 5 videos with the most associated genres.,Complex Aggregation Queries,neoflix
+What are the first 3 videos with the highest popularity?,Complex Aggregation Queries,neoflix
+List the top 5 videos with the least revenue.,Complex Aggregation Queries,neoflix
+Which 3 videos have the most associated cast members?,Complex Aggregation Queries,neoflix
+Name the top 5 videos with the most crew members in the 'Production' department.,Complex Aggregation Queries,neoflix
+What are the first 3 videos with the highest number of associated languages?,Complex Aggregation Queries,neoflix
+List the top 5 videos by the number of countries they were produced in.,Complex Aggregation Queries,neoflix
+What are the top 5 movies with the highest average vote?,Verbose query,neoflix
+List the first 3 movies produced in the United States.,Verbose query,neoflix
+Which 3 movies have a runtime longer than 120 minutes?,Verbose query,neoflix
+Identify the top 5 most popular videos as per the popularity metric.,Verbose query,neoflix
+What are the first 3 movies directed by a person named 'John Doe'?,Verbose query,neoflix
+Name the top 5 movies that were released after 2010 and have a budget over 100 million USD.,Verbose query,neoflix
+Which 3 movies have more than 5000 vote counts?,Verbose query,neoflix
+Can you list the first 3 genres associated with the movie titled 'Toy Story'?,Verbose query,neoflix
+What are the top 5 production companies that have produced the most number of movies?,Verbose query,neoflix
+List the first 3 languages spoken in the movie titled 'Jumanji'.,Verbose query,neoflix
+Which 3 countries have produced the most number of videos?,Verbose query,neoflix
+List the top 5 keywords associated with the video titled 'Jonah: A VeggieTales Movie'.,Verbose query,neoflix
+What are the first 3 collections that include movies with a poster path containing '/rhIRbceoE9lR4veEXuwCC2wARtG.jpg'?,Verbose query,neoflix
+Name the top 5 persons who have played the character 'Woody' in any movie.,Verbose query,neoflix
+Which 3 users have rated the most number of movies?,Verbose query,neoflix
+List the top 5 genres that have been accessed by the package named 'Platinum'.,Verbose query,neoflix
+What are the first 3 movies that have a revenue greater than 100 million USD and are in the genre 'Action'?,Verbose query,neoflix
+Can you list the top 5 adult films with the highest popularity?,Verbose query,neoflix
+Which 3 movies have Tom Hanks as a cast member and have been released after 1995?,Verbose query,neoflix
+List the first 3 movies in the 'Toy Story Collection'.,Verbose query,neoflix
+Name the top 5 countries where the original language of the movie is Spanish.,Verbose query,neoflix
+What are the first 3 movies with the status 'In Production'?,Verbose query,neoflix
+List the top 5 movies that have been rated 10 by any user.,Verbose query,neoflix
+Which 3 genres do the most movies belong to?,Verbose query,neoflix
+List the first 3 movies that have the keyword 'space' associated with them.,Verbose query,neoflix
+What are the top 5 languages spoken in the adult films?,Verbose query,neoflix
+Name the top 5 movies with the longest runtime.,Verbose query,neoflix
+Which 3 movies have the lowest average vote and more than 100 vote counts?,Verbose query,neoflix
+List the top 5 users who have rated videos the most.,Verbose query,neoflix
+What are the first 3 production companies that produced videos with zero revenue?,Verbose query,neoflix
+Can you list the top 5 movies that are part of more than one collection?,Verbose query,neoflix
+Which 3 movies have the highest revenue and are part of the 'Toy Story Collection'?,Verbose query,neoflix
+List the first 3 videos that have a budget less than 5000 USD.,Verbose query,neoflix
+Name the top 5 most popular movies released before 2000.,Verbose query,neoflix
+What are the first 3 movies that have a tagline containing the word 'adventure'?,Verbose query,neoflix
+List the top 5 countries that have produced the most movies in the 'Comedy' genre.,Verbose query,neoflix
+Which 3 adult films have the tagline 'Humiliation. Rape. Murder. You know the drill.'?,Verbose query,neoflix
+List the first 3 movies that have been produced by 'Pixar Animation Studios' and have a budget over 50 million USD.,Verbose query,neoflix
+Name the top 5 languages in which the most movies have been originally made.,Verbose query,neoflix
+What are the first 3 videos that have a runtime shorter than 30 minutes?,Verbose query,neoflix
+"List the top 5 highest grossing movies that have been released on or after January 1, 2000.",Verbose query,neoflix
+Which 3 movies have an average vote less than 5 and have been produced in the country with ID 'US'?,Verbose query,neoflix
+List the first 3 persons who have directed a movie with a budget over 150 million USD.,Verbose query,neoflix
+Name the top 5 most frequently used keywords in videos.,Verbose query,neoflix
+What are the first 3 genres associated with the video titled 'Electrical Girl'?,Verbose query,neoflix
+List the top 5 highest-rated movies by users.,Verbose query,neoflix
+Which 3 movies have been produced by a company named 'Warner Bros' and have a revenue over 200 million USD?,Verbose query,neoflix
+List the first 3 languages used in movies with an original title 'Toy Story'.,Verbose query,neoflix
+Name the top 5 movies that have been produced in more than 3 countries.,Verbose query,neoflix
+What are the first 3 adult films that have a runtime longer than 90 minutes?,Verbose query,neoflix
+List the top 5 movies with a poster path ending in '.jpg'.,Verbose query,neoflix
+Which 3 persons have the most crew credits in movies released after 2010?,Verbose query,neoflix
+List the first 3 genres where the most movies have been produced.,Verbose query,neoflix
+Name the top 5 movies where the main language spoken is not the original language.,Verbose query,neoflix
+What are the first 3 movies with the genre 'Drama' that have a budget less than 10 million USD?,Verbose query,neoflix
+List the top 5 movies where the revenue exceeded the budget by over 100 million USD.,Verbose query,neoflix
+Which 3 movies have a production company named 'Lucasfilm' associated with them?,Verbose query,neoflix
+List the first 3 persons who have worked as producers in more than 5 movies.,Verbose query,neoflix
+Name the top 5 most popular movies according to the vote count.,Verbose query,neoflix
+What are the first 3 movies that have a homepage URL containing 'disney'?,Verbose query,neoflix
+List the top 5 movies that have been produced by 'Universal Pictures'.,Verbose query,neoflix
+Which 3 movies have the most languages spoken in them?,Verbose query,neoflix
+List the first 3 adult films that were released in the year 2000 or later.,Verbose query,neoflix
+Name the top 5 movies that have an IMDb ID starting with 'tt'.,Verbose query,neoflix
+What are the first 3 movies that have been rated by the user with ID '1'?,Verbose query,neoflix
+"List the top 5 movies with a release date on or before December 31, 1990.",Verbose query,neoflix
+Which 3 movies have the most extensive cast list as determined by the number of cast credits?,Verbose query,neoflix
+List the top 5 videos that have a tagline including the word 'comedy'.,Verbose query,neoflix
+Name the top 5 production companies that have produced the highest grossing movies.,Verbose query,neoflix
+What are the first 3 movies that have a budget exactly 50 million USD?,Verbose query,neoflix
+List the top 5 countries where the most adult films have been produced.,Verbose query,neoflix
+Which 3 movies have an average vote greater than 8 and have been produced in 'France'?,Verbose query,neoflix
+List the top 5 movies that have a runtime exactly 90 minutes.,Verbose query,neoflix
+Name the top 5 videos that were released in the year 2010 or later.,Verbose query,neoflix
+What are the first 3 movies that have a poster path containing '/vzmL6fP7aPKNKPRTFnZmiUfciyV.jpg'?,Verbose query,neoflix
+List the top 5 movies that were part of the 'Toy Story Collection' and have a runtime over 80 minutes.,Verbose query,neoflix
+Which 3 movies have been produced by 'Pixar Animation Studios' and have a runtime under 100 minutes?,Verbose query,neoflix
+List the top 5 highest budget movies in the 'Animation' genre.,Verbose query,neoflix
+Name the top 5 movies that have the keyword 'jealousy' associated with them.,Verbose query,neoflix
+"What are the first 3 adult films with a budget over 500,000 USD?",Verbose query,neoflix
+List the top 5 movies with the most extensive production crew.,Verbose query,neoflix
+Which 3 videos have a homepage URL containing 'youtube'?,Verbose query,neoflix
+List the top 5 languages in which the most adult films have been originally made.,Verbose query,neoflix
+Name the top 5 users who have given the lowest average ratings to movies.,Verbose query,neoflix
+What are the first 3 movies that have been rated 5 or higher by more than one user?,Verbose query,neoflix
+List the top 5 movies released in the 1990s.,Verbose query,neoflix
+Which 3 movies have a vote count over 2000 and a budget under 50 million USD?,Verbose query,neoflix
+List the first 3 movies that have a revenue over 500 million USD.,Verbose query,neoflix
+Name the top 5 most popular movies in the 'Science Fiction' genre.,Verbose query,neoflix
+What are the names of the top 3 routers in Data Center DC1?,Simple Retrieval Queries,network
+List the first 3 zones by IP address in ascending order.,Simple Retrieval Queries,network
+Which interfaces are connected to the router named 'DC1-R-1'?,Simple Retrieval Queries,network
+Identify the top 5 machines held in racks within zone 1.,Simple Retrieval Queries,network
+What are the names of applications running on machines in rack 'DC1-RCK-1-1'?,Simple Retrieval Queries,network
+List all software versions associated with the software named 'RHEL'.,Simple Retrieval Queries,network
+Which ports are exposed by the interface with IP '10.0.0.254'?,Simple Retrieval Queries,network
+Find the first 5 processes running on any machine in Data Center DC1.,Simple Retrieval Queries,network
+What are the top 3 largest types by disk size available in the system?,Simple Retrieval Queries,network
+List all versions that software 'RHEL' depends on.,Simple Retrieval Queries,network
+Which applications listen on port 80?,Simple Retrieval Queries,network
+Display the top 3 services by PID running in Data Center DC1.,Simple Retrieval Queries,network
+Can you list the first 4 dependencies of the 'webserver' application?,Simple Retrieval Queries,network
+What are the names of the egress nodes in Data Center DC1?,Simple Retrieval Queries,network
+Which racks are contained within Data Center DC1 and are in zone 2?,Simple Retrieval Queries,network
+Find the first 3 networks routing through interface with IP '10.1.0.254'.,Simple Retrieval Queries,network
+Identify the first 5 types of machines in zone 3 by rack.,Simple Retrieval Queries,network
+Which software depends on version '7.1'?,Simple Retrieval Queries,network
+List the first 3 applications that started after timestamp 1606165629748.,Simple Retrieval Queries,network
+What are the top 3 processes that listen on port 80?,Simple Retrieval Queries,network
+Find all machines running OS named 'RHEL' in the first 5 racks of zone 1.,Simple Retrieval Queries,network
+Which services are instances of software named 'RHEL'?,Simple Retrieval Queries,network
+List the first 3 previous versions for version named '7.1'.,Simple Retrieval Queries,network
+What are the names of the switches located in rack 'DC1-RCK-1-1'?,Simple Retrieval Queries,network
+Which racks in zone 4 hold more than 5 machines?,Simple Retrieval Queries,network
+Identify the top 5 applications by PID that depend on the service 'java'.,Simple Retrieval Queries,network
+What are the IP addresses of networks in zone 2?,Simple Retrieval Queries,network
+List the first 3 racks by name that contain switches.,Simple Retrieval Queries,network
+Which applications have 'cms' as a dependency?,Simple Retrieval Queries,network
+Find the top 5 processes by PID that are instances of application 'webapp'.,Simple Retrieval Queries,network
+What ports are listened to by the service named 'java'?,Simple Retrieval Queries,network
+Which versions of software are depended upon by more than one other software?,Simple Retrieval Queries,network
+List all machines and their types in rack 'DC1-RCK-1-1'.,Simple Retrieval Queries,network
+What are the top 3 software names that depend on 'webserver'?,Simple Retrieval Queries,network
+Identify all applications running on machines that are of type 'xl'.,Simple Retrieval Queries,network
+Which services started after timestamp 1605733619064 and before 1606597376483?,Simple Retrieval Queries,network
+What are the names and IPs of all interfaces connected to network '10.2'?,Simple Retrieval Queries,network
+List the first 3 applications that are dependencies of processes named '7.1'.,Simple Retrieval Queries,network
+Which ports does the application 'crm' listen to?,Simple Retrieval Queries,network
+Find the top 3 largest services by RAM usage in Data Center DC1.,Simple Retrieval Queries,network
+What are the dependencies of the process named '8966'?,Simple Retrieval Queries,network
+Which racks contain machines running application named 'logstash'?,Simple Retrieval Queries,network
+Identify the top 5 types of machines by CPU power available in the system.,Simple Retrieval Queries,network
+What are the IP addresses of interfaces that are connected to zone 3's network?,Simple Retrieval Queries,network
+List the first 3 ports exposed by any service running on OS 'RHEL'.,Simple Retrieval Queries,network
+Which processes are instances of version '7.1'?,Simple Retrieval Queries,network
+Find the top 3 types of machines by RAM in racks located in zone 4.,Simple Retrieval Queries,network
+Which applications are instances of software named 'webapp'?,Simple Retrieval Queries,network
+List the first 3 interfaces that connect to routers in zone 1.,Simple Retrieval Queries,network
+What are the names of all egress nodes routing through interface with IP '10.0.0.254'?,Simple Retrieval Queries,network
+Identify all previous versions of the version named '7.1' that are used by a software.,Simple Retrieval Queries,network
+List all processes that depend on the service named 'java'.,Simple Retrieval Queries,network
+Which racks in zone 1 contain switches with IP starting with '10.1'?,Simple Retrieval Queries,network
+Find the top 5 machines by name running the OS 'RHEL' in rack 'DC1-RCK-1-1'.,Simple Retrieval Queries,network
+What are the types of machines that are running applications named 'cms'?,Simple Retrieval Queries,network
+Which versions of software named 'RHEL' are used by processes started after 1605733619064?,Simple Retrieval Queries,network
+List the first 3 services that are instances of the application named 'webserver'.,Simple Retrieval Queries,network
+What are the dependencies of the application named 'logstash'?,Simple Retrieval Queries,network
+Identify the first 5 ports listened to by the process named '8966'.,Simple Retrieval Queries,network
+Which applications and their start times are running on machines in zone 2?,Simple Retrieval Queries,network
+List the top 3 types of machines based on disk size in racks located in zone 3.,Simple Retrieval Queries,network
+What are the names of all routers routing through interface with IP '10.1.0.254'?,Simple Retrieval Queries,network
+Find the top 5 switches by rack number in zone 4.,Simple Retrieval Queries,network
+Which machines are running services that listen on port 80?,Simple Retrieval Queries,network
+What are the names and IPs of interfaces that connect to network '10.3'?,Simple Retrieval Queries,network
+List all versions that are previous to version named '7.1' and their dependencies.,Simple Retrieval Queries,network
+Which processes are instances of application named 'crm'?,Simple Retrieval Queries,network
+Find the top 3 racks by zone that contain the most machines.,Simple Retrieval Queries,network
+What are the names of all switches in racks within zone 1?,Simple Retrieval Queries,network
+Which services started between timestamps 1605733619064 and 1606597376483 and listen to port 80?,Simple Retrieval Queries,network
+Identify the first 5 applications by version that depend on the software 'RHEL'.,Simple Retrieval Queries,network
+List the first 3 processes that are instances of software named 'webapp'.,Simple Retrieval Queries,network
+Which ports does the OS 'RHEL' listen to through its services?,Simple Retrieval Queries,network
+Find the top 5 types of machines by CPU in racks located in zone 2.,Simple Retrieval Queries,network
+What are the dependencies of the service named 'java' that started after 1605733619064?,Simple Retrieval Queries,network
+Which applications are instances of service named 'java'?,Simple Retrieval Queries,network
+List the top 3 networks by size that route through interfaces in zone 4.,Simple Retrieval Queries,network
+What are the names of all machines in rack 'DC1-RCK-1-1' and their respective applications?,Simple Retrieval Queries,network
+Identify all previous versions of the software named 'RHEL' that are depended upon by other software.,Simple Retrieval Queries,network
+Find the top 3 types of machines by RAM that are held in racks in zone 1.,Simple Retrieval Queries,network
+Which processes are instances of version '7.1' and listen to port 80?,Simple Retrieval Queries,network
+List the first 3 services that depend on the process named '8966'.,Simple Retrieval Queries,network
+What are the names and IPs of interfaces that connect to zone 1's network?,Simple Retrieval Queries,network
+Which applications listen to ports managed by software 'RHEL'?,Simple Retrieval Queries,network
+Identify the first 5 machines by name that run the application named 'webserver'.,Simple Retrieval Queries,network
+What are the IP addresses of all interfaces in routers located in zone 2?,Simple Retrieval Queries,network
+List all types of machines in rack 'DC1-RCK-1-1' and their disk sizes.,Simple Retrieval Queries,network
+Which versions of software are instances of other applications?,Simple Retrieval Queries,network
+Find the top 5 racks by zone that contain the most types of machines.,Simple Retrieval Queries,network
+What are the dependencies of the software named 'RHEL' that are versions?,Simple Retrieval Queries,network
+Identify all applications that are instances of process named '8966'.,Simple Retrieval Queries,network
+List the top 3 networks by IP that are routed through interfaces connected to routers in zone 3.,Simple Retrieval Queries,network
+Which machines are running processes that depend on the service named 'java'?,Simple Retrieval Queries,network
+What are the names and IPs of all switches in zone 4?,Simple Retrieval Queries,network
+Find the top 5 applications by start time running on machines in rack 'DC1-RCK-1-1'.,Simple Retrieval Queries,network
+Which ports are listened to by all processes running on OS 'RHEL'?,Simple Retrieval Queries,network
+List the first 3 previous versions of the version named '7.1' and their software dependencies.,Simple Retrieval Queries,network
+List the top 3 routers located in zone 1.,Complex Retrieval Queries,network
+Which DataCenter contains the router 'DC1-R-1'?,Complex Retrieval Queries,network
+Find all interfaces connected to router 'DC1-R-2'.,Complex Retrieval Queries,network
+How many machines are held in the rack 'DC1-RCK-1-1'?,Complex Retrieval Queries,network
+Name the top 5 software dependencies for the software 'RHEL'.,Complex Retrieval Queries,network
+What are the top 3 recent applications run on machine 'DC1-RCK-1-1-M-1'?,Complex Retrieval Queries,network
+Identify the first 3 networks routing through interface with IP '10.0.0.254'.,Complex Retrieval Queries,network
+List all the types of machines available in rack 'DC1-RCK-1-1'.,Complex Retrieval Queries,network
+Which type of machine has the maximum CPU capacity?,Complex Retrieval Queries,network
+Find the top 5 egress routes from DataCenter 'DC1'.,Complex Retrieval Queries,network
+What are the top 3 services running on machines in rack 'DC1-RCK-1-1'?,Complex Retrieval Queries,network
+List the first 3 versions of software 'RHEL' installed on any machine.,Complex Retrieval Queries,network
+What are the top 3 applications listening on port 80?,Complex Retrieval Queries,network
+How many versions of the software 'RHEL' exist?,Complex Retrieval Queries,network
+Which DataCenter has the egress named 'DC1-RE'?,Complex Retrieval Queries,network
+Display the first 5 processes running on machine 'DC1-RCK-1-1-M-1' with PID greater than 5000.,Complex Retrieval Queries,network
+Identify the first 3 machines running the application 'webserver'.,Complex Retrieval Queries,network
+Which switches are located in rack 'DC1-RCK-1-1'?,Complex Retrieval Queries,network
+List all ports exposed by the interface with IP '10.0.0.254'.,Complex Retrieval Queries,network
+What are the first 3 zones with size 16 and IP starting with '10.2'?,Complex Retrieval Queries,network
+Display the top 3 services that started after timestamp 1606165629748.,Complex Retrieval Queries,network
+What are the first 5 IP addresses of interfaces connected to network '10.3'?,Complex Retrieval Queries,network
+List the first 5 dependencies of the application 'webapp'.,Complex Retrieval Queries,network
+Identify the top 3 racks in zone 4.,Complex Retrieval Queries,network
+What are the top 3 software versions that the software 'RHEL' depends on?,Complex Retrieval Queries,network
+List the first 5 processes that depend on the service 'java'.,Complex Retrieval Queries,network
+How many switches are connected to interfaces in zone 2?,Complex Retrieval Queries,network
+What are the first 5 applications running on OS 'RHEL'?,Complex Retrieval Queries,network
+List the first 3 services listening on port 80.,Complex Retrieval Queries,network
+What are the first 5 previous versions of version '7.1'?,Complex Retrieval Queries,network
+Identify the first 3 machines that are of type 'xl'.,Complex Retrieval Queries,network
+How many interfaces are connected to router 'DC1-R-3'?,Complex Retrieval Queries,network
+List the first 5 applications that depend on the process '8966'.,Complex Retrieval Queries,network
+What are the first 5 services that started before timestamp 1606597376483 and are running on a machine in zone 3?,Complex Retrieval Queries,network
+Identify the first 3 applications with a PID less than 2000.,Complex Retrieval Queries,network
+What are the first 3 types of machines available in zone 3?,Complex Retrieval Queries,network
+List all the software dependencies for the application 'crm'.,Complex Retrieval Queries,network
+How many machines run the service 'java' in the DataCenter 'DC1'?,Complex Retrieval Queries,network
+What are the first 3 versions of the OS running on machine 'DC1-RCK-1-1-M-1'?,Complex Retrieval Queries,network
+Which applications are listening on ports higher than 1024?,Complex Retrieval Queries,network
+List the first 3 processes that have a PID greater than 5000 and are running on a machine in zone 1.,Complex Retrieval Queries,network
+Identify the first 5 racks that hold machines of type 'm'.,Complex Retrieval Queries,network
+What are the first 3 services running on the OS 'RHEL'?,Complex Retrieval Queries,network
+List the first 5 machines connected to the network with IP '10.2'.,Complex Retrieval Queries,network
+Which applications have dependencies on the service 'java'?,Complex Retrieval Queries,network
+How many different types of switches are held in rack 'DC1-RCK-1-1'?,Complex Retrieval Queries,network
+Identify the first 3 networks with a zone of 4 that route through any interface.,Complex Retrieval Queries,network
+List the first 5 applications that were started after timestamp 1606165629748.,Complex Retrieval Queries,network
+Which routers route through interface with IP '10.1.0.254'?,Complex Retrieval Queries,network
+What are the first 3 types of machines located in DataCenter 'DC1'?,Complex Retrieval Queries,network
+List all machines that run applications dependent on 'crm'.,Complex Retrieval Queries,network
+How many applications are running on machines in zone 2?,Complex Retrieval Queries,network
+What are the first 5 egress routes from routers in zone 4?,Complex Retrieval Queries,network
+Identify the first 3 applications run by process '8966'.,Complex Retrieval Queries,network
+List the first 5 machines that have a type with CPU greater than 16.,Complex Retrieval Queries,network
+Which machines are running the version '7.1' of any software?,Complex Retrieval Queries,network
+List the first 3 processes that depend on the application 'webapp'.,Complex Retrieval Queries,network
+What are the first 5 services that a machine in rack 'DC1-RCK-1-1' can run?,Complex Retrieval Queries,network
+Identify the first 3 services that depend on the version '7.1'.,Complex Retrieval Queries,network
+List the first 5 previous versions that the version '7.1' depends on.,Complex Retrieval Queries,network
+Which applications are instances of software 'RHEL'?,Complex Retrieval Queries,network
+How many machines in DataCenter 'DC1' are running the application 'webserver'?,Complex Retrieval Queries,network
+List the first 3 ports exposed by machines in rack 'DC1-RCK-1-1'.,Complex Retrieval Queries,network
+What are the first 3 racks that hold switches with an IP starting with '10.1'?,Complex Retrieval Queries,network
+Display the top 5 services that started after timestamp 1606165629748 and are running on machine 'DC1-RCK-1-1-M-1'.,Complex Retrieval Queries,network
+Identify the first 3 applications that are instances of the software 'RHEL'.,Complex Retrieval Queries,network
+List the first 5 processes that are instances of the version '7.1'.,Complex Retrieval Queries,network
+Which racks are in zone 1 and hold machines of type 'l'?,Complex Retrieval Queries,network
+List all machines that run processes with a PID less than 500.,Complex Retrieval Queries,network
+What are the first 3 services that depend on the process '8966'?,Complex Retrieval Queries,network
+List the first 5 dependencies of the version '7.1'.,Complex Retrieval Queries,network
+Identify the top 3 routers that route through interfaces in zone 3.,Complex Retrieval Queries,network
+What are the first 5 applications that depend on the service 'logstash'?,Complex Retrieval Queries,network
+List the first 3 switches that route through interfaces with an IP starting with '10.3'.,Complex Retrieval Queries,network
+Identify the first 5 machines that run the OS 'RHEL' and have a type with RAM greater than 256.,Complex Retrieval Queries,network
+Which DataCenter has the most types of routers?,Complex Retrieval Queries,network
+List the first 3 processes that depend on the version '7.1'.,Complex Retrieval Queries,network
+What are the first 5 applications that are instances of the application 'webapp'?,Complex Retrieval Queries,network
+Identify the first 3 racks that hold at least two types of switches.,Complex Retrieval Queries,network
+List the first 5 services that depend on the software 'RHEL'.,Complex Retrieval Queries,network
+Which routers are connected to networks with IP '10.4'?,Complex Retrieval Queries,network
+List the first 3 services that started before timestamp 1606597376483 and are running on a machine in zone 4.,Complex Retrieval Queries,network
+Identify the first 3 processes running on machine 'DC1-RCK-1-1-M-1' with a PID less than 5000.,Complex Retrieval Queries,network
+What are the first 5 routers located in zone 2?,Complex Retrieval Queries,network
+List all racks containing machines of type 'xxl'.,Complex Retrieval Queries,network
+Which machines are running applications that depend on the process '8966'?,Complex Retrieval Queries,network
+List the first 5 dependencies of the software 'logstash'.,Complex Retrieval Queries,network
+"What are the names of all DataCenters located in Iceland, Rekjavik?",Simple Aggregation Queries,network
+List all routers in zone 1.,Simple Aggregation Queries,network
+How many racks are there in zone 4 of the DataCenter named DC1?,Simple Aggregation Queries,network
+Which interfaces connect to the router named DC1-R-2?,Simple Aggregation Queries,network
+Identify the top 5 networks by size within zone 3.,Simple Aggregation Queries,network
+What are the first 3 egress names in the DataCenter DC1?,Simple Aggregation Queries,network
+Which racks contain machines in zone 2?,Simple Aggregation Queries,network
+List all switches in rack 1.,Simple Aggregation Queries,network
+What are the different types of machines that can run in a rack located in zone 4?,Simple Aggregation Queries,network
+How many different software versions are available for the software named RHEL?,Simple Aggregation Queries,network
+Which ports are exposed by the interface with IP 10.0.0.254?,Simple Aggregation Queries,network
+Identify the applications running on machine named DC1-RCK-1-1-M-1.,Simple Aggregation Queries,network
+Which services are started by machines in the DataCenter named DC1?,Simple Aggregation Queries,network
+List all processes run by the application named webserver.,Simple Aggregation Queries,network
+What are the dependencies of the software named RHEL?,Simple Aggregation Queries,network
+Which version of software is installed on OS named RHEL?,Simple Aggregation Queries,network
+Find all services that listen on port 80.,Simple Aggregation Queries,network
+What is the maximum RAM capacity of types available in DataCenter DC1?,Simple Aggregation Queries,network
+List all network IPs in zone 2.,Simple Aggregation Queries,network
+Identify the top 3 largest disks by capacity in the DataCenter DC1.,Simple Aggregation Queries,network
+Which applications are dependent on the service named java?,Simple Aggregation Queries,network
+List all processes that have a PID greater than 5000.,Simple Aggregation Queries,network
+What are the IP addresses of switches located in rack number 5?,Simple Aggregation Queries,network
+Which machines are type 'm' in DataCenter DC1?,Simple Aggregation Queries,network
+What are the names of all applications that run on machine DC1-RCK-4-9-M-103?,Simple Aggregation Queries,network
+How many routers are there in DataCenter DC1?,Simple Aggregation Queries,network
+What are the IP addresses of interfaces connected to the network with IP 10.2?,Simple Aggregation Queries,network
+Which ports are used by the service named java in DataCenter DC1?,Simple Aggregation Queries,network
+How many types of machines have a CPU greater than 16?,Simple Aggregation Queries,network
+List all services that depend on the process named 7.1.,Simple Aggregation Queries,network
+What are the previous versions of version 7.1 in the software dependency chain?,Simple Aggregation Queries,network
+Which applications listen on port 443?,Simple Aggregation Queries,network
+How many different versions are there for the application named crm?,Simple Aggregation Queries,network
+What are the start times of applications named cms?,Simple Aggregation Queries,network
+Identify the racks that hold switches with IP starting with '10.1'.,Simple Aggregation Queries,network
+Which machines run the OS starting with 'RHE'?,Simple Aggregation Queries,network
+List all the dependencies of the process named 7.1.,Simple Aggregation Queries,network
+How many machines are there in rack 10 of DataCenter DC1?,Simple Aggregation Queries,network
+What are the start times of services run by machine DC1-RCK-4-9-M-103?,Simple Aggregation Queries,network
+List all the types of applications running in zone 3 of DataCenter DC1.,Simple Aggregation Queries,network
+Which routers connect to interfaces with IP addresses in the 10.2 range?,Simple Aggregation Queries,network
+How many applications are dependent on the service named java?,Simple Aggregation Queries,network
+What are the dependencies of the version named 7.1?,Simple Aggregation Queries,network
+Which processes are instances of the version named 7.1?,Simple Aggregation Queries,network
+Identify all services that started after timestamp 1606165629748.,Simple Aggregation Queries,network
+List the first 5 applications that depend on the process named 7.1.,Simple Aggregation Queries,network
+Which ports do the applications named webapp listen to?,Simple Aggregation Queries,network
+What are the names of routers located in zone 2?,Pathfinding Queries,network
+Which DataCenter contains the router named 'DC1-R-2'?,Pathfinding Queries,network
+List all racks in zone 4 of DataCenter 'DC1'.,Pathfinding Queries,network
+Which machines are held in rack 'DC1-RCK-4-9'?,Pathfinding Queries,network
+Identify all software versions available for 'RHEL'.,Pathfinding Queries,network
+What applications are running on the machine named 'DC1-RCK-4-9-M-103'?,Pathfinding Queries,network
+Which ports are exposed by the interface with IP '10.0.0.254'?,Pathfinding Queries,network
+Find all networks routing to the interface with IP '10.4.8.254'.,Pathfinding Queries,network
+Which services are running on machines located in rack 'DC1-RCK-4-9'?,Pathfinding Queries,network
+What types of software depend on the software named 'RHEL'?,Pathfinding Queries,network
+List the previous versions of version '9.4'.,Pathfinding Queries,network
+What is the start time of the process running on machine 'DC1-RCK-4-9-M-103'?,Pathfinding Queries,network
+Which zones have a size of 16?,Pathfinding Queries,network
+Find all interfaces connected to '10.0.0.254'.,Pathfinding Queries,network
+What are the dependencies of the web application named 'webserver'?,Pathfinding Queries,network
+List all ports listened to by the service running on machine 'DC1-RCK-4-9-M-103'.,Pathfinding Queries,network
+Which racks are located in zone 1 of the DataCenter 'DC1'?,Pathfinding Queries,network
+What are the names of all applications running on machines in zone 3?,Pathfinding Queries,network
+Which racks contain switches with IP starting with '10.1'?,Pathfinding Queries,network
+How many machines are there in rack 'DC1-RCK-4-9' and what types are they?,Pathfinding Queries,network
+"List all services that a specific application depends on, for example, 'webserver'.",Pathfinding Queries,network
+What is the disk capacity of the type 'm-4/16/25'?,Pathfinding Queries,network
+Which interfaces are routed by network '10.2'?,Pathfinding Queries,network
+What are the IPs of all switches in DataCenter 'DC1'?,Pathfinding Queries,network
+Who are the dependencies of version '9.4' in the software ecosystem?,Pathfinding Queries,network
+List the start times of all processes running on machines in zone 2.,Pathfinding Queries,network
+What are the names of the types with a CPU count greater than 16?,Pathfinding Queries,network
+Which applications are instances of software 'RHEL'?,Pathfinding Queries,network
+Identify all ports that the OS running on 'DC1-RCK-4-9-M-103' listens to.,Pathfinding Queries,network
+Which machines in DataCenter 'DC1' run an OS named 'RHEL'?,Pathfinding Queries,network
+What are the properties of the network with IP '10.3'?,Pathfinding Queries,network
+List all interfaces that connect racks in zone 4.,Pathfinding Queries,network
+Which services are instances of version '9.4'?,Pathfinding Queries,network
+What type of machine is 'DC1-RCK-4-9-M-103'?,Pathfinding Queries,network
+How many types of machines have a RAM greater than 64?,Pathfinding Queries,network
+Which DataCenter routers connect to the interface with IP '10.0.0.254'?,Pathfinding Queries,network
+What are the names of the services that depend on the process named '8966'?,Pathfinding Queries,network
+List the top 3 zones by size.,Pathfinding Queries,network
+Identify all machines that run more than one type of application.,Pathfinding Queries,network
+What versions of software does the software 'RHEL' depend on?,Pathfinding Queries,network
+Which applications listen to port 80?,Pathfinding Queries,network
+Which routers are located in zone 2?,Complex Aggregation Queries,network
+What are the names of all switches in rack 5?,Complex Aggregation Queries,network
+List all software versions that depend on 'RHEL'.,Complex Aggregation Queries,network
+Which machines are running the application named 'crm'?,Complex Aggregation Queries,network
+How many machines are in rack 3 and what are their names?,Complex Aggregation Queries,network
+Show all processes that are instances of the software version '7.1'.,Complex Aggregation Queries,network
+What are the top 3 applications by number of instances running on machines?,Complex Aggregation Queries,network
+Which interfaces are connected to the router named 'DC1-R-2'?,Complex Aggregation Queries,network
+Identify the ports exposed by the interface with IP '10.0.0.254'.,Complex Aggregation Queries,network
+Find all networks routing through the interface with IP '10.2.8.254'.,Complex Aggregation Queries,network
+What are the dependencies of the software named 'RHEL'?,Complex Aggregation Queries,network
+List all services listening on port 80.,Complex Aggregation Queries,network
+How many applications are dependent on the service named 'java'?,Complex Aggregation Queries,network
+Which types of machines (type names) have a CPU greater than 16?,Complex Aggregation Queries,network
+What is the maximum disk size available in the type 'xl'?,Complex Aggregation Queries,network
+List the names of all racks contained within the data center 'DC1'.,Complex Aggregation Queries,network
+Which zones have a size of 16?,Complex Aggregation Queries,network
+Find all machines running an OS that started after timestamp 1606000000000.,Complex Aggregation Queries,network
+What are the IP addresses of interfaces connected to the network '10.3'?,Complex Aggregation Queries,network
+How many different ports are used by applications named 'webserver'?,Complex Aggregation Queries,network
+Show the earliest start time of any process running on machine 'DC1-RCK-1-1-M-1'.,Complex Aggregation Queries,network
+Which data center contains the egress named 'DC1-RE'?,Complex Aggregation Queries,network
+List all versions of software that are previous to version '7.1'.,Complex Aggregation Queries,network
+What are the software dependencies for the application 'logstash'?,Complex Aggregation Queries,network
+Identify all services that started before timestamp 1606200000000.,Complex Aggregation Queries,network
+Which machines are connected to the interface with IP '10.1.1'?,Complex Aggregation Queries,network
+How many types of machines have a RAM capacity of 256 or more?,Complex Aggregation Queries,network
+What is the total number of machines held in zone 4 racks?,Complex Aggregation Queries,network
+List the top 5 most used process names in the database.,Complex Aggregation Queries,network
+Which racks are in zone 1 and have more than 5 machines?,Complex Aggregation Queries,network
+Show all ports that are connected to interfaces exposed by the router 'DC1-R-1'.,Complex Aggregation Queries,network
+What are the names of all applications that depend on the process named '8966'?,Complex Aggregation Queries,network
+List all services that are instances of the application 'webapp'.,Complex Aggregation Queries,network
+What are the IP addresses of all networks in zone 3?,Complex Aggregation Queries,network
+How many different types of disks are there for machine types?,Complex Aggregation Queries,network
+Identify all machines running an application that listens on port 443.,Complex Aggregation Queries,network
+Which software versions are dependent on version '7.1'?,Complex Aggregation Queries,network
+List all applications that have dependencies on other applications.,Complex Aggregation Queries,network
+How many machines have a type with a disk size less than 100?,Complex Aggregation Queries,network
+What are the start times of all OS instances on machine 'DC1-RCK-1-1-M-1'?,Complex Aggregation Queries,network
+List the top 5 routers in DataCenter 'DC1' by zone number.,Verbose query,network
+What are the names of all networks in zone 2?,Verbose query,network
+Find the first 3 machines in rack 'DC1-RCK-1-1'.,Verbose query,network
+Which applications are running on the machine named 'DC1-RCK-4-9-M-103'?,Verbose query,network
+Identify all software dependencies for the software named 'RHEL'.,Verbose query,network
+What are the top 5 OS instances running on machines in DataCenter 'DC1'?,Verbose query,network
+List all services that are listening on port 80.,Verbose query,network
+What are the names of the first 3 switches located in rack 10?,Verbose query,network
+Show the first 3 types of machines by RAM size in descending order.,Verbose query,network
+Which versions of software are installed on 'RHEL'?,Verbose query,network
+Provide the names of the top 3 software that depend on the application 'webserver'.,Verbose query,network
+List all versions that are directly previous to version '7.1'.,Verbose query,network
+What are the top 3 processes running on the application 'webserver'?,Verbose query,network
+Which machines are running the OS named 'RHEL'?,Verbose query,network
+Find all interfaces connected to the router 'DC1-R-1'.,Verbose query,network
+List all ports exposed by interface with IP '10.0.0.254'.,Verbose query,network
+What are the top 3 applications with the highest PID running in DataCenter 'DC1'?,Verbose query,network
+Identify the services running with a start time greater than 1607000000000.,Verbose query,network
+Find the first 3 egress nodes in DataCenter 'DC1'.,Verbose query,network
+List all networks routing through interface with IP '10.2.1.1'.,Verbose query,network
+Show the first 3 racks in zone 4 of DataCenter 'DC1'.,Verbose query,network
+What are the types and quantities of machines held in rack 'DC1-RCK-4-9'?,Verbose query,network
+List the first 3 processes that depend on the service 'java'.,Verbose query,network
+Identify all services that a process named '9.4' depends on.,Verbose query,network
+Display the first 3 machines with type 'm' in their configurations.,Verbose query,network
+Which interfaces are connected to the egress node 'DC1-RE'?,Verbose query,network
+Find the top 3 types of applications by PID in descending order.,Verbose query,network
+Provide a list of all OS instances with a start time before 1606000000000.,Verbose query,network
+What software versions are dependencies for the software 'RHEL'?,Verbose query,network
+List the most recent 3 applications started in DataCenter 'DC1'.,Verbose query,network
+Find the switches that route to interface with IP '10.1.1.1'.,Verbose query,network
+Identify the first 3 racks in zone 1 that contain more than 5 machines.,Verbose query,network
+What are the different types of services running on machines in rack 'DC1-RCK-1-1'?,Verbose query,network
+List the names of all applications that depend on the process named '9.4'.,Verbose query,network
+Provide the details of the first 3 machines in rack 'DC1-RCK-4-9' that run a type 'xl' configuration.,Verbose query,network
+What are the dependencies of the application named 'webapp'?,Verbose query,network
+List the versions of software that the service named 'java' depends on.,Verbose query,network
+Identify all ports where the process named '9.4' is listening.,Verbose query,network
+Find the top 3 applications by PID running in zone 4.,Verbose query,network
+Which services are instances of the software 'RHEL'?,Verbose query,network
+List the first 3 previous versions to version named '7.1'.,Verbose query,network
+What are the applications that depend on the service named 'java'?,Verbose query,network
+Find the top 3 types of services by start time in ascending order.,Verbose query,network
+Which applications in DataCenter 'DC1' listen on port 80?,Verbose query,network
+Provide the list of all machines that run the application named 'webapp'.,Verbose query,network
+List the top 5 products with the most units on order.,Simple Retrieval Queries,northwind
+Which 3 suppliers supply the most products?,Simple Retrieval Queries,northwind
+Find the top 5 most expensive products supplied by 'Exotic Liquids'.,Simple Retrieval Queries,northwind
+What are the names of the top 3 discontinued products?,Simple Retrieval Queries,northwind
+Which 3 categories contain the most products?,Simple Retrieval Queries,northwind
+Identify the top 5 products with the lowest reorder level.,Simple Retrieval Queries,northwind
+List the top 3 products that are in stock and not discontinued.,Simple Retrieval Queries,northwind
+Who are the top 3 customers based on the number of orders placed?,Simple Retrieval Queries,northwind
+List the top 3 most frequent ship cities for orders.,Simple Retrieval Queries,northwind
+What are the top 5 products ordered by 'Alfreds Futterkiste'?,Simple Retrieval Queries,northwind
+Which 3 products have the highest discount in orders?,Simple Retrieval Queries,northwind
+List the top 5 suppliers based on the number of products they supply.,Simple Retrieval Queries,northwind
+What are the top 3 categories with the highest average unit price of products?,Simple Retrieval Queries,northwind
+Which 3 employees have processed the most orders?,Simple Retrieval Queries,northwind
+List the top 3 orders with the highest freight charges.,Simple Retrieval Queries,northwind
+Which 3 products are most frequently ordered together?,Simple Retrieval Queries,northwind
+List the top 5 customers by total freight charges.,Simple Retrieval Queries,northwind
+What are the top 3 most common ship countries for orders?,Simple Retrieval Queries,northwind
+Which 3 products have the smallest quantity per unit available?,Simple Retrieval Queries,northwind
+List the top 3 categories by the average units in stock of their products.,Simple Retrieval Queries,northwind
+Which 3 suppliers have supplied products with the most units on order?,Simple Retrieval Queries,northwind
+List the top 5 products by number of times they have been ordered.,Simple Retrieval Queries,northwind
+What are the top 3 most common ship regions for orders?,Simple Retrieval Queries,northwind
+Which 3 products have the highest unit price among those supplied by 'Mayumi's'?,Simple Retrieval Queries,northwind
+List the top 5 orders with the most products ordered.,Simple Retrieval Queries,northwind
+What are the top 3 most common ship vias used for orders?,Simple Retrieval Queries,northwind
+Which 3 customers have the highest number of discontinued products ordered?,Simple Retrieval Queries,northwind
+List the top 5 products with the highest reorder level.,Simple Retrieval Queries,northwind
+What are the top 3 categories with the least products available?,Simple Retrieval Queries,northwind
+Which 3 products have the lowest unit price and are still in stock?,Simple Retrieval Queries,northwind
+List the top 5 customers based on the number of unique products ordered.,Simple Retrieval Queries,northwind
+What are the top 3 most common supplier countries?,Simple Retrieval Queries,northwind
+Which 3 suppliers are based in the UK?,Simple Retrieval Queries,northwind
+List the top 5 most frequently ordered products by 'VINET'.,Simple Retrieval Queries,northwind
+What are the top 3 products with the highest units in stock?,Simple Retrieval Queries,northwind
+Which 3 categories have the highest number of discontinued products?,Simple Retrieval Queries,northwind
+List the top 5 suppliers with the most products in category 'Beverages'.,Simple Retrieval Queries,northwind
+What are the top 3 most common ship addresses for orders?,Simple Retrieval Queries,northwind
+Which 3 products have the highest average quantity ordered?,Simple Retrieval Queries,northwind
+List the top 5 products with the lowest unit price supplied by 'Plutzer'.,Simple Retrieval Queries,northwind
+What are the top 3 cities where customers are located?,Simple Retrieval Queries,northwind
+Which 3 products have the highest units on order and are not discontinued?,Simple Retrieval Queries,northwind
+List the top 5 orders with the latest required dates.,Simple Retrieval Queries,northwind
+What are the top 3 products with the lowest units in stock?,Simple Retrieval Queries,northwind
+Which 3 products are most often ordered by customers from Germany?,Simple Retrieval Queries,northwind
+List the top 5 products with the highest average discount in orders.,Simple Retrieval Queries,northwind
+What are the top 3 ship cities for orders placed by 'Ernst Handel'?,Simple Retrieval Queries,northwind
+Which 3 customers have ordered the most products from the 'Dairy Products' category?,Simple Retrieval Queries,northwind
+List the top 5 suppliers based in 'London'.,Simple Retrieval Queries,northwind
+What are the top 3 most ordered products in the 'Grains/Cereals' category?,Simple Retrieval Queries,northwind
+What are the top 5 products by unit price?,Complex Retrieval Queries,northwind
+Which products have a reorder level greater than 15?,Complex Retrieval Queries,northwind
+List all suppliers that supply products in the 'Beverages' category.,Complex Retrieval Queries,northwind
+Which products are discontinued and have less than 10 units in stock?,Complex Retrieval Queries,northwind
+Identify the top 3 most stocked products in the 'Dairy Products' category.,Complex Retrieval Queries,northwind
+What are the contact details for suppliers in the 'UK'?,Complex Retrieval Queries,northwind
+Which customers are based in 'Berlin'?,Complex Retrieval Queries,northwind
+Find all orders shipped to 'France' with a freight cost more than 50.,Complex Retrieval Queries,northwind
+List the top 5 most frequently ordered products.,Complex Retrieval Queries,northwind
+Which products have been ordered with a quantity greater than 100?,Complex Retrieval Queries,northwind
+What are the top 3 categories with the highest number of products?,Complex Retrieval Queries,northwind
+Which suppliers provide products to more than one category?,Complex Retrieval Queries,northwind
+List all products supplied by 'Exotic Liquids'.,Complex Retrieval Queries,northwind
+What are the discontinued products supplied by 'Exotic Liquids'?,Complex Retrieval Queries,northwind
+Show all products in stock that are part of the 'Condiments' category.,Complex Retrieval Queries,northwind
+Which suppliers supply the 'Chef Anton's Cajun Seasoning'?,Complex Retrieval Queries,northwind
+Identify products with a unit price greater than 50 and are in the 'Confections' category.,Complex Retrieval Queries,northwind
+List all orders from 'Lonesome Pine Restaurant' in 'Portland'.,Complex Retrieval Queries,northwind
+Show details of customers who have placed more than 5 orders.,Complex Retrieval Queries,northwind
+Find all products that have never been reordered (reorder level 0).,Complex Retrieval Queries,northwind
+Which categories do not have any discontinued products?,Complex Retrieval Queries,northwind
+Display all products with 'unitsOnOrder' greater than 20.,Complex Retrieval Queries,northwind
+List all suppliers who are from cities starting with 'L'.,Complex Retrieval Queries,northwind
+Find all products with a reorder level of 0 and still in stock.,Complex Retrieval Queries,northwind
+Which orders were placed in the year 1996?,Complex Retrieval Queries,northwind
+Show all products that have a discount applied in any order.,Complex Retrieval Queries,northwind
+Which suppliers have a fax number listed?,Complex Retrieval Queries,northwind
+List the products ordered by 'VINET' customer.,Complex Retrieval Queries,northwind
+What are the most expensive products ordered by 'LONESOME PINE RESTAURANT'?,Complex Retrieval Queries,northwind
+Find the products with 'unitPrice' between 10 and 20.,Complex Retrieval Queries,northwind
+List all products from suppliers located in 'Germany'.,Complex Retrieval Queries,northwind
+Who are the customers in the 'Sales Representative' role?,Complex Retrieval Queries,northwind
+Show all orders that required shipping to 'USA'.,Complex Retrieval Queries,northwind
+"Which products are part of the 'Breads, crackers, pasta, and cereal' category and have more than 50 units in stock?",Complex Retrieval Queries,northwind
+Identify all orders shipped by 'shipVia' 3.,Complex Retrieval Queries,northwind
+What are the products with 'unitsInStock' less than 5?,Complex Retrieval Queries,northwind
+List the top 3 customers by the number of orders placed.,Complex Retrieval Queries,northwind
+Find all products that are part of more than one order.,Complex Retrieval Queries,northwind
+Which orders were required by a date earlier than '1997-01-01'?,Complex Retrieval Queries,northwind
+Show all products with a 'reorderLevel' of 25 or higher.,Complex Retrieval Queries,northwind
+Which products are supplied by a supplier in 'London'?,Complex Retrieval Queries,northwind
+List all orders with a freight cost less than 10.,Complex Retrieval Queries,northwind
+Who are the customers in the 'NULL' region?,Complex Retrieval Queries,northwind
+Identify suppliers who do not have a home page listed.,Complex Retrieval Queries,northwind
+What are the products ordered by 'FURIB' customer?,Complex Retrieval Queries,northwind
+List all suppliers that supply discontinued products.,Complex Retrieval Queries,northwind
+Which products are supplied by suppliers with a phone number ending in '2222'?,Complex Retrieval Queries,northwind
+Show all categories for which there is at least one product with 'unitsOnOrder' above 0.,Complex Retrieval Queries,northwind
+Find all suppliers in the 'NULL' region.,Complex Retrieval Queries,northwind
+Which orders have a 'shippedDate' on or after '1996-07-16'?,Complex Retrieval Queries,northwind
+Display all products that are not discontinued and have a 'unitPrice' above 35.,Complex Retrieval Queries,northwind
+What is the average unit price of products in the 'Dairy Products' category?,Complex Retrieval Queries,northwind
+List all customers with a fax number ending in '6545'.,Complex Retrieval Queries,northwind
+Which products have a 'quantityPerUnit' specified as '10 boxes x 20 bags'?,Complex Retrieval Queries,northwind
+Identify the top 3 suppliers by the number of products supplied.,Complex Retrieval Queries,northwind
+Show all orders from customers in 'Portland'.,Complex Retrieval Queries,northwind
+List all discontinued products with zero units in stock.,Complex Retrieval Queries,northwind
+Which products have 'unitsInStock' exactly 0 and are not discontinued?,Complex Retrieval Queries,northwind
+What are the highest discount rates applied to any products?,Complex Retrieval Queries,northwind
+Which categories contain products that have been reordered (reorder level > 0)?,Complex Retrieval Queries,northwind
+List all products with 'unitPrice' less than 5.,Complex Retrieval Queries,northwind
+Display products with 'unitPrice' higher than the average unit price of their category.,Complex Retrieval Queries,northwind
+Which orders were placed by 'Sales Representative' title holders?,Complex Retrieval Queries,northwind
+Identify the top 3 most expensive products supplied by suppliers from 'UK'.,Complex Retrieval Queries,northwind
+Show all products that are in the 'Seafood' category and have been ordered more than 5 times.,Complex Retrieval Queries,northwind
+Which customers have ordered products with a total quantity greater than 50?,Complex Retrieval Queries,northwind
+Find all suppliers who supply products in both 'Beverages' and 'Condiments' categories.,Complex Retrieval Queries,northwind
+List the top 3 products by reorder level.,Complex Retrieval Queries,northwind
+Which products are supplied by suppliers with no listed fax number?,Complex Retrieval Queries,northwind
+Show all products that are part of the 'Grains/Cereals' category and have 'unitsOnOrder' above 10.,Complex Retrieval Queries,northwind
+Identify all orders shipped to 'France' and have a 'shipVia' of 1.,Complex Retrieval Queries,northwind
+What are the products with a 'unitPrice' less than 10 and are discontinued?,Complex Retrieval Queries,northwind
+List all suppliers that are based outside of 'USA' and 'UK'.,Complex Retrieval Queries,northwind
+Which products have a 'productName' starting with 'C'?,Complex Retrieval Queries,northwind
+Show all orders placed in '1996' that were shipped to 'USA'.,Complex Retrieval Queries,northwind
+List all discontinued products in the 'Dairy Products' category.,Complex Retrieval Queries,northwind
+Which suppliers have more than 3 products in their supply list?,Complex Retrieval Queries,northwind
+Find all products with a 'unitsOnOrder' of 0 and a 'reorderLevel' above 10.,Complex Retrieval Queries,northwind
+Who are the customers with orders that have a 'freight' cost above 100?,Complex Retrieval Queries,northwind
+List the top 5 orders by quantity of products ordered.,Complex Retrieval Queries,northwind
+Which products are part of the 'Meat/Poultry' category and have a reorder level above 20?,Complex Retrieval Queries,northwind
+Identify all suppliers from 'Germany' who supply products in the 'Beverages' category.,Complex Retrieval Queries,northwind
+Show all products with a 'unitPrice' above 20 and a 'reorderLevel' below 5.,Complex Retrieval Queries,northwind
+List all customers from 'Berlin' who have ordered more than three times.,Complex Retrieval Queries,northwind
+"Which products are part of the 'Desserts, candies, and sweet breads' category and have a 'unitsOnOrder' above 5?",Complex Retrieval Queries,northwind
+What are the product names of the top 5 most expensive products?,Simple Aggregation Queries,northwind
+List the first 3 categories and their descriptions.,Simple Aggregation Queries,northwind
+Which suppliers provide products that are not discontinued?,Simple Aggregation Queries,northwind
+What are the top 3 cities with the most orders shipped?,Simple Aggregation Queries,northwind
+List the top 3 suppliers based in the UK.,Simple Aggregation Queries,northwind
+What are the names of the top 3 products with the highest units on order?,Simple Aggregation Queries,northwind
+Which categories contain more than 5 products?,Simple Aggregation Queries,northwind
+What are the company names of customers from Germany?,Simple Aggregation Queries,northwind
+List the first 3 discontinued products and their categories.,Simple Aggregation Queries,northwind
+Which products are supplied by 'Exotic Liquids'?,Simple Aggregation Queries,northwind
+What are the first 3 orders with the highest freight charges?,Simple Aggregation Queries,northwind
+Which products have a reorder level of 0 and are still in stock?,Simple Aggregation Queries,northwind
+List the first 3 categories with the most number of products.,Simple Aggregation Queries,northwind
+What are the top 5 products with the least units in stock?,Simple Aggregation Queries,northwind
+Which suppliers have a contact title of 'Purchasing Manager'?,Simple Aggregation Queries,northwind
+List the top 3 most frequently ordered products.,Simple Aggregation Queries,northwind
+What are the top 3 products with the highest quantity per unit available?,Simple Aggregation Queries,northwind
+Which customers have purchased orders required in less than a month from the order date?,Simple Aggregation Queries,northwind
+List the first 3 suppliers who do not have a fax number.,Simple Aggregation Queries,northwind
+Which categories are associated with products that have more than 50 units on order?,Simple Aggregation Queries,northwind
+Which products have a unit price greater than 50 and are part of the 'Dairy Products' category?,Simple Aggregation Queries,northwind
+List the first 3 orders shipped to France.,Simple Aggregation Queries,northwind
+What are the names of products that have a discount of 0?,Simple Aggregation Queries,northwind
+Which products are in the category 'Beverages' and have more than 30 units in stock?,Simple Aggregation Queries,northwind
+List the top 3 employees who processed the most orders.,Simple Aggregation Queries,northwind
+Which suppliers supply to more than three different categories of products?,Simple Aggregation Queries,northwind
+What are the first 3 products with a quantity per unit of '10 boxes x 20 bags'?,Simple Aggregation Queries,northwind
+Which orders were shipped by ship via option '1'?,Simple Aggregation Queries,northwind
+List the first 3 products that are in the category 'Confections' and have been discontinued.,Simple Aggregation Queries,northwind
+What are the names of the top 3 customers who have ordered the most in terms of quantity?,Simple Aggregation Queries,northwind
+Which products have a reorder level greater than 20?,Simple Aggregation Queries,northwind
+List the first 3 products supplied by 'Mayumi's'.,Simple Aggregation Queries,northwind
+Which products have 'NULL' as the region for their suppliers?,Simple Aggregation Queries,northwind
+List the first 3 categories that have a product with a unit price of less than 10.,Simple Aggregation Queries,northwind
+What are the names of the first 3 products that have never been ordered?,Simple Aggregation Queries,northwind
+Which orders were placed by customers from 'Berlin'?,Simple Aggregation Queries,northwind
+List the first 3 suppliers whose home page starts with 'http'.,Simple Aggregation Queries,northwind
+What are the top 3 most stocked products in the 'Grains/Cereals' category?,Simple Aggregation Queries,northwind
+Which products are associated with the supplier 'Plutzer'?,Simple Aggregation Queries,northwind
+List the top 3 customers by the number of orders placed.,Simple Aggregation Queries,northwind
+"What are the names of products that are part of a category with description 'Sweet and savory sauces, relishes, spreads, and se'?",Simple Aggregation Queries,northwind
+Which suppliers are located in 'London'?,Simple Aggregation Queries,northwind
+List the first 3 orders that have a shipped date exactly one week after the order date.,Simple Aggregation Queries,northwind
+What are the top 3 most expensive products in the 'Seafood' category?,Simple Aggregation Queries,northwind
+Which products have a 'reorder level' of 10 and are part of the 'Beverages' category?,Simple Aggregation Queries,northwind
+List the first 3 products with a unit price between 10 and 20.,Simple Aggregation Queries,northwind
+What are the names of the top 3 categories based on the average unit price of their products?,Simple Aggregation Queries,northwind
+Which suppliers have the most products currently on order?,Simple Aggregation Queries,northwind
+List the top 3 products that have been ordered the most times.,Simple Aggregation Queries,northwind
+What are the names of the first 3 products supplied by suppliers from 'Germany'?,Simple Aggregation Queries,northwind
+Which orders have a ship via option of '3' and were shipped to 'USA'?,Simple Aggregation Queries,northwind
+List the first 3 categories where the average units in stock per product is less than 20.,Simple Aggregation Queries,northwind
+What are the top 3 products with the smallest discount?,Simple Aggregation Queries,northwind
+Which suppliers have a contact name starting with 'C'?,Simple Aggregation Queries,northwind
+List the top 3 most reordered products.,Simple Aggregation Queries,northwind
+What are the names of products with a reorder level greater than the average reorder level of all products?,Simple Aggregation Queries,northwind
+Which customers from 'Reims' have placed orders?,Simple Aggregation Queries,northwind
+"List the first 3 products that are part of the 'Desserts, candies, and sweet breads' category and have a reorder level less than 10.",Simple Aggregation Queries,northwind
+What are the names of the first 3 suppliers whose companies have a phone number ending in '8'?,Simple Aggregation Queries,northwind
+Which products have been ordered more than 100 times?,Simple Aggregation Queries,northwind
+List the top 3 customers who have ordered products in the 'Meat/Poultry' category.,Simple Aggregation Queries,northwind
+What are the names of the first 3 products that have a unit price less than 5 and are discontinued?,Simple Aggregation Queries,northwind
+Which suppliers supply products to more than two different ships?,Simple Aggregation Queries,northwind
+List the first 3 products from suppliers located in 'USA'.,Simple Aggregation Queries,northwind
+What are the names of the top 3 categories based on the number of suppliers providing products to them?,Simple Aggregation Queries,northwind
+Which orders were placed by customers with a 'Sales Representative' contact title?,Simple Aggregation Queries,northwind
+List the first 3 products that have been ordered with a discount of 0 and are from the 'Grains/Cereals' category.,Simple Aggregation Queries,northwind
+What are the names of the top 3 suppliers based on the average freight of orders they supplied?,Simple Aggregation Queries,northwind
+Which products have a units on order value of 0 and are not discontinued?,Simple Aggregation Queries,northwind
+List the first 3 orders that have been shipped to a region other than 'NULL'.,Simple Aggregation Queries,northwind
+What are the names of the first 3 products with a quantity per unit of '48 - 6 oz jars'?,Simple Aggregation Queries,northwind
+Which categories have the most products with a units on order greater than 20?,Simple Aggregation Queries,northwind
+List the top 3 products that are part of the 'Beverages' category and have been ordered more than 10 times.,Simple Aggregation Queries,northwind
+What are the names of the top 3 suppliers based on the number of cities they supply to?,Simple Aggregation Queries,northwind
+Which suppliers have a postal code starting with 'EC'?,Simple Aggregation Queries,northwind
+List the first 3 orders with a ship name containing 'Vins et alcools Chevalier'.,Simple Aggregation Queries,northwind
+What are the names of the top 3 most reordered products in the 'Produce' category?,Simple Aggregation Queries,northwind
+Which products have a reorder level of 25 and are supplied by suppliers from 'London'?,Simple Aggregation Queries,northwind
+List the first 3 products with units in stock less than 10.,Simple Aggregation Queries,northwind
+What are the names of the top 3 orders with a freight cost greater than 100?,Simple Aggregation Queries,northwind
+Which products are supplied by suppliers with a fax number of 'NULL'?,Simple Aggregation Queries,northwind
+List the first 3 products with a description containing 'sauces' in their category.,Simple Aggregation Queries,northwind
+What are the names of the first 3 suppliers with a home page containing 'http'?,Simple Aggregation Queries,northwind
+Which orders have a required date later than '1997-01-01' and were ordered by customers from 'Berlin'?,Simple Aggregation Queries,northwind
+List the first 3 products with a discontinued status and a reorder level greater than 15.,Simple Aggregation Queries,northwind
+What are the names of the top 3 products with the highest units on order and are part of the 'Dairy Products' category?,Simple Aggregation Queries,northwind
+Which products have a quantity per unit of '10 boxes x 20 bags'?,Pathfinding Queries,northwind
+List the top 5 products that have been discontinued.,Pathfinding Queries,northwind
+What are the three products with the highest units on order?,Pathfinding Queries,northwind
+Which categories include products with a reorder level of 25?,Pathfinding Queries,northwind
+Can you find three suppliers who supply 'Chang'?,Pathfinding Queries,northwind
+What are the top 3 most expensive products supplied by 'Exotic Liquids'?,Pathfinding Queries,northwind
+Which products have a reorder level greater than 20 and are not discontinued?,Pathfinding Queries,northwind
+List the top 5 orders with the highest quantity ordered.,Pathfinding Queries,northwind
+Which products are supplied by suppliers from the UK?,Pathfinding Queries,northwind
+List all products that have 'seafood' in their category description.,Pathfinding Queries,northwind
+What are the top 3 categories with the most products?,Pathfinding Queries,northwind
+Which suppliers supply products to more than five different categories?,Pathfinding Queries,northwind
+Find the top 5 most frequently ordered products.,Pathfinding Queries,northwind
+Which product categories do not have any discontinued items?,Pathfinding Queries,northwind
+List three customers who have purchased products ordered on '1996-07-04 00:00:00.000'.,Pathfinding Queries,northwind
+What are the top 5 suppliers by number of products supplied?,Pathfinding Queries,northwind
+Which product supplied by 'Exotic Liquids' has the least units in stock?,Pathfinding Queries,northwind
+Find the top 3 orders by freight cost.,Pathfinding Queries,northwind
+Which categories have products with a unit price over $50?,Pathfinding Queries,northwind
+List three products that are in the 'Dairy Products' category.,Pathfinding Queries,northwind
+Which orders include the product with productID '72'?,Pathfinding Queries,northwind
+What is the average discount given on orders during '1996-07-04 00:00:00.000'?,Pathfinding Queries,northwind
+List the top 5 customers based on the number of orders made.,Pathfinding Queries,northwind
+Which suppliers provide products with a unit price less than $10?,Pathfinding Queries,northwind
+What are the three most common product categories ordered in 'Reims'?,Pathfinding Queries,northwind
+Which products have been ordered more than 100 times?,Pathfinding Queries,northwind
+List the top 5 cities where the most products have been shipped.,Pathfinding Queries,northwind
+Which categories have the least products available in stock?,Pathfinding Queries,northwind
+What are the top 3 most frequently shipped products to 'France'?,Pathfinding Queries,northwind
+List three suppliers based in 'London'.,Pathfinding Queries,northwind
+Which products have been reordered when the stock level was below 5?,Pathfinding Queries,northwind
+Find the top 5 most costly products in terms of unit price supplied by 'Exotic Liquids'.,Pathfinding Queries,northwind
+Which products have a unitsInStock count between 10 and 20?,Pathfinding Queries,northwind
+What are the top 5 most expensive products supplied by 'Exotic Liquids'?,Complex Aggregation Queries,northwind
+List the first 3 categories that have products with a unit price over $100.,Complex Aggregation Queries,northwind
+Which suppliers have a product named 'Chai' in their product list?,Complex Aggregation Queries,northwind
+Find all products that are discontinued and supplied by a company in the UK.,Complex Aggregation Queries,northwind
+What are the top 5 products with the highest units in stock in the 'Condiments' category?,Complex Aggregation Queries,northwind
+Who are the top 3 customers by number of orders placed in 1996?,Complex Aggregation Queries,northwind
+Which products have a reorder level above 20 and are currently out of stock?,Complex Aggregation Queries,northwind
+List the first 3 suppliers who supply products in the 'Dairy Products' category.,Complex Aggregation Queries,northwind
+Which products have been ordered more than 100 times?,Complex Aggregation Queries,northwind
+What are the top 5 most ordered products by quantity from orders shipped to France?,Complex Aggregation Queries,northwind
+Find all products that are part of more than one category.,Complex Aggregation Queries,northwind
+Which suppliers supply more than 5 different products?,Complex Aggregation Queries,northwind
+List the first 3 products supplied by 'Mayumi's' with a unit price less than $20.,Complex Aggregation Queries,northwind
+What are the top 5 customers based on the total freight costs of their orders?,Complex Aggregation Queries,northwind
+Find all suppliers who do not have a homepage listed.,Complex Aggregation Queries,northwind
+Which products have never been on order (unitsOnOrder = 0) and are not discontinued?,Complex Aggregation Queries,northwind
+List the first 3 orders shipped to Berlin with a freight cost over $100.,Complex Aggregation Queries,northwind
+What are the top 5 most frequently ordered products in 'Seafood' category?,Complex Aggregation Queries,northwind
+Find the first 3 suppliers with products that have a reorder level of zero.,Complex Aggregation Queries,northwind
+Which customers have placed orders that required shipping via method '2'?,Complex Aggregation Queries,northwind
+List all products with a unit price between $50 and $100.,Complex Aggregation Queries,northwind
+What are the top 5 products with the lowest unit price in the 'Beverages' category?,Complex Aggregation Queries,northwind
+Which suppliers have products in both 'Grains/Cereals' and 'Meat/Poultry' categories?,Complex Aggregation Queries,northwind
+List the first 3 orders with the highest quantity of a single product ordered.,Complex Aggregation Queries,northwind
+Which products have a quantity per unit description containing 'bags'?,Complex Aggregation Queries,northwind
+Find all products from suppliers located in 'Germany' that have been ordered in 1998.,Complex Aggregation Queries,northwind
+What are the top 5 suppliers based on the number of different cities they have shipped to?,Complex Aggregation Queries,northwind
+List the first 3 customers who have ordered 'Chai' and are from 'Portland'.,Complex Aggregation Queries,northwind
+Which categories have products with a reorder level above 25?,Complex Aggregation Queries,northwind
+What are the top 5 products with the highest discount given in an order?,Complex Aggregation Queries,northwind
+Find all suppliers that supply discontinued products.,Complex Aggregation Queries,northwind
+Which products have been ordered in quantities larger than 50 and have a unit price over $20?,Complex Aggregation Queries,northwind
+List the first 3 products in the 'Confections' category with the most units on order.,Complex Aggregation Queries,northwind
+What are the top 5 orders in terms of quantity for the product 'Chai'?,Complex Aggregation Queries,northwind
+Find all products that are both in 'Beverages' and 'Condiments' categories.,Complex Aggregation Queries,northwind
+Which suppliers have a contact title of 'Purchasing Manager' and supply more than 3 products?,Complex Aggregation Queries,northwind
+List the first 3 products with '20 bags' in their quantity per unit description and a reorder level below 15.,Complex Aggregation Queries,northwind
+What are the top 5 most frequently ordered products by customers from 'USA'?,Complex Aggregation Queries,northwind
+Find all orders shipped to 'Reims' with a freight cost less than $50.,Complex Aggregation Queries,northwind
+Which products have been ordered on dates later than '1997-01-01'?,Complex Aggregation Queries,northwind
+List the first 3 customers who have placed more than 5 orders.,Complex Aggregation Queries,northwind
+What are the top 5 categories based on the average unit price of their products?,Complex Aggregation Queries,northwind
+Find all products supplied by companies with a fax number listed.,Complex Aggregation Queries,northwind
+Which products have been ordered with a discount of 0 and are from the 'Dairy Products' category?,Complex Aggregation Queries,northwind
+List the first 3 orders with a required date before '1997-06-01' and a freight cost over $200.,Complex Aggregation Queries,northwind
+What are the top 5 most ordered products in December across all years?,Complex Aggregation Queries,northwind
+Find all suppliers that are from the 'UK' and supply products to more than one category.,Complex Aggregation Queries,northwind
+Which products have a unit price greater than $75 and are in the 'Confections' category?,Complex Aggregation Queries,northwind
+List the first 3 suppliers whose products have never been discontinued and have a unitsInStock less than 20.,Complex Aggregation Queries,northwind
+What are the top 5 orders by freight cost for orders shipped to 'Germany'?,Complex Aggregation Queries,northwind
+Find all products that have been ordered in the last quarter of any year.,Complex Aggregation Queries,northwind
+Which products have a unitsOnOrder greater than 50?,Complex Aggregation Queries,northwind
+List the first 3 categories with products that have been ordered more than 50 times.,Complex Aggregation Queries,northwind
+What are the top 5 suppliers based on the number of products they supply with a unit price over $50?,Complex Aggregation Queries,northwind
+Find all customers who have ordered products with a unit price less than $10.,Complex Aggregation Queries,northwind
+Which products from 'Exotic Liquids' have been ordered in quantities of less than 10?,Complex Aggregation Queries,northwind
+List the first 3 products in the 'Beverages' category that have a unitsInStock greater than 50.,Complex Aggregation Queries,northwind
+What are the top 5 most frequently shipped cities for orders?,Complex Aggregation Queries,northwind
+Find all suppliers who have a product in the 'Grains/Cereals' category with a reorder level above 10.,Complex Aggregation Queries,northwind
+Which products have a discounted price of less than $15 in any of their orders?,Complex Aggregation Queries,northwind
+List the first 3 orders that included products from more than three different categories.,Complex Aggregation Queries,northwind
+What are the top 5 products with the highest number of units on order in the 'Meat/Poultry' category?,Complex Aggregation Queries,northwind
+Find all products that have been shipped to 'London' and have a unit price over $30.,Complex Aggregation Queries,northwind
+Which suppliers have products in both 'Desserts' and 'Sauces' categories?,Complex Aggregation Queries,northwind
+List the first 3 customers who have placed orders totaling over $1000 in freight costs.,Complex Aggregation Queries,northwind
+What are the top 5 most ordered products by customers from 'Berlin'?,Complex Aggregation Queries,northwind
+Find all suppliers that have a home page listed and supply products in the 'Seafood' category.,Complex Aggregation Queries,northwind
+Which products from 'Mayumi's' have been ordered with a discount of 0?,Complex Aggregation Queries,northwind
+List the first 3 products with a unit price between $10 and $20 and a discontinued status of true.,Complex Aggregation Queries,northwind
+What are the top 5 most ordered products by customers from 'Portland'?,Complex Aggregation Queries,northwind
+Which products have a reorder level of exactly 10?,Verbose query,northwind
+List the top 5 products with the highest units in stock.,Verbose query,northwind
+Which categories contain products that are discontinued?,Verbose query,northwind
+Find the top 3 most expensive products supplied by 'Exotic Liquids'.,Verbose query,northwind
+What are the names of suppliers who supply products in the 'Beverages' category?,Verbose query,northwind
+How many products does each supplier supply? Limit the results to the top 5 suppliers.,Verbose query,northwind
+Which customers have purchased orders that include the product named 'Chai'?,Verbose query,northwind
+What are the top 3 orders with the highest quantity of a single product ordered?,Verbose query,northwind
+Which products are part of the 'Dairy Products' category and have less than 20 units in stock?,Verbose query,northwind
+Who are the contact names for suppliers in the 'UK'?,Verbose query,northwind
+List the top 5 orders with the greatest freight charges.,Verbose query,northwind
+Which orders were shipped to 'France' and required before '1997-01-01'?,Verbose query,northwind
+How many products are in the 'Confections' category and have a unit price greater than 20?,Verbose query,northwind
+What are the names of the products that have been ordered more than 50 times?,Verbose query,northwind
+Which customers are from 'Germany' and have ordered more than 3 different products?,Verbose query,northwind
+List the first 3 products that have been reordered (units on order > 0) and are not discontinued.,Verbose query,northwind
+What are the names of the categories where the average unit price of products is above 50?,Verbose query,northwind
+Which suppliers have a home page listed? Provide names for the first 5.,Verbose query,northwind
+Who are the top 3 customers based on the number of orders placed?,Verbose query,northwind
+Which products have a unit price greater than 100 and are still active (not discontinued)?,Verbose query,northwind
+Find products that have never been ordered (units on order = 0) and list the top 5 based on unit price.,Verbose query,northwind
+Which orders were placed by customers from 'USA' and have a shipped date later than '1997-06-01'?,Verbose query,northwind
+Provide the names of all products that have a quantity per unit description containing 'bottles'.,Verbose query,northwind
+Which products are supplied by companies located in 'London'?,Verbose query,northwind
+List the top 3 categories based on the number of products they contain.,Verbose query,northwind
+What are the descriptions of categories that have products with a reorder level greater than 15?,Verbose query,northwind
+Which suppliers provide products to more than one category? List the top 5 based on the number of categories supplied.,Verbose query,northwind
+Which customers have a contact title of 'Sales Representative' and are located in 'Berlin'?,Verbose query,northwind
+Provide the names of products that are part of the 'Seafood' category and have a reorder level of 0.,Verbose query,northwind
+Which orders have a required date in '1996' and were shipped via '2'?,Verbose query,northwind
+Which entities are registered in Hong Kong as per the Panama Papers?,Simple Retrieval Queries,offshoreleaks
+List all entities that have a jurisdiction of Samoa.,Simple Retrieval Queries,offshoreleaks
+Which entities have been struck off on '15-FEB-2013'?,Simple Retrieval Queries,offshoreleaks
+What are the names of entities with the service provider 'Mossack Fonseca'?,Simple Retrieval Queries,offshoreleaks
+List entities that were incorporated on '23-MAR-2006'.,Simple Retrieval Queries,offshoreleaks
+Which entities have a status of 'Defaulted'?,Simple Retrieval Queries,offshoreleaks
+What are the names of entities that have been inactivated on '18-FEB-2013'?,Simple Retrieval Queries,offshoreleaks
+List all entities that have 'HKG' as their country code.,Simple Retrieval Queries,offshoreleaks
+What addresses are linked as registered addresses to entities in Samoa?,Simple Retrieval Queries,offshoreleaks
+"Which officers have been linked to the entity 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.'?",Simple Retrieval Queries,offshoreleaks
+What is the original name of the entity with node_id 10000002?,Simple Retrieval Queries,offshoreleaks
+List the top 5 entities by their lastEditTimestamp.,Simple Retrieval Queries,offshoreleaks
+Which intermediaries are associated with entities in South Africa?,Simple Retrieval Queries,offshoreleaks
+Name intermediaries that are currently active.,Simple Retrieval Queries,offshoreleaks
+List all officers from South Korea.,Simple Retrieval Queries,offshoreleaks
+Provide names of officers that have the ICIJ ID 'E72326DEA50F1A9C2876E112AAEB42BC'.,Simple Retrieval Queries,offshoreleaks
+Which addresses are associated with the sourceID 'Bahamas Leaks'?,Simple Retrieval Queries,offshoreleaks
+Provide the list of entities that have a connection to 'Top Games Holdings Inc.',Simple Retrieval Queries,offshoreleaks
+What are the former names of entities that were incorporated in March 2006?,Simple Retrieval Queries,offshoreleaks
+List the first 3 officers who are associated with entities incorporated in Samoa.,Simple Retrieval Queries,offshoreleaks
+"Which entities have a similar name and address as 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.'?",Simple Retrieval Queries,offshoreleaks
+"List all entities that are the same as 'HOTFOCUS CO., LTD.' in terms of name and registration date.",Simple Retrieval Queries,offshoreleaks
+Provide the names of officers who have the same ICIJ ID and are connected to entities.,Simple Retrieval Queries,offshoreleaks
+"List the intermediary names that have the same address as 'MICHAEL PAPAGEORGE, MR.'",Simple Retrieval Queries,offshoreleaks
+Which entities share the same company type and are registered in Hong Kong?,Simple Retrieval Queries,offshoreleaks
+What are the names of entities that have a company number associated with Mossack Fonseca?,Simple Retrieval Queries,offshoreleaks
+List the original addresses associated with the sourceID 'Panama Papers'.,Simple Retrieval Queries,offshoreleaks
+"Which officers are nominees of 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.' as per Offshore Leaks?",Simple Retrieval Queries,offshoreleaks
+"Provide the names of entities that have a struck off date similar to 'HOTFOCUS CO., LTD.'",Simple Retrieval Queries,offshoreleaks
+List the officers who have been officers of more than one entity.,Simple Retrieval Queries,offshoreleaks
+What are the names of entities that are registered in Samoa and have been struck off after 2010?,Complex Retrieval Queries,offshoreleaks
+List the names of intermediaries based in South Africa with an active status.,Complex Retrieval Queries,offshoreleaks
+Which officers are connected to entities incorporated before 2000?,Complex Retrieval Queries,offshoreleaks
+Can you provide the names of entities that have the same address as others?,Complex Retrieval Queries,offshoreleaks
+What are the names of officers who have a registered address in the Bahamas?,Complex Retrieval Queries,offshoreleaks
+Identify entities that have been inactivated on '18-FEB-2013'.,Complex Retrieval Queries,offshoreleaks
+Find all entities with the status 'Defaulted' and list their names.,Complex Retrieval Queries,offshoreleaks
+What is the service provider for entities that were incorporated in 2006?,Complex Retrieval Queries,offshoreleaks
+Which entities have a jurisdiction description of 'Samoa' and were incorporated in March?,Complex Retrieval Queries,offshoreleaks
+"List the names of entities that share the same company as 'SKY-BLUE GIFTS & TOYS CO., LTD.'",Complex Retrieval Queries,offshoreleaks
+Who are the officers of entities that were inactivated in February 2012?,Complex Retrieval Queries,offshoreleaks
+What addresses are registered to more than one entity?,Complex Retrieval Queries,offshoreleaks
+List entities that have the same name as officers.,Complex Retrieval Queries,offshoreleaks
+"Who is the intermediary of 'HOTFOCUS CO., LTD.' and what is their status?",Complex Retrieval Queries,offshoreleaks
+Provide the names of all officers from South Korea.,Complex Retrieval Queries,offshoreleaks
+"What are the names of entities that have changed their names, and what are their former names?",Complex Retrieval Queries,offshoreleaks
+Can you list the names of entities with multiple relationships types like 'same_as' and 'registered_address'?,Complex Retrieval Queries,offshoreleaks
+What officers are shareholders of entities incorporated on '10-JAN-2006'?,Complex Retrieval Queries,offshoreleaks
+Which entities have an incorporation date exactly on '23-MAR-2006'?,Complex Retrieval Queries,offshoreleaks
+Provide names of entities that were struck off on '15-FEB-2013'.,Complex Retrieval Queries,offshoreleaks
+Identify entities that have an 'inactivation_date' on '18-FEB-2013'.,Complex Retrieval Queries,offshoreleaks
+List the entities that were incorporated in 2006 and are now defaulted.,Complex Retrieval Queries,offshoreleaks
+"What are the names of officers registered in 'Bahamas Leaks' with an address in 'ANNEX FREDERICK & SHIRLEY STS, P.O. BOX N-4805, NA'?",Complex Retrieval Queries,offshoreleaks
+Which entities are registered to the address 'Level 5 Development; Bank of Samoa Building; Beach Road; Apia; Samoa'?,Complex Retrieval Queries,offshoreleaks
+List officers who are nominees in any form according to the 'Offshore Leaks' data.,Complex Retrieval Queries,offshoreleaks
+Which entities are connected to 'Top Games Holdings Inc.'?,Complex Retrieval Queries,offshoreleaks
+Provide the names of entities that have the same name as other entities.,Complex Retrieval Queries,offshoreleaks
+List officers with the same ID based on 'Paradise Papers - Malta corporate registry'.,Complex Retrieval Queries,offshoreleaks
+Which entities have a jurisdiction of 'SAM' and a service provider of 'Mossack Fonseca'?,Complex Retrieval Queries,offshoreleaks
+Identify officers who have the former name 'KIM SOO IN'.,Complex Retrieval Queries,offshoreleaks
+"What are the names of entities that have been provided intermediary services by 'MICHAEL PAPAGEORGE, MR.'?",Complex Retrieval Queries,offshoreleaks
+Which addresses are linked to multiple entities in the Panama Papers?,Complex Retrieval Queries,offshoreleaks
+List all officers who have a valid data up to 2015 in the Panama Papers.,Complex Retrieval Queries,offshoreleaks
+Identify entities that were struck off in February 2013.,Complex Retrieval Queries,offshoreleaks
+Which entities have a company number that starts with '240'?,Complex Retrieval Queries,offshoreleaks
+What are the former names of entities that were struck off in February 2012?,Complex Retrieval Queries,offshoreleaks
+List all entities with a country code of 'HKG' that are in default status.,Complex Retrieval Queries,offshoreleaks
+Provide the names of officers who act as shareholder of entities incorporated on '19-NOV-1999'.,Complex Retrieval Queries,offshoreleaks
+Which entities have a struck off date exactly one year before their inactivation date?,Complex Retrieval Queries,offshoreleaks
+Identify officers connected to entities with a jurisdiction description of 'Samoa'.,Complex Retrieval Queries,offshoreleaks
+Who are the officers of entities that were incorporated on '06-JAN-2006'?,Complex Retrieval Queries,offshoreleaks
+"Which entities are same as 'HOTFOCUS CO., LTD.' in terms of name and address?",Complex Retrieval Queries,offshoreleaks
+List the entities that have a valid_until date through 2015 and are associated with the Panama Papers.,Complex Retrieval Queries,offshoreleaks
+What are the names of entities with a service provider 'Mossack Fonseca' and struck off in 2013?,Complex Retrieval Queries,offshoreleaks
+Identify intermediaries that have registered addresses outside of their country of operation.,Complex Retrieval Queries,offshoreleaks
+Which officers have a status of 'ACTIVE' in the Panama Papers database?,Complex Retrieval Queries,offshoreleaks
+List all entities associated with 'Mossack Fonseca' that have an inactivation date on '16-FEB-2009'.,Complex Retrieval Queries,offshoreleaks
+Provide names of officers who are beneficiaries in any forms according to 'Offshore Leaks' data.,Complex Retrieval Queries,offshoreleaks
+Which entities are connected to 'MOSSFON SUBSCRIBERS LTD.'?,Complex Retrieval Queries,offshoreleaks
+List the names of entities that have been struck off but have no recorded inactivation date.,Complex Retrieval Queries,offshoreleaks
+Provide the names of entities that were both incorporated and struck off in the year 2012.,Complex Retrieval Queries,offshoreleaks
+Identify all entities that have 'Aruba corporate registry data is current through 2014' as their valid until date.,Complex Retrieval Queries,offshoreleaks
+Which officers are connected to entities that were incorporated on '23-MAR-2006'?,Complex Retrieval Queries,offshoreleaks
+List the names of entities with a service provider of 'Mossack Fonseca' and a jurisdiction of 'SAM'.,Complex Retrieval Queries,offshoreleaks
+What are the names of officers who have 'E72326DEA50F1A9C2876E112AAEB42BC' as their icij_id?,Complex Retrieval Queries,offshoreleaks
+Identify entities that have an original name different from their current name and provide both names.,Complex Retrieval Queries,offshoreleaks
+Which entities have a closed date exactly on '28-NOV-2012'?,Complex Retrieval Queries,offshoreleaks
+List entities that have undergone a company type change from the original registration.,Complex Retrieval Queries,offshoreleaks
+What officers are connected to entities with a struck off date on '15-FEB-2009'?,Complex Retrieval Queries,offshoreleaks
+Identify entities that were incorporated in January 2006 and provide their country codes.,Complex Retrieval Queries,offshoreleaks
+Which intermediaries have a registered office in 'MICHAEL PAPAGEORGE; MR. 106 NICHOLSON STREET BROOK'?,Complex Retrieval Queries,offshoreleaks
+Provide the names of all entities that have a tax status description.,Complex Retrieval Queries,offshoreleaks
+List the addresses that have been registered after 2010 in the Panama Papers.,Complex Retrieval Queries,offshoreleaks
+What are the names of entities that have a note stating they were closed due to liquidation?,Complex Retrieval Queries,offshoreleaks
+Identify entities with multiple registered addresses.,Complex Retrieval Queries,offshoreleaks
+List officers who have been linked to entities through the 'intermediary_of' relationship with a start date before 2015.,Complex Retrieval Queries,offshoreleaks
+Which entities have been described in the jurisdiction description as 'Samoa' and have a service provider of 'Mossack Fonseca'?,Complex Retrieval Queries,offshoreleaks
+Identify entities with a type of 'LIMITED LIABILITY COMPANY' in the Paradise Papers.,Complex Retrieval Queries,offshoreleaks
+What are the names of intermediaries who have the same name as officers in the Panama Papers?,Complex Retrieval Queries,offshoreleaks
+List all entities that were struck off on '31-DEC-2002' in the Aruba corporate registry.,Complex Retrieval Queries,offshoreleaks
+Which entities have an incorporation date and a struck off date in the same year?,Complex Retrieval Queries,offshoreleaks
+Provide names of officers who are connected to entities with a 'shareholder of' link starting from '19-NOV-1999'.,Complex Retrieval Queries,offshoreleaks
+Identify entities with a country code of 'HKG' and provide their incorporation dates.,Complex Retrieval Queries,offshoreleaks
+List entities with a valid until date through 2015 and associated with 'Bahamas Leaks'.,Complex Retrieval Queries,offshoreleaks
+Which entities have a note stating 'Closed date stands for Cancelled date.'?,Complex Retrieval Queries,offshoreleaks
+Identify entities that have a former name and provide the current and former names.,Complex Retrieval Queries,offshoreleaks
+Which officers have a registered address in 'Level 5 Development; Bank of Samoa Building; Beach Road; Apia; Samoa'?,Complex Retrieval Queries,offshoreleaks
+List the names of all officers from the 'Offshore Leaks' data with a nominee role.,Complex Retrieval Queries,offshoreleaks
+Provide the names of entities with a jurisdiction of 'SAM' and an inactivation date on '15-FEB-2012'.,Complex Retrieval Queries,offshoreleaks
+Which intermediaries have a link as 'intermediary of' starting from '19-NOV-1999'?,Complex Retrieval Queries,offshoreleaks
+Identify all entities that have undergone a change in company type since their incorporation.,Complex Retrieval Queries,offshoreleaks
+List all entities with a closed date on '28-NOV-2012' and provide their country codes.,Complex Retrieval Queries,offshoreleaks
+What officers are connected to 'Top Games Holdings Inc.' through a direct relationship?,Complex Retrieval Queries,offshoreleaks
+Provide the names of entities that were incorporated on '10-JAN-2006' and have a jurisdiction of 'SAM'.,Complex Retrieval Queries,offshoreleaks
+Which entities are connected to officers with the icij_id 'E72326DEA50F1A9C2876E112AAEB42BC'?,Complex Retrieval Queries,offshoreleaks
+List the entities that have multiple former names and provide all names.,Complex Retrieval Queries,offshoreleaks
+Identify officers linked to entities with a company number starting with '240'.,Complex Retrieval Queries,offshoreleaks
+What are the names of officers who have a note on their record in the Panama Papers?,Complex Retrieval Queries,offshoreleaks
+Which entities have an inactivation date on '18-FEB-2013' and a struck off date on '15-FEB-2013'?,Complex Retrieval Queries,offshoreleaks
+Provide the names of entities that have a company type of 'FOREIGN FORMED CORPORATION' according to the Paradise Papers.,Complex Retrieval Queries,offshoreleaks
+List the entities that were incorporated in '2006' and have a service provider of 'Mossack Fonseca'.,Complex Retrieval Queries,offshoreleaks
+"What are the names of entities that are connected to 'MICHAEL PAPAGEORGE, MR.' as an intermediary and what is their status?",Complex Retrieval Queries,offshoreleaks
+Identify officers with the source ID 'Bahamas Leaks' who have a status of 'ACTIVE'.,Complex Retrieval Queries,offshoreleaks
+Which entities were incorporated in March 2006?,Simple Aggregation Queries,offshoreleaks
+List all entities with jurisdiction description of Samoa.,Simple Aggregation Queries,offshoreleaks
+What are the names of entities that defaulted in 2013?,Simple Aggregation Queries,offshoreleaks
+Find top 5 entities serviced by Mossack Fonseca.,Simple Aggregation Queries,offshoreleaks
+Which entities have a country code of HKG?,Simple Aggregation Queries,offshoreleaks
+Show entities that were struck off in February 2013.,Simple Aggregation Queries,offshoreleaks
+List entities that have the same address as 'ORION HOUSE SERVICES (HK) LIMITED ROOM 1401; 14/F.',Simple Aggregation Queries,offshoreleaks
+How many entities were inactivated in February 2013?,Simple Aggregation Queries,offshoreleaks
+What are the names of entities that were last edited at timestamp '1638311020926'?,Simple Aggregation Queries,offshoreleaks
+List all entities that were valid until 2015.,Simple Aggregation Queries,offshoreleaks
+Show top 3 intermediaries from South Africa.,Simple Aggregation Queries,offshoreleaks
+Which intermediaries have an active status?,Simple Aggregation Queries,offshoreleaks
+List intermediaries associated with the address 'MICHAEL PAPAGEORGE; MR. 106 NICHOLSON STREET BROOK'.,Simple Aggregation Queries,offshoreleaks
+Find the intermediaries that deal with entities in Panama.,Simple Aggregation Queries,offshoreleaks
+Show the name of intermediaries linked to the Panama Papers.,Simple Aggregation Queries,offshoreleaks
+What are the countries associated with intermediaries in the dataset?,Simple Aggregation Queries,offshoreleaks
+List all officers named 'KIM SOO IN'.,Simple Aggregation Queries,offshoreleaks
+Which officers are connected to entities incorporated in Samoa?,Simple Aggregation Queries,offshoreleaks
+Show officers who have a country code of KOR.,Simple Aggregation Queries,offshoreleaks
+List all officers who have been officers of entities.,Simple Aggregation Queries,offshoreleaks
+How many addresses are there in the Bahamas?,Simple Aggregation Queries,offshoreleaks
+List addresses that are valid until 2020.,Simple Aggregation Queries,offshoreleaks
+Show the top 5 most recently edited addresses.,Simple Aggregation Queries,offshoreleaks
+What are the names of other entities with type 'LIMITED LIABILITY COMPANY'?,Simple Aggregation Queries,offshoreleaks
+List other entities connected to Samoa.,Simple Aggregation Queries,offshoreleaks
+Show top 3 most recent nodes in the category Other.,Simple Aggregation Queries,offshoreleaks
+Which others have a note about the Liquidation date?,Simple Aggregation Queries,offshoreleaks
+List all entities that have a registered address in Samoa.,Simple Aggregation Queries,offshoreleaks
+Show entities that have the same company name as 'Top Games Holdings Inc.',Simple Aggregation Queries,offshoreleaks
+What are the top 5 most recent intermediary connections to entities?,Simple Aggregation Queries,offshoreleaks
+List the officers who have the same name as 'MOSSFON SUBSCRIBERS LTD.',Simple Aggregation Queries,offshoreleaks
+Show entities that have a former name listed.,Simple Aggregation Queries,offshoreleaks
+Which entities are connected to addresses in Hong Kong?,Simple Aggregation Queries,offshoreleaks
+List the top 5 intermediaries by last edit timestamp.,Simple Aggregation Queries,offshoreleaks
+What is the status of entities that were incorporated on '23-MAR-2006'?,Simple Aggregation Queries,offshoreleaks
+Show entities that were struck off a day after their inactivation date.,Simple Aggregation Queries,offshoreleaks
+List all entities and their associated countries with status 'Defaulted'.,Simple Aggregation Queries,offshoreleaks
+Which entities have a last edit timestamp earlier than '1638311040000'?,Simple Aggregation Queries,offshoreleaks
+Show the top 5 intermediaries and the entities they are connected to.,Simple Aggregation Queries,offshoreleaks
+"List the entities that have a similar name and address as 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.'",Simple Aggregation Queries,offshoreleaks
+Which entities have a node id greater than '10000000'?,Simple Aggregation Queries,offshoreleaks
+Show officers that are linked as 'Nominee Shareholder of' other entities.,Simple Aggregation Queries,offshoreleaks
+List the addresses that are registered to more than one entity.,Simple Aggregation Queries,offshoreleaks
+Show entities that were last edited on the same timestamp as 'Top Games Holdings Inc.',Simple Aggregation Queries,offshoreleaks
+Which entities have a tax description available?,Simple Aggregation Queries,offshoreleaks
+List entities that have been closed but not struck off.,Simple Aggregation Queries,offshoreleaks
+What are the top 3 most recent types of connection available in the schema?,Simple Aggregation Queries,offshoreleaks
+"Show entities that are same as 'TIANSHENG INDUSTRY AND TRADING CO., LTD.'",Simple Aggregation Queries,offshoreleaks
+Which entities are registered at the same address as 'Top Games Holdings Inc.'?,Simple Aggregation Queries,offshoreleaks
+List the intermediaries that have a source ID of 'Panama Papers' and are active.,Simple Aggregation Queries,offshoreleaks
+Show the entities with a struck off date in 2014.,Simple Aggregation Queries,offshoreleaks
+"List officers who are connected to addresses in Apia, Samoa.",Simple Aggregation Queries,offshoreleaks
+What are the closed dates for entities that have a jurisdiction of SAM?,Simple Aggregation Queries,offshoreleaks
+Show the entities that have a company number listed.,Simple Aggregation Queries,offshoreleaks
+List the entities with their respective inactivation dates and statuses.,Simple Aggregation Queries,offshoreleaks
+"Which entities have an address in Tsim Sha Tsui, Kowloon, Hong Kong?",Simple Aggregation Queries,offshoreleaks
+Show the top 5 entities by last edit timestamp.,Simple Aggregation Queries,offshoreleaks
+List the intermediaries with a registered office in 'MICHAEL PAPAGEORGE; MR. 106 NICHOLSON STREET BROOK'.,Simple Aggregation Queries,offshoreleaks
+Which officers have a valid until date through 2015?,Simple Aggregation Queries,offshoreleaks
+Show entities that have a company type specified.,Simple Aggregation Queries,offshoreleaks
+List all entities with a dorm date listed.,Simple Aggregation Queries,offshoreleaks
+What are the top 5 entities with the most recent incorporation dates?,Simple Aggregation Queries,offshoreleaks
+Show the entities connected to 'ORION HOUSE SERVICES (HK) LIMITED ROOM 1401; 14/F.',Simple Aggregation Queries,offshoreleaks
+List entities that are connected to intermediaries based in South Africa.,Simple Aggregation Queries,offshoreleaks
+Which entities have a different former name and current name?,Simple Aggregation Queries,offshoreleaks
+Show the top 5 officers by last edit timestamp.,Simple Aggregation Queries,offshoreleaks
+List the entities with a jurisdiction code of 'SAM'.,Simple Aggregation Queries,offshoreleaks
+Which entities have a service provider listed as 'Mossack Fonseca'?,Simple Aggregation Queries,offshoreleaks
+Show the entities that are connected to addresses with the ICIJ ID 'F969D23B2EDF91CAEBE119A675B61AAB'.,Simple Aggregation Queries,offshoreleaks
+List all entities with a note about their status.,Simple Aggregation Queries,offshoreleaks
+What are the countries codes associated with officers in the dataset?,Simple Aggregation Queries,offshoreleaks
+Show the top 5 entities sorted by their node_id.,Simple Aggregation Queries,offshoreleaks
+List the intermediaries that are connected to entities with a status of 'Defaulted'.,Simple Aggregation Queries,offshoreleaks
+Which officers have been involved with entities since 1999?,Simple Aggregation Queries,offshoreleaks
+Show the entities that have the same id as another entity.,Simple Aggregation Queries,offshoreleaks
+List the entities that have been connected to other entities through the 'connected to' relationship.,Simple Aggregation Queries,offshoreleaks
+Which entities and officers share the same name?,Simple Aggregation Queries,offshoreleaks
+Show the entities that have been struck off but have a different inactivation date.,Simple Aggregation Queries,offshoreleaks
+List the addresses that have been used for more than one entity.,Simple Aggregation Queries,offshoreleaks
+What are the top 5 most recent entities by incorporation date?,Simple Aggregation Queries,offshoreleaks
+Show the intermediaries with the most connections to entities.,Simple Aggregation Queries,offshoreleaks
+List the entities with a jurisdiction description that matches their country codes.,Simple Aggregation Queries,offshoreleaks
+Which entities have changed their name from their original name?,Simple Aggregation Queries,offshoreleaks
+Show the nodes that have a type of 'SOLE OWNERSHIP'.,Simple Aggregation Queries,offshoreleaks
+List the entities that have undergone liquidation as per their notes.,Simple Aggregation Queries,offshoreleaks
+Which entities and intermediaries have the same country codes?,Simple Aggregation Queries,offshoreleaks
+Show the top 5 entities that were last edited before '1638311040000'.,Simple Aggregation Queries,offshoreleaks
+List the officers that are connected to entities with a node_id greater than '12000000'.,Simple Aggregation Queries,offshoreleaks
+Which entities have a status of 'Defaulted'?,Pathfinding Queries,offshoreleaks
+List all entities with their incorporation dates between 2005 and 2010.,Pathfinding Queries,offshoreleaks
+What are the names of entities incorporated in Samoa?,Pathfinding Queries,offshoreleaks
+How many entities have been struck off on '15-FEB-2013'?,Pathfinding Queries,offshoreleaks
+Identify entities that have 'Mossack Fonseca' as their service provider.,Pathfinding Queries,offshoreleaks
+Which entities have a 'HKG' country code?,Pathfinding Queries,offshoreleaks
+Can you list entities that were inactivated in February 2014?,Pathfinding Queries,offshoreleaks
+What are the names of intermediaries located in South Africa?,Pathfinding Queries,offshoreleaks
+List all officers with the country code 'KOR'.,Pathfinding Queries,offshoreleaks
+What addresses are registered in the Bahamas?,Pathfinding Queries,offshoreleaks
+How many entities are connected to the address with node_id 24000001?,Pathfinding Queries,offshoreleaks
+List entities that are the same as entity with node_id 10000001.,Pathfinding Queries,offshoreleaks
+Which entities are served by the intermediary with node_id 11000001?,Pathfinding Queries,offshoreleaks
+List all entities that share the same name as officer with node_id 12000001.,Pathfinding Queries,offshoreleaks
+Which officers are involved with the entity having node_id 10000002?,Pathfinding Queries,offshoreleaks
+What are the registered addresses of entities in Hong Kong?,Pathfinding Queries,offshoreleaks
+How many entities are connected to the officer with node_id 12000001?,Pathfinding Queries,offshoreleaks
+List the entities with a jurisdiction description of 'Samoa'.,Pathfinding Queries,offshoreleaks
+Which entities have an incorporation date of '23-MAR-2006'?,Pathfinding Queries,offshoreleaks
+List all officers that have an address in South Korea.,Pathfinding Queries,offshoreleaks
+"Find entities that have 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.' as their original name.",Pathfinding Queries,offshoreleaks
+"Which intermediary has the name 'MICHAEL PAPAGEORGE, MR.'?",Pathfinding Queries,offshoreleaks
+List the names of entities that were defaulted before 2014.,Pathfinding Queries,offshoreleaks
+List entities with their service providers and incorporation dates.,Pathfinding Queries,offshoreleaks
+Which entities are linked to the address with original_address starting with 'ANNEX FREDERICK'?,Pathfinding Queries,offshoreleaks
+Identify entities with closed dates in November 2012.,Pathfinding Queries,offshoreleaks
+What are the names of entities with a struck off date in February 2013?,Pathfinding Queries,offshoreleaks
+List entities that have changed their names and provide the former and current names.,Pathfinding Queries,offshoreleaks
+Who are the officers connected to the entity with node_id 10000004?,Pathfinding Queries,offshoreleaks
+List the intermediaries that have an active status.,Pathfinding Queries,offshoreleaks
+Which officers are linked as 'Nominee Shareholder of' with entities?,Pathfinding Queries,offshoreleaks
+Which entities are under the same company as entity with node_id 10000001?,Pathfinding Queries,offshoreleaks
+Which addresses have the status 'active'?,Pathfinding Queries,offshoreleaks
+List all officers who are also registered as entities.,Pathfinding Queries,offshoreleaks
+Identify other nodes with type 'LIMITED LIABILITY COMPANY'.,Pathfinding Queries,offshoreleaks
+List all entities and their respective service providers that were inactivated on '18-FEB-2013'.,Pathfinding Queries,offshoreleaks
+Which entities have a note indicating a liquidation date?,Pathfinding Queries,offshoreleaks
+List the entities with jurisdiction 'SAM' and their respective company types.,Pathfinding Queries,offshoreleaks
+Identify all officers who have a sourceID of 'Panama Papers' and are connected to an entity.,Pathfinding Queries,offshoreleaks
+Which officers have been officers of more than one entity?,Pathfinding Queries,offshoreleaks
+Identify entities with their last edit timestamp and those that have been struck off.,Pathfinding Queries,offshoreleaks
+Find all addresses with the country code 'BHS' and list their associated entities.,Pathfinding Queries,offshoreleaks
+Which entities have a valid until date of 'The Panama Papers data is current through 2015'?,Pathfinding Queries,offshoreleaks
+List all intermediaries with a registered address in the 'Bahamas'.,Pathfinding Queries,offshoreleaks
+Which entities have been involved with any type of 'Nominee' relationship?,Pathfinding Queries,offshoreleaks
+Identify the officers with the last name 'SOO' and list their associated entities.,Pathfinding Queries,offshoreleaks
+List all entities that have a struck off date and their last known status.,Pathfinding Queries,offshoreleaks
+Who are the officers that share the same name as entity with node_id 10000002?,Pathfinding Queries,offshoreleaks
+Which entities have a similar name and address as the entity with node_id 10000004?,Pathfinding Queries,offshoreleaks
+List entities that have a former name and their current names.,Pathfinding Queries,offshoreleaks
+Identify all officers with a node_id greater than 12000000.,Pathfinding Queries,offshoreleaks
+Which entities have a tax status description available?,Pathfinding Queries,offshoreleaks
+List all 'Other' nodes connected to entities and their connection types.,Pathfinding Queries,offshoreleaks
+Which entities are involved with 'Paradise Papers - Aruba corporate registry'?,Pathfinding Queries,offshoreleaks
+Identify entities with multiple addresses and list the addresses.,Pathfinding Queries,offshoreleaks
+List officers who have a direct connection to entities incorporated in 2006.,Pathfinding Queries,offshoreleaks
+Find entities that have been both struck off and inactivated in the same year.,Pathfinding Queries,offshoreleaks
+Which entities are registered at the same address as the officer with node_id 12000001?,Pathfinding Queries,offshoreleaks
+List entities that are similar in name to 'Top Games Holdings Inc.' and their incorporation dates.,Pathfinding Queries,offshoreleaks
+Identify the officers connected to the intermediary with node_id 11000001.,Pathfinding Queries,offshoreleaks
+List all intermediaries and their associated entities based on the relationship 'intermediary_of'.,Pathfinding Queries,offshoreleaks
+Which entities have an inactivation date of '27-FEB-2014'?,Pathfinding Queries,offshoreleaks
+Identify all addresses connected to entities and their link types.,Pathfinding Queries,offshoreleaks
+Which entities and officers share the same country code 'WSM'?,Pathfinding Queries,offshoreleaks
+List the registered addresses for entities that were incorporated in March 2006.,Pathfinding Queries,offshoreleaks
+Identify entities that have been struck off after 2010 and list their node_ids.,Pathfinding Queries,offshoreleaks
+List all entities that have a closed date and their type.,Pathfinding Queries,offshoreleaks
+Which entities have a type of 'FOREIGN FORMED CORPORATION'?,Pathfinding Queries,offshoreleaks
+Identify entities with multiple statuses and list the statuses.,Pathfinding Queries,offshoreleaks
+Which officers have served as 'Nominee Director of' for entities?,Pathfinding Queries,offshoreleaks
+List all entities with a last edit timestamp of '1638311020926'.,Pathfinding Queries,offshoreleaks
+Which entities have a node_id less than 80000012 and their names?,Pathfinding Queries,offshoreleaks
+Identify all officers with a status of 'ACTIVE'.,Pathfinding Queries,offshoreleaks
+List entities that share the same jurisdiction as 'SAM' and their names.,Pathfinding Queries,offshoreleaks
+Identify entities with a valid until date and their respective incorporation dates.,Pathfinding Queries,offshoreleaks
+Which entities have an address in 'KOWLOON; HONG KONG'?,Pathfinding Queries,offshoreleaks
+List all officers connected to the address with node_id 24000001.,Pathfinding Queries,offshoreleaks
+Identify entities that have been both registered and struck off in Samoa.,Pathfinding Queries,offshoreleaks
+Which entities are connected to the officer with icij_id 'CB195B5424E13A74A6F3BC719050A2B9'?,Pathfinding Queries,offshoreleaks
+List entities with a jurisdiction description of 'Aruba' and their respective jurisdictions.,Pathfinding Queries,offshoreleaks
+Who are the officers with the former name 'MOSSFON SUBSCRIBERS LTD.' and their current names?,Pathfinding Queries,offshoreleaks
+List all intermediaries that have been registered at more than one address.,Pathfinding Queries,offshoreleaks
+Which officers are connected to entities with a struck off date of '15-FEB-2013'?,Pathfinding Queries,offshoreleaks
+Identify entities that share the same company number and list their names.,Pathfinding Queries,offshoreleaks
+List all addresses that have been registered to more than one entity.,Pathfinding Queries,offshoreleaks
+Which officers have a note mentioning a liquidation date?,Pathfinding Queries,offshoreleaks
+Identify all 'Other' nodes with a jurisdiction of 'AW' and their types.,Pathfinding Queries,offshoreleaks
+List entities that have a company type of 'SOLE OWNERSHIP' and their incorporation dates.,Pathfinding Queries,offshoreleaks
+Which entities have a sourceID of 'Panama Papers' and a company number?,Pathfinding Queries,offshoreleaks
+List all officers and their respective last edit timestamps that are associated with entities.,Pathfinding Queries,offshoreleaks
+Identify entities that are connected to more than one officer.,Pathfinding Queries,offshoreleaks
+Which entities have a service provider of 'Mossack Fonseca' and are still active?,Pathfinding Queries,offshoreleaks
+List all entities that have a struck off date of '15-FEB-2014' and their jurisdictions.,Pathfinding Queries,offshoreleaks
+What are the top 5 movies directed by Harold Lloyd?,Simple Retrieval Queries,recommendations
+List the first 3 genres that have movies with a runtime greater than 120 minutes.,Simple Retrieval Queries,recommendations
+Which 3 users rated the movie with the highest revenue?,Simple Retrieval Queries,recommendations
+Show the first 5 actors who acted in movies released in the year 2014.,Simple Retrieval Queries,recommendations
+What are the top 3 movies with the highest imdbRating that were released in 1995?,Simple Retrieval Queries,recommendations
+List the first 5 directors born in France.,Simple Retrieval Queries,recommendations
+Which 3 movies have the most number of votes cast by users?,Simple Retrieval Queries,recommendations
+Show the top 5 movies with a budget greater than 100 million USD.,Simple Retrieval Queries,recommendations
+What are the first 3 genres associated with movies that have been rated by at least 5 different users?,Simple Retrieval Queries,recommendations
+List the 5 movies with the most languages spoken.,Simple Retrieval Queries,recommendations
+Who are the top 3 actors based on the number of movies they have acted in?,Simple Retrieval Queries,recommendations
+What are the first 5 movies directed by directors born in the USA?,Simple Retrieval Queries,recommendations
+Which 3 actors have acted in movies with a runtime less than 90 minutes?,Simple Retrieval Queries,recommendations
+List the top 5 highest-grossing movies of 2006.,Simple Retrieval Queries,recommendations
+Show the first 3 movies that have been rated below 3.0 by any user.,Simple Retrieval Queries,recommendations
+What are the first 5 movies with the most distinct genres associated with them?,Simple Retrieval Queries,recommendations
+Which 3 directors have directed movies in more than one genre?,Simple Retrieval Queries,recommendations
+List the first 5 actors who have a poster URL listed on their profile.,Simple Retrieval Queries,recommendations
+Show the top 5 users by the number of movies they have rated.,Simple Retrieval Queries,recommendations
+Which 3 movies have the highest budget-revenue ratio?,Simple Retrieval Queries,recommendations
+List the first 5 actors who were born before 1900.,Simple Retrieval Queries,recommendations
+What are the top 3 genres in which movies with an imdbRating above 8.0 fall?,Simple Retrieval Queries,recommendations
+Which 5 movies have been directed by persons who also have an acting role in any movie?,Simple Retrieval Queries,recommendations
+Show the first 3 movies released in the USA that have a revenue exceeding 500 million USD.,Simple Retrieval Queries,recommendations
+List the 5 most recently released movies with a plot description available.,Simple Retrieval Queries,recommendations
+What are the first 3 directors who died after 2000?,Simple Retrieval Queries,recommendations
+Which 3 users have rated the oldest movies in the database?,Simple Retrieval Queries,recommendations
+List the top 5 movies with the most user ratings.,Simple Retrieval Queries,recommendations
+Show the first 5 genres of movies directed by directors who were born after 1960.,Simple Retrieval Queries,recommendations
+Which 3 movies have been rated exactly 5 times by users?,Simple Retrieval Queries,recommendations
+List the first 5 directors with the most diverse filmography based on genre diversity.,Simple Retrieval Queries,recommendations
+What are the top 3 movies with the longest runtime?,Simple Retrieval Queries,recommendations
+Which 5 actors have acted in the most commercially successful movies (highest revenue)?,Simple Retrieval Queries,recommendations
+Show the first 3 movies that have been rated by the youngest users.,Simple Retrieval Queries,recommendations
+List the top 5 movies with a plot involving a 'young boy' or 'orphan'.,Simple Retrieval Queries,recommendations
+What are the top 3 genres of movies that have a budget less than 50 million USD?,Simple Retrieval Queries,recommendations
+Which 5 movies have been released in the most number of countries?,Simple Retrieval Queries,recommendations
+Show the first 3 movies that feature an actor from France.,Simple Retrieval Queries,recommendations
+List the top 5 users who have rated the most movies released before 2000.,Simple Retrieval Queries,recommendations
+Which 3 movies have the lowest imdbVotes but a rating higher than 7.0?,Simple Retrieval Queries,recommendations
+List the first 5 actors who have acted in movies directed by a director born in Nebraska.,Simple Retrieval Queries,recommendations
+What are the top 3 movies released during the Christmas season (December)?,Simple Retrieval Queries,recommendations
+Which 5 directors have directed movies with the highest average imdbRating?,Simple Retrieval Queries,recommendations
+Show the first 3 actors who starred in a movie with a budget over 200 million USD.,Simple Retrieval Queries,recommendations
+List the top 5 genres of movies with the most language diversity.,Simple Retrieval Queries,recommendations
+What are the first 3 movies that have been rated 10 times or more?,Simple Retrieval Queries,recommendations
+Which 3 actors have the most roles listed in their ACTED_IN relationships?,Simple Retrieval Queries,recommendations
+List the first 5 movies that have been directed by women.,Simple Retrieval Queries,recommendations
+Show the top 5 actors who have acted in movies with at least three different directors.,Simple Retrieval Queries,recommendations
+Which 3 movies have the most detailed plot descriptions (longest text)?,Simple Retrieval Queries,recommendations
+List the first 5 directors who have a biography listed in their profile.,Simple Retrieval Queries,recommendations
+What are the top 3 movies with the most significant difference between budget and revenue?,Simple Retrieval Queries,recommendations
+Which 5 actors were born in the USA and have acted in at least two movies?,Simple Retrieval Queries,recommendations
+Show the first 3 movies that have a poster URL and were released after 2010.,Simple Retrieval Queries,recommendations
+List the top 5 movies that have been rated the most number of times.,Simple Retrieval Queries,recommendations
+What are the first 3 genres in which Harold Lloyd has directed movies?,Simple Retrieval Queries,recommendations
+Which 3 users have given the highest average rating to movies they've rated?,Simple Retrieval Queries,recommendations
+List the first 5 directors who have directed a movie with an imdbRating of 9 or higher.,Simple Retrieval Queries,recommendations
+Show the top 5 movies with the most actors involved.,Simple Retrieval Queries,recommendations
+Which 3 movies have been directed by directors who have also acted in movies?,Simple Retrieval Queries,recommendations
+List the first 5 movies that have a language listed as 'French'.,Simple Retrieval Queries,recommendations
+What are the top 3 directors who have directed movies with the most diverse set of actors?,Simple Retrieval Queries,recommendations
+Which 5 movies have the most distinct countries of release listed?,Simple Retrieval Queries,recommendations
+Show the first 3 actors who have directed a movie.,Simple Retrieval Queries,recommendations
+List the top 5 movies that have been rated by users from more than 5 different countries.,Simple Retrieval Queries,recommendations
+What are the first 3 movies that have a tmdbId and an imdbId listed?,Simple Retrieval Queries,recommendations
+Which 3 directors have the longest bios in the database?,Simple Retrieval Queries,recommendations
+List the first 5 actors who were born and died in the same country.,Simple Retrieval Queries,recommendations
+Show the top 5 genres of movies that have a runtime of exactly 90 minutes.,Simple Retrieval Queries,recommendations
+Which 3 movies have been rated by the oldest users in terms of account creation date?,Simple Retrieval Queries,recommendations
+List the first 5 movies that were released on a Friday.,Simple Retrieval Queries,recommendations
+What are the top 3 movies based on the number of different languages they have been released in?,Simple Retrieval Queries,recommendations
+Which 5 directors have the most movies released in the 2000s?,Simple Retrieval Queries,recommendations
+Show the first 3 genres that have movies with both an English and French language option.,Simple Retrieval Queries,recommendations
+List the top 5 highest-rated movies by users named 'John'.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with the highest number of genres associated?,Simple Retrieval Queries,recommendations
+Which 3 directors have directed the most movies with a runtime over 150 minutes?,Simple Retrieval Queries,recommendations
+List the first 5 actors who have a tmdbId and an imdbId listed on their profile.,Simple Retrieval Queries,recommendations
+Show the top 5 movies that have been rated exactly three times.,Simple Retrieval Queries,recommendations
+Which 3 genres have the least number of movies associated with them?,Simple Retrieval Queries,recommendations
+List the first 5 movies with a plot involving an 'evil exterminator'.,Simple Retrieval Queries,recommendations
+What are the top 3 movies with the shortest runtime?,Simple Retrieval Queries,recommendations
+Which 5 directors have directed movies in more than three different countries?,Simple Retrieval Queries,recommendations
+Show the first 3 actors who have acted in movies with a budget under 10 million USD.,Simple Retrieval Queries,recommendations
+List the top 5 movies that have been rated by users with the most distinct names.,Simple Retrieval Queries,recommendations
+What are the first 3 movies that have been released in exactly three different countries?,Simple Retrieval Queries,recommendations
+Which 3 directors have directed both animated and non-animated movies?,Simple Retrieval Queries,recommendations
+List the first 5 movies with a director who has also acted in a movie.,Simple Retrieval Queries,recommendations
+Show the top 5 genres of movies that have been rated by the most users.,Simple Retrieval Queries,recommendations
+Which 3 actors have the most diverse range of genres in the movies they've acted in?,Simple Retrieval Queries,recommendations
+List the first 5 movies with the highest number of directors involved.,Simple Retrieval Queries,recommendations
+What are the top 3 movies with a plot involving a 'friendship'?,Simple Retrieval Queries,recommendations
+Which 5 actors have acted in movies released in the most distinct years?,Simple Retrieval Queries,recommendations
+Show the first 3 movies whose posters feature the color blue predominantly.,Simple Retrieval Queries,recommendations
+List the top 5 directors with the most movies that have an imdbRating of 6 or higher.,Simple Retrieval Queries,recommendations
+What are the first 3 genres of movies that have been directed by directors born after 1980?,Simple Retrieval Queries,recommendations
+Which 3 users have rated movies with the most diverse range of imdbRatings?,Simple Retrieval Queries,recommendations
+List the first 5 movies with at least three different languages listed.,Simple Retrieval Queries,recommendations
+Show the top 5 actors with the longest bios.,Simple Retrieval Queries,recommendations
+List the top 5 movies directed by a person named 'Graham Annable'.,Complex Retrieval Queries,recommendations
+Which 3 users gave the highest ratings to the movie titled 'Toy Story'?,Complex Retrieval Queries,recommendations
+Find the top 5 actors who have acted in more than 10 movies.,Complex Retrieval Queries,recommendations
+"What are the top 3 most profitable movies, considering the difference between revenue and budget?",Complex Retrieval Queries,recommendations
+Which 3 movies have been rated by the most users?,Complex Retrieval Queries,recommendations
+Name the top 5 directors born in the USA.,Complex Retrieval Queries,recommendations
+List 3 movies released in 1995.,Complex Retrieval Queries,recommendations
+What are the top 5 highest-grossing movies of 2014?,Complex Retrieval Queries,recommendations
+Which 3 actors have played roles in both acting and directing for the same movie?,Complex Retrieval Queries,recommendations
+List the top 5 movies with an IMDb rating above 8.0.,Complex Retrieval Queries,recommendations
+What are the top 3 genres with the most movies?,Complex Retrieval Queries,recommendations
+Which 3 directors have the longest filmography in the database?,Complex Retrieval Queries,recommendations
+List the top 5 movies that have been rated after 2015.,Complex Retrieval Queries,recommendations
+Which 3 movies have the highest IMDb votes?,Complex Retrieval Queries,recommendations
+Name the top 5 actors who have acted in movies with a runtime longer than 150 minutes.,Complex Retrieval Queries,recommendations
+List 3 actors born in France who have directed a movie.,Complex Retrieval Queries,recommendations
+What are the top 5 movies with a budget over $100 million?,Complex Retrieval Queries,recommendations
+Which 3 users have rated the most movies?,Complex Retrieval Queries,recommendations
+Name the top 5 movies with IMDb ratings lower than 5.0.,Complex Retrieval Queries,recommendations
+List the top 3 directors who died after 2000.,Complex Retrieval Queries,recommendations
+What are the top 5 movies in the 'Adventure' genre with the highest revenue?,Complex Retrieval Queries,recommendations
+Which 3 movies have the highest number of languages spoken?,Complex Retrieval Queries,recommendations
+List the top 5 actors with the most roles in movies released before 1980.,Complex Retrieval Queries,recommendations
+Which 3 directors were born before 1900?,Complex Retrieval Queries,recommendations
+Name the top 5 most voted movies on IMDb released after 2010.,Complex Retrieval Queries,recommendations
+List the 3 users who have given the lowest average ratings.,Complex Retrieval Queries,recommendations
+What are the top 5 movies with the most distinct countries of origin?,Complex Retrieval Queries,recommendations
+Which 3 actors have the most roles in comedy movies?,Complex Retrieval Queries,recommendations
+Name the top 5 movies that have been rated by users named 'Omar Huffman'.,Complex Retrieval Queries,recommendations
+List the top 3 movies with the shortest runtime.,Complex Retrieval Queries,recommendations
+What are the top 5 movies directed by directors born in Nebraska?,Complex Retrieval Queries,recommendations
+Which 3 movies have the lowest revenue despite having a high IMDb rating (over 7.0)?,Complex Retrieval Queries,recommendations
+List the top 5 actors who have acted in movies directed by 'Anthony Stacchi'.,Complex Retrieval Queries,recommendations
+Which 3 genres has 'Toy Story' been categorized under?,Complex Retrieval Queries,recommendations
+Name the top 5 movies with the highest budget to revenue ratio.,Complex Retrieval Queries,recommendations
+What are the top 5 movies with the highest revenue?,Simple Retrieval Queries,recommendations
+Which three movies have the longest runtime?,Simple Retrieval Queries,recommendations
+List the top 5 movies with the most number of IMDb votes.,Simple Retrieval Queries,recommendations
+What are the first 3 movies released after 2010?,Simple Retrieval Queries,recommendations
+Which three users have rated the most movies?,Simple Retrieval Queries,recommendations
+List the top 3 directors by the number of movies directed.,Simple Retrieval Queries,recommendations
+What are the top 3 genres by the number of movies?,Simple Retrieval Queries,recommendations
+Which three actors have acted in the most movies?,Simple Retrieval Queries,recommendations
+List the first 3 movies that have a budget greater than 100 million USD.,Simple Retrieval Queries,recommendations
+What are the top 3 highest rated movies by users?,Simple Retrieval Queries,recommendations
+Which three movies have the highest IMDb rating?,Simple Retrieval Queries,recommendations
+List the top 5 movies with the lowest revenue.,Simple Retrieval Queries,recommendations
+What are the first 3 movies that were released in the USA?,Simple Retrieval Queries,recommendations
+Which three directors were born in the USA?,Simple Retrieval Queries,recommendations
+List the top 3 actors by the number of IMDb votes they've received for their movies.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a runtime less than 90 minutes?,Simple Retrieval Queries,recommendations
+Which three users have the highest average rating given to movies?,Simple Retrieval Queries,recommendations
+List the top 3 movies with a plot mentioning 'love'.,Simple Retrieval Queries,recommendations
+What are the first 3 movies that have a revenue to budget ratio greater than 3?,Simple Retrieval Queries,recommendations
+Which three actors have acted in movies in more than 3 different languages?,Simple Retrieval Queries,recommendations
+List the top 5 movies released in the 2000s.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a title starting with 'The'?,Simple Retrieval Queries,recommendations
+Which three directors have directed movies in more than 2 different genres?,Simple Retrieval Queries,recommendations
+List the top 3 genres that have movies with an average IMDb rating over 7.,Simple Retrieval Queries,recommendations
+What are the first 3 movies where the main actor was born in France?,Simple Retrieval Queries,recommendations
+Which three movies have the most diverse set of spoken languages?,Simple Retrieval Queries,recommendations
+List the top 3 movies that were most frequently rated by users.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with an IMDb rating lower than 5?,Simple Retrieval Queries,recommendations
+Which three directors have directed movies with a total revenue over 500 million USD?,Simple Retrieval Queries,recommendations
+List the top 3 actors who have acted in both comedy and drama genres.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a poster URL containing 'face'?,Simple Retrieval Queries,recommendations
+Which three movies feature both American and Japanese actors?,Simple Retrieval Queries,recommendations
+List the first 3 directors who have died after 2000.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with an IMDb rating greater than 8 and less than 9?,Simple Retrieval Queries,recommendations
+Which three genres have the least number of movies associated with them?,Simple Retrieval Queries,recommendations
+List the top 3 users who rated movies only in the 'Comedy' genre.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a plot mentioning 'zombie'?,Simple Retrieval Queries,recommendations
+Which three directors have the highest average IMDb rating for their movies?,Simple Retrieval Queries,recommendations
+List the top 3 actors born in the 1980s.,Simple Retrieval Queries,recommendations
+What are the first 3 movies that have a language list containing 'Turkish'?,Simple Retrieval Queries,recommendations
+Which three users have rated the oldest movies on average?,Simple Retrieval Queries,recommendations
+List the top 3 movies with a release date on or before '2000-01-01'.,Simple Retrieval Queries,recommendations
+What are the first 3 movies directed by a person who has also acted in movies?,Simple Retrieval Queries,recommendations
+Which three movies have the most different countries listed?,Simple Retrieval Queries,recommendations
+List the top 3 actors who have directed movies they acted in.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a revenue greater than their budget?,Simple Retrieval Queries,recommendations
+Which three genres have the highest average revenue per movie?,Simple Retrieval Queries,recommendations
+List the top 3 directors who have directed the most successful movies in terms of revenue.,Simple Retrieval Queries,recommendations
+What are the first 3 movies that have been rated exactly 5 times?,Simple Retrieval Queries,recommendations
+Which three actors have the longest total screen time in movies?,Simple Retrieval Queries,recommendations
+List the top 3 movies that have multiple languages but a single country of origin.,Simple Retrieval Queries,recommendations
+What are the first 3 movies that have a plot mentioning 'war'?,Simple Retrieval Queries,recommendations
+Which three users have rated the most number of actors?,Simple Retrieval Queries,recommendations
+List the top 3 movies that have been released on a leap year.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with the most number of associated actors?,Simple Retrieval Queries,recommendations
+Which three directors have directed movies in more than one language?,Simple Retrieval Queries,recommendations
+List the first 3 actors who have acted in a movie with a budget over 50 million USD.,Simple Retrieval Queries,recommendations
+What are the top 5 movies that have a genre of 'Sci-Fi'?,Simple Retrieval Queries,recommendations
+Which three movies have been rated by the youngest users on average?,Simple Retrieval Queries,recommendations
+List the top 3 directors based on the number of different countries their movies have been released in.,Simple Retrieval Queries,recommendations
+What are the first 3 movies that have a plot mentioning 'adventure'?,Simple Retrieval Queries,recommendations
+Which three genres are most common among movies with a budget over 100 million USD?,Simple Retrieval Queries,recommendations
+List the top 3 actors who have the highest average IMDb rating across their movies.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a majority of non-English languages?,Simple Retrieval Queries,recommendations
+Which three users have rated movies in the most number of different genres?,Simple Retrieval Queries,recommendations
+List the top 3 movies that have been directed by actors.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a plot mentioning 'family'?,Simple Retrieval Queries,recommendations
+Which three directors have directed movies that have won any cinematic awards?,Simple Retrieval Queries,recommendations
+List the first 3 actors who have acted in historical movies.,Simple Retrieval Queries,recommendations
+What are the top 3 movies with a title ending in 'End'?,Simple Retrieval Queries,recommendations
+Which three movies have the smallest difference between IMDb rating and user rating?,Simple Retrieval Queries,recommendations
+List the top 3 movies with a released date on a Friday.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with an IMDb rating above 7 and more than 100000 IMDb votes?,Simple Retrieval Queries,recommendations
+Which three directors have directed the most number of movies in a single year?,Simple Retrieval Queries,recommendations
+List the first 3 movies that were shot in more than five different locations.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with an actor who has a biography mentioning 'model'?,Simple Retrieval Queries,recommendations
+Which three genres have the most movies with a runtime over 120 minutes?,Simple Retrieval Queries,recommendations
+List the top 3 users who have rated at least one movie in each genre available.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with an actor born before 1900?,Simple Retrieval Queries,recommendations
+Which three movies have the highest difference in revenue and budget?,Simple Retrieval Queries,recommendations
+List the top 3 directors who have worked with the most number of actors.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with plots that involve a natural disaster?,Simple Retrieval Queries,recommendations
+Which three users have rated the highest budget movies on average?,Simple Retrieval Queries,recommendations
+List the top 3 actors who have acted in both 'Action' and 'Romance' genres.,Simple Retrieval Queries,recommendations
+What are the first 3 movies released in 'January'?,Simple Retrieval Queries,recommendations
+Which three directors have the longest average movie runtime?,Simple Retrieval Queries,recommendations
+List the top 3 movies with a significant plot twist mentioned in the plot.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a revenue less than 1000 USD?,Simple Retrieval Queries,recommendations
+Which three users have rated the most diverse set of movies in terms of genres?,Simple Retrieval Queries,recommendations
+List the top 3 actors who have the most diverse filmography in terms of genres they acted in.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a poster URL containing 'moon'?,Simple Retrieval Queries,recommendations
+Which three directors have directed movies with the most diverse set of languages?,Simple Retrieval Queries,recommendations
+List the first 3 actors who have acted in a superhero movie.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a main actor over the age of 50 at the time of filming?,Simple Retrieval Queries,recommendations
+Which three genres have the lowest average IMDb rating?,Simple Retrieval Queries,recommendations
+List the top 3 movies that have been rated by over 1000 users.,Simple Retrieval Queries,recommendations
+What are the first 3 movies with a plot mentioning 'magic'?,Simple Retrieval Queries,recommendations
+Which three directors have the most movies with a runtime under 80 minutes?,Simple Retrieval Queries,recommendations
+Which movies have a runtime greater than 120 minutes and less than 180 minutes?,Complex Retrieval Queries,recommendations
+List all movies directed by a person born in France.,Complex Retrieval Queries,recommendations
+What are the top 5 highest-grossing movies released after 2010?,Complex Retrieval Queries,recommendations
+Find all actors who acted in a movie that grossed over 500 million dollars.,Complex Retrieval Queries,recommendations
+Which directors have directed more than three movies?,Complex Retrieval Queries,recommendations
+List all movies with an IMDb rating above 8.0 that were released in the 2000s.,Complex Retrieval Queries,recommendations
+Which users have rated more than 50 movies?,Complex Retrieval Queries,recommendations
+Find all movies that have been rated by more than 1000 users.,Complex Retrieval Queries,recommendations
+Which genres are associated with movies that have a budget greater than 100 million dollars?,Complex Retrieval Queries,recommendations
+List all actors born in the USA who have acted in at least two movies.,Complex Retrieval Queries,recommendations
+What are the top 3 movies with the highest IMDb ratings that were released before 1990?,Complex Retrieval Queries,recommendations
+Which movies have been acted in and directed by the same person?,Complex Retrieval Queries,recommendations
+List all genres that have less than 10 movies associated with them.,Complex Retrieval Queries,recommendations
+Find all movies where the main language is English and have a budget over 50 million dollars.,Complex Retrieval Queries,recommendations
+Which users have given a rating of less than 3.0 to any movie?,Complex Retrieval Queries,recommendations
+List the top 5 movies with the most IMDb votes.,Complex Retrieval Queries,recommendations
+Which movies feature both English and Spanish as languages?,Complex Retrieval Queries,recommendations
+Find all directors who were born after 1970.,Complex Retrieval Queries,recommendations
+Which actors have worked in both 'Animation' and 'Adventure' genres?,Complex Retrieval Queries,recommendations
+List all movies that have grossed more than their budget.,Complex Retrieval Queries,recommendations
+What are the top 5 movies with the lowest budgets that have a runtime over 90 minutes?,Complex Retrieval Queries,recommendations
+Find all users who rated a movie on its release date.,Complex Retrieval Queries,recommendations
+Which directors have a biography mentioning 'Academy Award'?,Complex Retrieval Queries,recommendations
+List all movies directed by someone who has also acted in a movie.,Complex Retrieval Queries,recommendations
+What are the top 3 movies with the most diverse set of spoken languages?,Complex Retrieval Queries,recommendations
+Find all actors who have acted in a movie directed by a director born in the same country as them.,Complex Retrieval Queries,recommendations
+Which movies have a plot mentioning 'war'?,Complex Retrieval Queries,recommendations
+List all genres that a specific movie 'Toy Story' belongs to.,Complex Retrieval Queries,recommendations
+Find the top 5 movies by revenue that have a runtime less than 100 minutes.,Complex Retrieval Queries,recommendations
+Which actors have the highest number of movies acted in the database?,Complex Retrieval Queries,recommendations
+List all directors who have directed a movie in the 'Sci-Fi' genre.,Complex Retrieval Queries,recommendations
+What are the top 3 movies with the highest budget to revenue ratio?,Complex Retrieval Queries,recommendations
+Which movies have been rated 5.0 by more than 10 users?,Complex Retrieval Queries,recommendations
+List all movies where the main actor is also the director.,Complex Retrieval Queries,recommendations
+Find all movies with a poster URL that includes 'face' in it.,Complex Retrieval Queries,recommendations
+Which movies have been released on a leap day?,Complex Retrieval Queries,recommendations
+List all actors who have never acted in an 'Action' genre movie.,Complex Retrieval Queries,recommendations
+Which director has the most diverse portfolio of movie genres directed?,Complex Retrieval Queries,recommendations
+What are the top 5 movies with the shortest runtime?,Complex Retrieval Queries,recommendations
+Find all movies that have been rated exactly 5 times.,Complex Retrieval Queries,recommendations
+Which actors have played a role in movies with a budget over 200 million dollars?,Complex Retrieval Queries,recommendations
+List the movies that have been released in more than 5 countries.,Complex Retrieval Queries,recommendations
+Find all directors who have directed a movie that won an Oscar (assuming there's a property or indication about Oscar wins in the database).,Complex Retrieval Queries,recommendations
+List all users who have rated the same movie with different ratings.,Complex Retrieval Queries,recommendations
+What are the top 3 oldest movies in the database?,Complex Retrieval Queries,recommendations
+Find all movies that have been acted in by an actor born before 1950.,Complex Retrieval Queries,recommendations
+Which movies have a plot that includes the word 'love'?,Complex Retrieval Queries,recommendations
+List all movies that have been directed by a person who died before 2000.,Complex Retrieval Queries,recommendations
+What are the top 5 movies by number of languages spoken in them?,Complex Retrieval Queries,recommendations
+Find all users who have rated movies from more than three different genres.,Complex Retrieval Queries,recommendations
+Which actors have a biography mentioning 'Broadway'?,Complex Retrieval Queries,recommendations
+List all movies with a revenue greater than 1 billion dollars.,Complex Retrieval Queries,recommendations
+What are the top 3 movies with the most countries listed in their release?,Complex Retrieval Queries,recommendations
+Find all directors who have directed a movie in their country of birth.,Complex Retrieval Queries,recommendations
+Which movies have actors who have also directed a movie?,Complex Retrieval Queries,recommendations
+List all movies that have an IMDb rating and were released in the year 2000.,Complex Retrieval Queries,recommendations
+Find all movies that feature an actor born in Canada.,Complex Retrieval Queries,recommendations
+Which movies have been rated by users named 'John Smith'?,Complex Retrieval Queries,recommendations
+List all movies where the main language is not English and have a runtime greater than 120 minutes.,Complex Retrieval Queries,recommendations
+Which directors have directed both a comedy and a drama movie?,Complex Retrieval Queries,recommendations
+What are the top 5 movies with the highest IMDb rating that have been directed by the same director?,Complex Retrieval Queries,recommendations
+Find all movies that have a movieId starting with '1' and have been rated by at least one user.,Complex Retrieval Queries,recommendations
+Which actors have acted in movies that have a plot mentioning 'adventure'?,Complex Retrieval Queries,recommendations
+List all movies that have been released on Christmas Day.,Complex Retrieval Queries,recommendations
+Find all movies that have been rated by users born after 1980.,Complex Retrieval Queries,recommendations
+Which movies have posters featuring a blue background (assuming there's a way to determine background color from the poster URL)?,Complex Retrieval Queries,recommendations
+List all movies that have won an award and have been directed by a director born in the UK.,Complex Retrieval Queries,recommendations
+What are the top 3 movies with the longest runtime?,Complex Retrieval Queries,recommendations
+Find all actors who have acted in a movie that has an IMDb rating of 9 or higher.,Complex Retrieval Queries,recommendations
+Which movies have a plot that includes the word 'escape'?,Complex Retrieval Queries,recommendations
+List all genres associated with movies that have a runtime less than 80 minutes.,Complex Retrieval Queries,recommendations
+Find the top 5 movies with the highest revenue that were released in the 1990s.,Complex Retrieval Queries,recommendations
+Which actors have worked in a movie with a director from the same country?,Complex Retrieval Queries,recommendations
+List all movies that have a director who has also acted in a movie.,Complex Retrieval Queries,recommendations
+What are the top 3 movies with the lowest IMDb votes?,Complex Retrieval Queries,recommendations
+Find all movies where the director has directed more than 5 movies.,Complex Retrieval Queries,recommendations
+Which movies have been acted in by more than 10 different actors?,Complex Retrieval Queries,recommendations
+List the top 5 oldest directors in the database.,Complex Retrieval Queries,recommendations
+Find all movies that have a plot mentioning 'hero'.,Complex Retrieval Queries,recommendations
+Which movies have been rated the highest by users who have rated over 100 movies?,Complex Retrieval Queries,recommendations
+List all movies that have a language list including Japanese.,Complex Retrieval Queries,recommendations
+Which directors have directed a movie that has been rated below 3.0?,Complex Retrieval Queries,recommendations
+List all actors who have a poster URL that includes 'smile' in it.,Complex Retrieval Queries,recommendations
+What are the top 3 movies with the highest number of countries involved in their production?,Complex Retrieval Queries,recommendations
+Find all directors who have directed a movie in a language other than English.,Complex Retrieval Queries,recommendations
+Which actors have the longest bio in the database?,Complex Retrieval Queries,recommendations
+List all movies that have been rated by at least 5 different users.,Complex Retrieval Queries,recommendations
+Find all movies with an IMDb rating less than 5 that have been directed by a director born in the USA.,Complex Retrieval Queries,recommendations
+Which movies have a plot that includes the word 'monster'?,Complex Retrieval Queries,recommendations
+List all movies that have been acted in by an actor who has also directed a movie.,Complex Retrieval Queries,recommendations
+What are the top 5 movies with the most detailed plots (assuming plot length can be measured)?,Complex Retrieval Queries,recommendations
+Find all actors who have acted in movies that have been released on New Year's Day.,Complex Retrieval Queries,recommendations
+Which movies have been directed by directors who have also acted in movies?,Complex Retrieval Queries,recommendations
+List all movies that have a revenue greater than 100 million dollars and have been rated by more than 500 users.,Complex Retrieval Queries,recommendations
+What are the top 5 movies by revenue?,Simple Aggregation Queries,recommendations
+List the first 3 actors born in France.,Simple Aggregation Queries,recommendations
+Which 5 movies have the highest imdbRating?,Simple Aggregation Queries,recommendations
+Which 3 users have rated the most movies?,Simple Aggregation Queries,recommendations
+What are the top 5 longest movies by runtime?,Simple Aggregation Queries,recommendations
+List the first 3 directors born in the USA.,Simple Aggregation Queries,recommendations
+Which movies released after 2010 have a budget over 100 million? Limit to 5 movies.,Simple Aggregation Queries,recommendations
+What are the top 3 genres by number of movies?,Simple Aggregation Queries,recommendations
+List 5 actors who have acted in more than 10 movies.,Simple Aggregation Queries,recommendations
+Which 3 movies have been rated by the most users?,Simple Aggregation Queries,recommendations
+What are the top 5 movies with the most languages spoken?,Simple Aggregation Queries,recommendations
+List the first 3 directors who have also acted in movies.,Simple Aggregation Queries,recommendations
+Which movies have a revenue to budget ratio greater than 2? Limit to 5 movies.,Simple Aggregation Queries,recommendations
+What are the first 3 recent movies directed by directors born after 1970?,Simple Aggregation Queries,recommendations
+List 5 movies that have both English and French as languages.,Simple Aggregation Queries,recommendations
+Which 3 users have the highest average movie rating?,Simple Aggregation Queries,recommendations
+List the top 5 movies with the lowest imdbVotes.,Simple Aggregation Queries,recommendations
+What are the first 3 movies directed by a person born in France?,Simple Aggregation Queries,recommendations
+Which actors have a poster URL on IMDb? Limit to 5 actors.,Simple Aggregation Queries,recommendations
+What are the first 3 movies with a plot containing the word 'friendship'?,Simple Aggregation Queries,recommendations
+Which 5 directors have directed the most movies with budgets over 50 million?,Simple Aggregation Queries,recommendations
+List the first 3 actors who have acted in a movie released before 1950.,Simple Aggregation Queries,recommendations
+What are the top 5 movies with the highest number of countries involved?,Simple Aggregation Queries,recommendations
+List the first 3 users who rated a movie on its release day.,Simple Aggregation Queries,recommendations
+Which 5 movies have the most detailed (longest) plots?,Simple Aggregation Queries,recommendations
+What are the first 3 movies where a director has also acted?,Simple Aggregation Queries,recommendations
+Which actors have directed a movie they acted in? Limit to 5 actors.,Simple Aggregation Queries,recommendations
+List the top 5 highest-grossing movies of 2014.,Simple Aggregation Queries,recommendations
+What are the first 3 movies with an imdbRating greater than 8.5?,Simple Aggregation Queries,recommendations
+Which 5 directors have the longest bios on their profile?,Simple Aggregation Queries,recommendations
+List the first 3 movies with the highest budget to revenue ratio.,Simple Aggregation Queries,recommendations
+Which 5 movies have the most actors involved?,Simple Aggregation Queries,recommendations
+List the top 5 directors by number of movies directed in the 1990s.,Simple Aggregation Queries,recommendations
+What are the first 3 movies with a runtime less than 90 minutes and an imdbRating over 7?,Simple Aggregation Queries,recommendations
+Which 5 movies have been rated exactly 5 times by users?,Simple Aggregation Queries,recommendations
+List the first 3 movies that have been directed by more than one director.,Simple Aggregation Queries,recommendations
+What are the first 3 movies with a poster URL from tmdb?,Simple Aggregation Queries,recommendations
+Which 5 users have rated movies in the most diverse set of genres?,Simple Aggregation Queries,recommendations
+List the top 5 actors by number of different genres they've acted in.,Simple Aggregation Queries,recommendations
+What are the first 3 most recently released movies with a revenue under 10 million?,Simple Aggregation Queries,recommendations
+Which 5 movies have the highest average user rating? Limit to movies rated by at least 10 users.,Simple Aggregation Queries,recommendations
+List the first 3 directors who died after 2000.,Simple Aggregation Queries,recommendations
+What are the top 5 movies that have the most votes on IMDb?,Simple Aggregation Queries,recommendations
+List the top 5 movies that have been rated the lowest by users.,Simple Aggregation Queries,recommendations
+Which 3 directors were born in the same country they directed their first movie?,Simple Aggregation Queries,recommendations
+List the first 3 movies with exactly three languages spoken.,Simple Aggregation Queries,recommendations
+What are the top 5 movies with the longest plots?,Simple Aggregation Queries,recommendations
+List the first 3 actors who have a tmdbId but no imdbId.,Simple Aggregation Queries,recommendations
+Which 5 directors have directed movies in more than 5 different languages?,Simple Aggregation Queries,recommendations
+List the first 3 movies where the main genre is 'Adventure'.,Simple Aggregation Queries,recommendations
+What are the top 5 oldest movies in the database by release year?,Simple Aggregation Queries,recommendations
+List the first 3 directors who have directed a movie without having a bio on their profile.,Simple Aggregation Queries,recommendations
+Which 5 actors have the most roles listed as uncredited?,Simple Aggregation Queries,recommendations
+List the top 5 most reviewed movies on IMDb.,Simple Aggregation Queries,recommendations
+What are the first 3 movies directed by a director born in Nebraska?,Simple Aggregation Queries,recommendations
+Which 5 directors have directed the same movie?,Simple Aggregation Queries,recommendations
+List the first 3 actors who acted in a movie without having a born date listed.,Simple Aggregation Queries,recommendations
+What are the top 5 movies with the smallest gap between release and rating date?,Simple Aggregation Queries,recommendations
+List the first 3 users who rated a movie with a budget over 200 million.,Simple Aggregation Queries,recommendations
+Which 5 movies had their entire plot translated into more than one language?,Simple Aggregation Queries,recommendations
+List the first 3 movies with a poster URL on tmdb but not on IMDb.,Simple Aggregation Queries,recommendations
+What are the top 5 movies with the most genres associated?,Simple Aggregation Queries,recommendations
+List the first 3 directors who have a born date but no died date.,Simple Aggregation Queries,recommendations
+Which 5 movies have been directed by a person who also acted in them?,Simple Aggregation Queries,recommendations
+List the top 5 movies by number of actors born in the USA who acted in them.,Simple Aggregation Queries,recommendations
+What are the first 3 movies with a director who has a bio longer than 500 words?,Simple Aggregation Queries,recommendations
+Which 5 movies have the most diverse cast in terms of countries of origin?,Simple Aggregation Queries,recommendations
+List the first 3 directors who have directed a movie with a runtime over 180 minutes.,Simple Aggregation Queries,recommendations
+What are the top 5 movies with the most detailed biographies of their directors?,Simple Aggregation Queries,recommendations
+List the first 3 movies with an imdbId that starts with '07'.,Simple Aggregation Queries,recommendations
+Which 5 directors have the most distinct movies directed?,Simple Aggregation Queries,recommendations
+List the top 5 actors by number of movies they've acted in with a budget over 100 million.,Simple Aggregation Queries,recommendations
+What are the first 3 movies with the highest number of languages available?,Simple Aggregation Queries,recommendations
+Which 5 movies have the most distinct posters on IMDb?,Simple Aggregation Queries,recommendations
+List the first 3 movies released in the year 2000 or later with a rating under 5.,Simple Aggregation Queries,recommendations
+What are the top 5 movies with the highest revenue in the Adventure genre?,Simple Aggregation Queries,recommendations
+List the first 3 actors who have died after 2000.,Simple Aggregation Queries,recommendations
+Which 5 directors have directed movies with the highest average imdbRating?,Simple Aggregation Queries,recommendations
+List the first 3 movies with the most different directors involved.,Simple Aggregation Queries,recommendations
+What are the top 5 movies with the most user ratings received in their first year of release?,Simple Aggregation Queries,recommendations
+List the first 3 movies where the main actor is also the director.,Simple Aggregation Queries,recommendations
+Which 5 movies have the most quotes listed in their plots?,Simple Aggregation Queries,recommendations
+List the top 5 actors by number of movies they've acted in that have been released on Christmas Day.,Simple Aggregation Queries,recommendations
+What are the first 3 movies with a plot containing the word 'evil'?,Simple Aggregation Queries,recommendations
+Which 5 directors have the longest cumulative runtime of all movies they've directed?,Simple Aggregation Queries,recommendations
+Which movies have a runtime greater than 120 minutes and were released after 2010?,Pathfinding Queries,recommendations
+List all movies directed by a person born in France.,Pathfinding Queries,recommendations
+What are the top 5 highest-grossing movies of the 1990s?,Pathfinding Queries,recommendations
+Find all actors who have acted in more than one movie with an IMDb rating over 7.,Pathfinding Queries,recommendations
+Which directors have directed at least three movies with budgets over 100 million dollars?,Pathfinding Queries,recommendations
+List the top 3 movies with the most IMDb votes released before 2000.,Pathfinding Queries,recommendations
+What are the genres of movies that have generated over 500 million dollars in revenue?,Pathfinding Queries,recommendations
+Identify movies that have been rated by more than 1000 users.,Pathfinding Queries,recommendations
+Which movies have actors who were born in the USA and have acted in a comedy genre?,Pathfinding Queries,recommendations
+List all the directors who have both directed and acted in the same movie.,Pathfinding Queries,recommendations
+Find movies where the plot includes the word 'love' and were released on Valentine's Day.,Pathfinding Queries,recommendations
+Which movies have a poster URL that contains 'face' and an IMDb rating above 8?,Pathfinding Queries,recommendations
+List all genres associated with movies that have a budget less than 5 million dollars.,Pathfinding Queries,recommendations
+What are the top 5 movies by revenue that contain the word 'war' in their title?,Pathfinding Queries,recommendations
+Identify all actors who have played roles in movies directed by directors born in Nebraska.,Pathfinding Queries,recommendations
+Which movies have been rated exactly 5 stars by at least one user?,Pathfinding Queries,recommendations
+List the movies that have been released in at least three different languages.,Pathfinding Queries,recommendations
+What are the movies with a budget over 200 million dollars and a revenue under 500 million dollars?,Pathfinding Queries,recommendations
+Identify directors who have never directed a movie rated under 6 on IMDb.,Pathfinding Queries,recommendations
+Which actors have acted in movies that were released on their birthday?,Pathfinding Queries,recommendations
+Find the top 3 movies with the shortest runtime and a revenue over 100 million dollars.,Pathfinding Queries,recommendations
+List all movies that have more than one genre associated with them.,Pathfinding Queries,recommendations
+What are the top 5 movies with the lowest IMDb ratings but highest revenues?,Pathfinding Queries,recommendations
+Identify movies that have been released in both English and French.,Pathfinding Queries,recommendations
+Which directors have the most movies with an IMDb rating over 8?,Pathfinding Queries,recommendations
+List all users who have rated more than 50 movies.,Pathfinding Queries,recommendations
+What are the top 3 most popular movies among users named 'John'?,Pathfinding Queries,recommendations
+"Identify movies with more than 10,000 IMDb votes and a runtime under 90 minutes.",Pathfinding Queries,recommendations
+Which actors have acted in movies that grossed over 1 billion dollars?,Pathfinding Queries,recommendations
+List all movies that have been rated by both male and female users.,Pathfinding Queries,recommendations
+What are the movies that have a plot containing the word 'zombie' with an IMDb rating over 7?,Pathfinding Queries,recommendations
+Identify directors who directed a movie in the year they were born.,Pathfinding Queries,recommendations
+Which movies have actors with a bio that includes 'Wikipedia' and a revenue over 300 million dollars?,Pathfinding Queries,recommendations
+List the movies where the plot mentions 'friendship' and the budget was under 20 million dollars.,Pathfinding Queries,recommendations
+What are the top 5 highest-rated movies by users from the USA?,Pathfinding Queries,recommendations
+Identify movies released in 'December' that have a genre of 'Horror'.,Pathfinding Queries,recommendations
+Which directors have directed movies in more than three different languages?,Pathfinding Queries,recommendations
+List all movies with a title that starts with 'The' and have a poster URL ending with 'jpg'.,Pathfinding Queries,recommendations
+What are the genres associated with movies that have an IMDb rating exactly 6.5?,Pathfinding Queries,recommendations
+Identify all movies that have been directed by actors.,Pathfinding Queries,recommendations
+Which movies have a director who was born after 1960 and have generated over 100 million in revenue?,Pathfinding Queries,recommendations
+List the top 3 movies with the highest budgets that were released in the 2000s.,Pathfinding Queries,recommendations
+What are the top 5 movies with the most revenue that are in the 'Sci-Fi' genre?,Pathfinding Queries,recommendations
+Identify movies that have languages lists containing more than 5 languages.,Pathfinding Queries,recommendations
+Which directors have directed movies with a plot mentioning 'evil'?,Pathfinding Queries,recommendations
+List all actors who have acted in movies with at least two different directors.,Pathfinding Queries,recommendations
+What are the top 3 movies with a revenue of exactly 50 million dollars?,Pathfinding Queries,recommendations
+Identify movies that have been rated 10 times or more with a rating above 8.,Pathfinding Queries,recommendations
+Which movies have actors who were born in Canada and have acted in a thriller genre?,Pathfinding Queries,recommendations
+What are the top 5 movies with the highest imdbRating?,Complex Aggregation Queries,recommendations
+Which 3 actors have acted in the most number of movies?,Complex Aggregation Queries,recommendations
+List the top 5 directors by the number of movies they have directed.,Complex Aggregation Queries,recommendations
+What are the top 3 highest-grossing movies of all time?,Complex Aggregation Queries,recommendations
+Which 3 movies have the longest runtime?,Complex Aggregation Queries,recommendations
+List the top 5 movies with the largest budgets released before 2000.,Complex Aggregation Queries,recommendations
+Which 3 genres contain the most movies?,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the most languages available?,Complex Aggregation Queries,recommendations
+Which 3 users have rated the most number of movies?,Complex Aggregation Queries,recommendations
+List the top 5 movies with the highest number of imdbVotes.,Complex Aggregation Queries,recommendations
+Which 3 actors were born in France and acted in more than one movie?,Complex Aggregation Queries,recommendations
+What are the top 5 movies released in the 1990s by revenue?,Complex Aggregation Queries,recommendations
+Which 3 directors have directed movies with an imdbRating greater than 8.0?,Complex Aggregation Queries,recommendations
+List the top 5 movies with the most countries available in their languages list.,Complex Aggregation Queries,recommendations
+Which 3 actors have acted in movies and also directed movies?,Complex Aggregation Queries,recommendations
+What are the top 5 oldest movies in the database by release year?,Complex Aggregation Queries,recommendations
+Which 3 genres are most common among movies with a budget over 100 million USD?,Complex Aggregation Queries,recommendations
+List the top 5 movies with the smallest budgets that have an imdbRating over 7.0.,Complex Aggregation Queries,recommendations
+Which 3 users have rated movies released before the year 2000?,Complex Aggregation Queries,recommendations
+What are the top 5 most recent movies in the database and their genres?,Complex Aggregation Queries,recommendations
+Which 3 directors died after 2000 and directed more than two movies?,Complex Aggregation Queries,recommendations
+List the top 5 movies with a plot containing the word 'adventure'.,Complex Aggregation Queries,recommendations
+Which 3 actors have the highest average imdbRating for movies they acted in?,Complex Aggregation Queries,recommendations
+What are the top 5 movies with runtime less than 90 minutes and imdbRating above 8.0?,Complex Aggregation Queries,recommendations
+Which 3 genres have the fewest movies associated with them in the database?,Complex Aggregation Queries,recommendations
+List the top 5 movies that have been rated by the highest number of different users.,Complex Aggregation Queries,recommendations
+Which 3 actors have a poster listed and acted in at least two movies?,Complex Aggregation Queries,recommendations
+What are the top 5 movies directed by directors born in the USA?,Complex Aggregation Queries,recommendations
+Which 3 movies have the most diverse set of genres associated with them?,Complex Aggregation Queries,recommendations
+List the top 5 movies that have generated revenue more than 500 million USD.,Complex Aggregation Queries,recommendations
+Which 3 users have the highest average rating given to movies?,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the most actors involved?,Complex Aggregation Queries,recommendations
+Which 3 directors have the longest total runtime for all their directed movies?,Complex Aggregation Queries,recommendations
+List the top 5 movies that were released in languages other than English and have an imdbRating above 7.0.,Complex Aggregation Queries,recommendations
+Which 3 actors are born on or before 1900 and have acted in at least one movie?,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the most budget and were released after 2010?,Complex Aggregation Queries,recommendations
+Which 3 genres have movies with an average imdbRating above 7.5?,Complex Aggregation Queries,recommendations
+List the top 5 movies that have a plot description longer than 100 words.,Complex Aggregation Queries,recommendations
+Which 3 directors have directed movies in more than three different genres?,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the highest number of countries represented in their languages list?,Complex Aggregation Queries,recommendations
+Which 3 actors have the lowest average imdbRating for movies they acted in and acted in more than three movies?,Complex Aggregation Queries,recommendations
+List the top 5 movies with an imdbRating below 5.0 and a budget exceeding 50 million USD.,Complex Aggregation Queries,recommendations
+Which 3 users have rated the same movie with different ratings?,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the most genres associated with them?,Complex Aggregation Queries,recommendations
+Which 3 directors have the most distinct actors worked with across all movies directed?,Complex Aggregation Queries,recommendations
+List the top 5 movies where actors also served as directors.,Complex Aggregation Queries,recommendations
+Which 3 movies have the highest revenue to budget ratio?,Complex Aggregation Queries,recommendations
+What are the top 5 movies by revenue that were released in languages other than English?,Complex Aggregation Queries,recommendations
+Which 3 actors have the most distinct genres of movies they've acted in?,Complex Aggregation Queries,recommendations
+List the top 5 oldest directors based on their birth year who have directed at least one movie.,Complex Aggregation Queries,recommendations
+Which 3 genres are most common in movies with a runtime over 120 minutes?,Complex Aggregation Queries,recommendations
+What are the top 5 movies with a single-country language setting and the highest imdbRating?,Complex Aggregation Queries,recommendations
+Which 3 actors have died and acted in more than two movies?,Complex Aggregation Queries,recommendations
+List the top 5 movies with the most distinct directors involved.,Complex Aggregation Queries,recommendations
+Which 3 movies released in the last 5 years of the database have the highest imdbVotes?,Complex Aggregation Queries,recommendations
+What are the top 5 movies that were directed by persons who were not primarily directors?,Complex Aggregation Queries,recommendations
+Which 3 users have rated movies with an average rating below 3.0?,Complex Aggregation Queries,recommendations
+List the top 5 movies that have the word 'love' in their plot description.,Complex Aggregation Queries,recommendations
+Which 3 directors have directed the most movies with a budget over 200 million USD?,Complex Aggregation Queries,recommendations
+What are the top 5 movies with the most languages and at least one genre being 'Action'?,Complex Aggregation Queries,recommendations
+Which 3 actors have the highest total imdbVotes for all movies they acted in?,Complex Aggregation Queries,recommendations
+List the top 5 shortest movies with an imdbRating above 6.0.,Complex Aggregation Queries,recommendations
+Which 3 users have rated the most movies with an imdbRating below 5.0?,Complex Aggregation Queries,recommendations
+Which top 5 movies have a runtime longer than 150 minutes?,Verbose query,recommendations
+List the top 3 directors born in the USA.,Verbose query,recommendations
+What are the first 3 movies released after 2010 with a budget over 100 million USD?,Verbose query,recommendations
+Name the top 5 highest-grossing movies.,Verbose query,recommendations
+Which 3 users have rated the most movies?,Verbose query,recommendations
+List the top 5 actors who have acted in more than 10 movies.,Verbose query,recommendations
+What are the top 3 genres by the number of movies?,Verbose query,recommendations
+"Which top 5 movies have been rated by more than 500,000 users?",Verbose query,recommendations
+List the first 3 movies directed by a director born in France.,Verbose query,recommendations
+What are the top 5 movies with an IMDb rating above 8?,Verbose query,recommendations
+Which 3 actors have played in both comedy and drama genres?,Verbose query,recommendations
+List the first 3 movies that have both English and French languages.,Verbose query,recommendations
+Which top 5 directors have the highest number of directed movies?,Verbose query,recommendations
+What are the first 3 movies with a revenue to budget ratio greater than 5?,Verbose query,recommendations
+List the top 5 movies that were released in the '90s.,Verbose query,recommendations
+Which 3 actors were born after 1980 and have acted in more than 5 movies?,Verbose query,recommendations
+List the first 3 users who have an average rating less than 3.,Verbose query,recommendations
+What are the top 5 genres in which movies have the highest average IMDb rating?,Verbose query,recommendations
+Which top 5 movies have the most diverse range of spoken languages?,Verbose query,recommendations
+List the first 3 directors who have also acted in a movie.,Verbose query,recommendations
+What are the top 5 movies with IMDb votes greater than 100000?,Verbose query,recommendations
+Which 3 users have the highest average movie rating with at least 20 rated movies?,Verbose query,recommendations
+List the first 3 movies that have been rated exactly by 3 different users.,Verbose query,recommendations
+What are the top 5 longest movies that have been released after 2000?,Verbose query,recommendations
+Which 3 directors have directed movies in more than three genres?,Verbose query,recommendations
+List the first 3 actors who have acted in movies with a revenue of over 500 million USD.,Verbose query,recommendations
+What are the top 5 movies that have been directed by directors born in Nebraska?,Verbose query,recommendations
+Which 3 movies have the highest number of actors involved?,Verbose query,recommendations
+List the first 3 genres that have more than 50 movies associated with them.,Verbose query,recommendations
+What are the top 5 movies with the lowest IMDb rating but highest revenue?,Verbose query,recommendations
+Which 3 actors have acted in both a highest and lowest grossing movie?,Verbose query,recommendations
+List the first 3 movies where the main language is not English but have an IMDb rating over 7.,Verbose query,recommendations
+What are the top 5 movies released in the last 5 years?,Verbose query,recommendations
+Which 3 directors have the most movies with a runtime over 180 minutes?,Verbose query,recommendations
+List the first 3 movies with the most diverse country production origins.,Verbose query,recommendations
+What are the top 5 movies with a budget less than 10 million USD but revenue over 100 million USD?,Verbose query,recommendations
+Which 3 actors were born in France and have acted in more than 20 movies?,Verbose query,recommendations
+List the first 3 movies with plots containing the word 'adventure'.,Verbose query,recommendations
+What are the top 5 oldest movies in the database?,Verbose query,recommendations
+Which 3 movies have the highest budget to revenue ratio?,Verbose query,recommendations
+List the first 3 directors who have directed both a comedy and a drama.,Verbose query,recommendations
+What are the top 5 movies with the most number of genres associated?,Verbose query,recommendations
+Which 3 users have rated both the oldest and the newest movies in the database?,Verbose query,recommendations
+List the first 3 actors who have acted in a movie without a poster link.,Verbose query,recommendations
+What are the top 5 movies with the most detailed biographies of their directors?,Verbose query,recommendations
+Which 3 movies have been rated exactly 5 times?,Verbose query,recommendations
+List the first 3 movies that have been directed by actors.,Verbose query,recommendations
+What are the top 5 directors who have directed the most movies with a runtime under 90 minutes?,Verbose query,recommendations
+Which 3 actors have a bio longer than 1000 characters and have acted in more than 5 movies?,Verbose query,recommendations
+List the first 3 genres with movies having an average IMDb rating under 5.,Verbose query,recommendations
+What are the first 5 questions tagged with 'aws-lambda'?,Simple Retrieval Queries,buzzoverflow
+List the top 3 users by reputation who have asked a question about 'graphql'.,Simple Retrieval Queries,buzzoverflow
+Which questions have more than 5 favorites?,Simple Retrieval Queries,buzzoverflow
+Find all questions asked before June 2020.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 most upvoted questions?,Simple Retrieval Queries,buzzoverflow
+List all questions with a negative score.,Simple Retrieval Queries,buzzoverflow
+Which users have asked more than 3 questions?,Simple Retrieval Queries,buzzoverflow
+What are the titles of questions that have been answered?,Simple Retrieval Queries,buzzoverflow
+List the top 5 questions with the most downVotes.,Simple Retrieval Queries,buzzoverflow
+Which questions were created on '2020-06-05'?,Simple Retrieval Queries,buzzoverflow
+What are the names of tags associated with questions asked by the user with id 10251021?,Simple Retrieval Queries,buzzoverflow
+Show the top 3 users who have asked the most questions about 'apollo'.,Simple Retrieval Queries,buzzoverflow
+Which questions have been both upvoted and downvoted?,Simple Retrieval Queries,buzzoverflow
+List the questions that have no upVotes and no downVotes.,Simple Retrieval Queries,buzzoverflow
+What are the links to the user profiles of the top 3 most active users in asking questions?,Simple Retrieval Queries,buzzoverflow
+How many questions have been tagged with 'react-apollo'?,Simple Retrieval Queries,buzzoverflow
+Identify the first 3 questions that have been flagged as answered and have at least 1 favorite.,Simple Retrieval Queries,buzzoverflow
+What are the titles of questions created in February 2020?,Simple Retrieval Queries,buzzoverflow
+Which users have never received a downvote on their questions?,Simple Retrieval Queries,buzzoverflow
+List the 3 most recent questions by creation date.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 tags used in questions with a score less than zero?,Simple Retrieval Queries,buzzoverflow
+Find all users who asked a question with the word 'error' in the text.,Simple Retrieval Queries,buzzoverflow
+Which questions have a title containing 'not loading'?,Simple Retrieval Queries,buzzoverflow
+List the top 3 oldest questions in the database.,Simple Retrieval Queries,buzzoverflow
+What is the highest reputation of a user who has asked a question tagged with 'node.js'?,Simple Retrieval Queries,buzzoverflow
+Find questions asked by users with a reputation over 100000.,Simple Retrieval Queries,buzzoverflow
+Which questions have a link containing 'stackoverflow.com/questions'?,Simple Retrieval Queries,buzzoverflow
+Show the first 5 questions that were asked and have a score of zero.,Simple Retrieval Queries,buzzoverflow
+What are the first 3 questions tagged with 'apollo' that have been answered?,Simple Retrieval Queries,buzzoverflow
+List the questions that have a createdAt date on or after '2020-06-05' and a score greater than zero.,Simple Retrieval Queries,buzzoverflow
+Which users have asked a question with a title containing 'GraphQL'?,Simple Retrieval Queries,buzzoverflow
+Show the questions that have been tagged with 'apollo-server-lambda'.,Simple Retrieval Queries,buzzoverflow
+What are the titles of the first 3 questions with the highest number of favorites?,Simple Retrieval Queries,buzzoverflow
+List the questions tagged with 'graphql' that have been answered.,Simple Retrieval Queries,buzzoverflow
+What are the user ids of those who have asked a question tagged with 'aws-lambda'?,Simple Retrieval Queries,buzzoverflow
+Find the top 5 questions with the least favorites.,Simple Retrieval Queries,buzzoverflow
+Which questions have a text length greater than 500 characters?,Simple Retrieval Queries,buzzoverflow
+List the questions asked by the user with the highest reputation.,Simple Retrieval Queries,buzzoverflow
+What are the titles of the first 3 questions asked in the year 2020?,Simple Retrieval Queries,buzzoverflow
+Which tags are associated with questions that have more than 2 downVotes?,Simple Retrieval Queries,buzzoverflow
+Show the user profile links for users who have asked questions tagged with 'apollo'.,Simple Retrieval Queries,buzzoverflow
+Find the first 3 questions with exactly 1 upVote.,Simple Retrieval Queries,buzzoverflow
+What are the titles of questions where the user has a reputation less than 5000?,Simple Retrieval Queries,buzzoverflow
+List the tags associated with questions that have a score of less than -1.,Simple Retrieval Queries,buzzoverflow
+Which users have asked questions with a createdAt date in June 2020?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions with a downVotes count of 1.,Simple Retrieval Queries,buzzoverflow
+What are the titles of questions that have been asked by users with an image link?,Simple Retrieval Queries,buzzoverflow
+List the first 3 questions from users who have a link in their profile.,Simple Retrieval Queries,buzzoverflow
+Which questions were asked by users who have a reputation of exactly 420137?,Simple Retrieval Queries,buzzoverflow
+Identify the first 5 questions tagged with 'react-apollo' and have upVotes.,Simple Retrieval Queries,buzzoverflow
+List the questions that have been downvoted and contain the word 'internal' in the text.,Simple Retrieval Queries,buzzoverflow
+What are the titles of the first 3 questions with an id over 60000000?,Simple Retrieval Queries,buzzoverflow
+Find all users who have asked questions tagged with 'aws-lambda' and have a reputation over 10000.,Simple Retrieval Queries,buzzoverflow
+Which questions have been both answered and have a favorites count greater than 3?,Simple Retrieval Queries,buzzoverflow
+List the first 3 questions asked by users with a reputation less than 1000.,Simple Retrieval Queries,buzzoverflow
+What are the tags associated with questions asked by users with no image in their profile?,Simple Retrieval Queries,buzzoverflow
+Show the questions that have a text containing 'schema'.,Simple Retrieval Queries,buzzoverflow
+What are the titles of questions where the user's display name is 'Alexandre'?,Simple Retrieval Queries,buzzoverflow
+List the questions with a downVotes count greater than their upVotes count.,Simple Retrieval Queries,buzzoverflow
+Which questions have a createdAt date in 2020 and a favorites count of zero?,Simple Retrieval Queries,buzzoverflow
+Show the first 5 questions asked by users who have an id less than 1000000.,Simple Retrieval Queries,buzzoverflow
+What are the titles of the first 3 questions with a score equal to zero?,Simple Retrieval Queries,buzzoverflow
+List the tags associated with questions that have a createdAt date on '2020-06-05'.,Simple Retrieval Queries,buzzoverflow
+Which users have asked questions with a title containing 'apollo-server'?,Simple Retrieval Queries,buzzoverflow
+Show the questions that have been tagged with 'mongodb'.,Simple Retrieval Queries,buzzoverflow
+What are the titles of the first 3 questions asked by users with a reputation over 300000?,Simple Retrieval Queries,buzzoverflow
+List the questions asked by users with a display name containing 'Le'.,Simple Retrieval Queries,buzzoverflow
+Which questions have a link that includes 'mongodb.net'?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions with the most upVotes and answered status.,Simple Retrieval Queries,buzzoverflow
+What are the tags associated with questions that have a score of zero?,Simple Retrieval Queries,buzzoverflow
+Find all users who asked a question with a title including 'loading'.,Simple Retrieval Queries,buzzoverflow
+Which questions have an createdAt date exactly on '2020-06-05T21:49:16Z'?,Simple Retrieval Queries,buzzoverflow
+List the first 3 questions that have a text containing 'expected behavior'.,Simple Retrieval Queries,buzzoverflow
+What are the titles of questions created in the month of August 2019?,Simple Retrieval Queries,buzzoverflow
+Show the user profile links for users who have asked questions with a title including 'error'.,Simple Retrieval Queries,buzzoverflow
+Find the top 5 questions with a createdAt date in 2020.,Simple Retrieval Queries,buzzoverflow
+Which questions have been tagged with 'apollo' and have a score greater than 1?,Simple Retrieval Queries,buzzoverflow
+List the questions that have a createdAt date in 2019 and have been answered.,Simple Retrieval Queries,buzzoverflow
+What are the user ids of those who have asked a question with a score less than -1?,Simple Retrieval Queries,buzzoverflow
+Show the questions that have been tagged with 'nuxt.js'.,Simple Retrieval Queries,buzzoverflow
+What are the titles of the first 3 questions with a createdAt date in June 2020?,Simple Retrieval Queries,buzzoverflow
+List the tags associated with questions that have a createdAt date in 2020.,Simple Retrieval Queries,buzzoverflow
+Which users have asked questions with a title containing 'playground'?,Simple Retrieval Queries,buzzoverflow
+Show the questions that have been tagged with 'mongoose'.,Simple Retrieval Queries,buzzoverflow
+What are the titles of the first 3 questions with a score of -1?,Simple Retrieval Queries,buzzoverflow
+List the questions asked by users with a reputation of exactly 420137.,Simple Retrieval Queries,buzzoverflow
+Which questions have a text containing 'deployment'?,Simple Retrieval Queries,buzzoverflow
+Show the first 3 questions with a downVotes count of zero.,Simple Retrieval Queries,buzzoverflow
+What are the titles of questions where the user has an image link ending with '.com'?,Simple Retrieval Queries,buzzoverflow
+List the first 3 questions from users who have a reputation over 100000.,Simple Retrieval Queries,buzzoverflow
+Which questions were asked by users who have a reputation of exactly 1?,Simple Retrieval Queries,buzzoverflow
+Identify the first 5 questions tagged with 'apollo' and have downVotes.,Simple Retrieval Queries,buzzoverflow
+List the questions that have been both tagged with 'graphql' and have a score greater than zero.,Simple Retrieval Queries,buzzoverflow
+What are the user ids of those who have asked a question with a favorites count of zero?,Simple Retrieval Queries,buzzoverflow
+Show the questions that have been tagged with 'aws'.,Simple Retrieval Queries,buzzoverflow
+What are the top 5 most recent questions asked on the platform?,Complex Retrieval Queries,buzzoverflow
+Which users have asked more than 3 questions? List the first 5.,Complex Retrieval Queries,buzzoverflow
+What are the top 3 questions with the highest number of upVotes?,Complex Retrieval Queries,buzzoverflow
+Find the top 5 questions that have been marked as answered.,Complex Retrieval Queries,buzzoverflow
+Who are the top 3 users with the highest reputation that have asked a question?,Complex Retrieval Queries,buzzoverflow
+List the first 5 questions that have at least 1 downVote.,Complex Retrieval Queries,buzzoverflow
+What are the top 3 tags associated with the most favorited questions?,Complex Retrieval Queries,buzzoverflow
+Which user asked the question with the highest score?,Complex Retrieval Queries,buzzoverflow
+List the top 5 questions tagged with 'graphql'.,Complex Retrieval Queries,buzzoverflow
+Who are the top 3 users based on reputation who have asked a question about 'aws-lambda'?,Complex Retrieval Queries,buzzoverflow
+What are the first 5 most recent questions asked by users with a reputation greater than 2000?,Complex Retrieval Queries,buzzoverflow
+List the top 3 questions that have not been answered yet.,Complex Retrieval Queries,buzzoverflow
+Which tags are associated with questions that have more than 2 upVotes? List the first 5 tags.,Complex Retrieval Queries,buzzoverflow
+Who asked the first question ever recorded in the system?,Complex Retrieval Queries,buzzoverflow
+List the top 5 questions that have a negative score.,Complex Retrieval Queries,buzzoverflow
+Which users have asked questions that were tagged with 'node.js'? List the first 3.,Complex Retrieval Queries,buzzoverflow
+What are the top 3 questions with the most favorites?,Complex Retrieval Queries,buzzoverflow
+Which user has the most questions linked to their profile?,Complex Retrieval Queries,buzzoverflow
+List the first 5 tags that appear in more than one question.,Complex Retrieval Queries,buzzoverflow
+Find the top 3 users who asked questions that were not favorited.,Complex Retrieval Queries,buzzoverflow
+What are the first 5 questions that have received more downVotes than upVotes?,Complex Retrieval Queries,buzzoverflow
+Who is the user with the lowest reputation to ask a question?,Complex Retrieval Queries,buzzoverflow
+List the first 5 questions that were created in the year 2020.,Complex Retrieval Queries,buzzoverflow
+Which tags are associated with the longest question texts? List the top 3.,Complex Retrieval Queries,buzzoverflow
+What are the top 3 questions with the shortest titles?,Complex Retrieval Queries,buzzoverflow
+Who are the first 3 users to ask a question in the year 2019?,Complex Retrieval Queries,buzzoverflow
+List the top 5 questions that have more than 5 downVotes.,Complex Retrieval Queries,buzzoverflow
+Which user has the highest number of answered questions linked to their profile?,Complex Retrieval Queries,buzzoverflow
+List the top 3 tags that are associated with questions created before 2018.,Complex Retrieval Queries,buzzoverflow
+What are the first 5 questions asked by users with an image URL containing 'googleusercontent'?,Complex Retrieval Queries,buzzoverflow
+Which users have asked questions that have exactly 0 favorites? List the first 3.,Complex Retrieval Queries,buzzoverflow
+Find the top 3 questions that were asked on a weekend.,Complex Retrieval Queries,buzzoverflow
+What are the top 5 oldest questions in the database?,Complex Retrieval Queries,buzzoverflow
+Which user with a reputation over 1000 has asked the most questions?,Complex Retrieval Queries,buzzoverflow
+List the first 5 questions that have exactly 2 upVotes.,Complex Retrieval Queries,buzzoverflow
+What are the top 3 questions tagged with 'react-apollo'?,Complex Retrieval Queries,buzzoverflow
+Who asked the question with the most recent creation date?,Complex Retrieval Queries,buzzoverflow
+List the first 5 users who have asked a question and have a reputation less than 500.,Complex Retrieval Queries,buzzoverflow
+Which tags have been used by users with a reputation above 3000? List the first 5 tags.,Complex Retrieval Queries,buzzoverflow
+What are the top 3 questions with the most detailed text (longest text length)?,Complex Retrieval Queries,buzzoverflow
+Who are the first 3 users to ask a question after 2020?,Complex Retrieval Queries,buzzoverflow
+List the first 5 questions with a title containing the word 'error'.,Complex Retrieval Queries,buzzoverflow
+Which user(s) have asked questions that have a link containing 'stackoverflow'? List the first 3.,Complex Retrieval Queries,buzzoverflow
+What are the top 5 tags associated with the most recent questions?,Complex Retrieval Queries,buzzoverflow
+Which user asked the question with the lowest score?,Complex Retrieval Queries,buzzoverflow
+List the top 3 questions by users who have no profile image link provided.,Complex Retrieval Queries,buzzoverflow
+Who are the top 3 users based on the number of questions they have asked that were tagged with 'graphql'?,Complex Retrieval Queries,buzzoverflow
+What are the first 5 questions that received no upVotes or downVotes?,Complex Retrieval Queries,buzzoverflow
+Which tags are associated with questions that have a creation date in June 2020? List the top 3.,Complex Retrieval Queries,buzzoverflow
+Who asked the highest scoring question in the year 2019?,Complex Retrieval Queries,buzzoverflow
+Which questions have a score greater than 0?,Simple Aggregation Queries,buzzoverflow
+List all questions tagged with 'graphql-subscriptions'.,Simple Aggregation Queries,buzzoverflow
+Who asked the question titled 'GraphQL subscription delay on first time'?,Simple Aggregation Queries,buzzoverflow
+What are the top 5 most upvoted questions?,Simple Aggregation Queries,buzzoverflow
+Find all questions asked by the user with id 10251021.,Simple Aggregation Queries,buzzoverflow
+Which users have asked more than 3 questions?,Simple Aggregation Queries,buzzoverflow
+What are the three most recent questions created?,Simple Aggregation Queries,buzzoverflow
+Which question has the highest number of downVotes?,Simple Aggregation Queries,buzzoverflow
+How many questions have been answered?,Simple Aggregation Queries,buzzoverflow
+List all tags used in unanswered questions.,Simple Aggregation Queries,buzzoverflow
+Who are the top 3 users by reputation who have asked questions?,Simple Aggregation Queries,buzzoverflow
+What are the links to the 5 questions with the most favorites?,Simple Aggregation Queries,buzzoverflow
+Which questions were asked before June 2020?,Simple Aggregation Queries,buzzoverflow
+List all questions that have been answered and have a score of 0 or less.,Simple Aggregation Queries,buzzoverflow
+Which users have asked questions tagged with 'react-apollo'?,Simple Aggregation Queries,buzzoverflow
+How many different users have asked questions that are tagged with 'aws-lambda'?,Simple Aggregation Queries,buzzoverflow
+What are the top 3 most favored questions?,Simple Aggregation Queries,buzzoverflow
+List the questions that have both more than 5 upVotes and more than 5 downVotes.,Simple Aggregation Queries,buzzoverflow
+Find all the users who have asked a question with a score less than -1.,Simple Aggregation Queries,buzzoverflow
+Which questions have titles containing the word 'error'?,Simple Aggregation Queries,buzzoverflow
+How many questions were created on '2020-06-05'?,Simple Aggregation Queries,buzzoverflow
+List the questions asked by users with a reputation greater than 100000.,Simple Aggregation Queries,buzzoverflow
+Which tags are associated with questions that have more than 2 downVotes?,Simple Aggregation Queries,buzzoverflow
+Who asked the first question in the database?,Simple Aggregation Queries,buzzoverflow
+What are the titles of questions that have no upVotes and no downVotes?,Simple Aggregation Queries,buzzoverflow
+List the top 5 questions by score that were asked in 2020.,Simple Aggregation Queries,buzzoverflow
+Which users have asked questions that were tagged with 'graphql-js'?,Simple Aggregation Queries,buzzoverflow
+Find all questions that have been tagged more than once.,Simple Aggregation Queries,buzzoverflow
+What are the top 3 questions with the least favorites?,Simple Aggregation Queries,buzzoverflow
+Which questions have a link including 'apollo-server'?,Simple Aggregation Queries,buzzoverflow
+How many questions have a negative score?,Simple Aggregation Queries,buzzoverflow
+List all questions tagged with 'node.js' and asked by users with a reputation below 5000.,Simple Aggregation Queries,buzzoverflow
+What are the three most recent questions asked by users with no profile image?,Simple Aggregation Queries,buzzoverflow
+List the questions that have been both answered and have a 'createdAt' date in 2018.,Simple Aggregation Queries,buzzoverflow
+Which question has the lowest score and was asked by a user with an image link?,Simple Aggregation Queries,buzzoverflow
+How many users have asked a question with exactly 0 favorites?,Simple Aggregation Queries,buzzoverflow
+What are the three oldest questions in terms of creation date?,Simple Aggregation Queries,buzzoverflow
+Which questions have been answered and have more than 5 favorites?,Simple Aggregation Queries,buzzoverflow
+List the questions with exactly 1 downVote.,Simple Aggregation Queries,buzzoverflow
+Find the users who asked the questions with the most tags.,Simple Aggregation Queries,buzzoverflow
+Show the questions that have been tagged with 'aws-lambda' and have a score of 0.,Simple Aggregation Queries,buzzoverflow
+Which user with the highest reputation asked a question on '2020-06-05'?,Simple Aggregation Queries,buzzoverflow
+List the 5 most recent questions asked by users with a reputation greater than 50000.,Simple Aggregation Queries,buzzoverflow
+Which questions have a text length greater than 500 characters?,Simple Aggregation Queries,buzzoverflow
+What are the titles of the questions tagged with 'graphql-js' and have more than 1 upVote?,Simple Aggregation Queries,buzzoverflow
+How many questions have been asked by users with a display_name starting with 'A'?,Simple Aggregation Queries,buzzoverflow
+List all users who have asked a question that includes the word 'subscription' in the title.,Simple Aggregation Queries,buzzoverflow
+Which questions were created in 2019 and have a score less than 0?,Simple Aggregation Queries,buzzoverflow
+Find all questions where the 'link' property includes 'stackoverflow' and the score is more than 2.,Simple Aggregation Queries,buzzoverflow
+Which questions have a creation date on a Monday?,Simple Aggregation Queries,buzzoverflow
+List the questions that have been tagged with 'graphql' and have a 'createdAt' date in 2018.,Simple Aggregation Queries,buzzoverflow
+"What is the average score of questions asked by users with more than 10,000 reputation?",Simple Aggregation Queries,buzzoverflow
+List the questions that have a score of 1 and were asked by users with a display_name containing 'Le'.,Simple Aggregation Queries,buzzoverflow
+Which questions have more than 3 favorites and were asked by a user with an id less than 100000?,Simple Aggregation Queries,buzzoverflow
+How many questions tagged with 'react-apollo' were asked in 2019?,Simple Aggregation Queries,buzzoverflow
+Who are the users that asked questions with more than 5 favorites?,Pathfinding Queries,buzzoverflow
+What are the top 5 most recent questions asked on the platform?,Pathfinding Queries,buzzoverflow
+Which users have asked questions that were tagged with 'graphql'?,Pathfinding Queries,buzzoverflow
+List all questions that received more than 10 upVotes.,Pathfinding Queries,buzzoverflow
+What are the top 3 most downvoted questions in the database?,Pathfinding Queries,buzzoverflow
+Find all tags associated with questions asked by a user with more than 100000 reputation.,Pathfinding Queries,buzzoverflow
+Which questions have not been answered and have a creation date before 2020?,Pathfinding Queries,buzzoverflow
+List the top 5 questions with the highest score that were also answered.,Pathfinding Queries,buzzoverflow
+Which users have asked questions that have both upVotes and downVotes?,Pathfinding Queries,buzzoverflow
+How many questions has each user asked? List top 5 users by question count.,Pathfinding Queries,buzzoverflow
+What are the links to the questions asked by users with a display name starting with 'Alex'?,Pathfinding Queries,buzzoverflow
+List all users who have asked a question about 'apollo-server-lambda'.,Pathfinding Queries,buzzoverflow
+Which tags are associated with questions that have a score less than -5?,Pathfinding Queries,buzzoverflow
+How many users have asked more than 3 questions?,Pathfinding Queries,buzzoverflow
+What are the titles of the questions that have been answered and have no favorites?,Pathfinding Queries,buzzoverflow
+Which questions were asked most recently by users with an image link containing 'googleusercontent'?,Pathfinding Queries,buzzoverflow
+Find questions with the title containing 'subscription' and list their associated tags.,Pathfinding Queries,buzzoverflow
+List the dates when questions tagged with 'aws-lambda' were created.,Pathfinding Queries,buzzoverflow
+Which users have the highest reputation among those who asked questions in June 2020?,Pathfinding Queries,buzzoverflow
+What are the top 3 longest texts in questions on the platform?,Pathfinding Queries,buzzoverflow
+Provide the titles and links of questions that have more than 2 tags.,Pathfinding Queries,buzzoverflow
+List all tags for questions that were asked by the user with the lowest reputation.,Pathfinding Queries,buzzoverflow
+Which questions received exactly 0 downVotes and were created in 2020?,Pathfinding Queries,buzzoverflow
+What are the most common tags for questions that were answered?,Pathfinding Queries,buzzoverflow
+List the top 5 questions based on the number of favorites they received.,Pathfinding Queries,buzzoverflow
+Which users asked questions with a score of zero and have an image link?,Pathfinding Queries,buzzoverflow
+What are the creation dates of questions that have not been answered and have more than 5 upVotes?,Pathfinding Queries,buzzoverflow
+Find all questions tagged with 'graphql-subscriptions' and list their creation dates.,Pathfinding Queries,buzzoverflow
+Which user links are associated with questions that have a negative score?,Pathfinding Queries,buzzoverflow
+What are the titles of questions that were tagged with 'aws-lambda' and have more than 10 upVotes?,Pathfinding Queries,buzzoverflow
+Provide the list of users who asked a question on the first day of any month.,Pathfinding Queries,buzzoverflow
+Which questions have a link containing 'stackoverflow' and more than 1 favorite?,Pathfinding Queries,buzzoverflow
+List the users who asked questions with a text containing 'mongodb' and the associated tags.,Pathfinding Queries,buzzoverflow
+What are the most recent questions asked by users with no image link provided?,Pathfinding Queries,buzzoverflow
+Provide details of questions with a score greater than 5 and tagged with 'graphql-js'.,Pathfinding Queries,buzzoverflow
+Which users with a reputation over 50000 asked questions that were later answered?,Pathfinding Queries,buzzoverflow
+List all questions asked by users whose display name ends with 'Le'.,Pathfinding Queries,buzzoverflow
+Which questions have an 'Internal server error' mentioned in their text and were created before 2021?,Pathfinding Queries,buzzoverflow
+Find the top 3 users by number of questions asked in 2020.,Pathfinding Queries,buzzoverflow
+What are the titles of questions that have exactly 3 upVotes?,Pathfinding Queries,buzzoverflow
+List all questions that were downvoted but have a score greater than zero.,Pathfinding Queries,buzzoverflow
+Which questions tagged with 'apollo' have been asked by more than one user?,Pathfinding Queries,buzzoverflow
+Provide the image links of users who asked questions about 'apollo-server-lambda'.,Pathfinding Queries,buzzoverflow
+List the top 5 questions based on their createdAt dates that have not been answered.,Pathfinding Queries,buzzoverflow
+Which tags are most commonly associated with questions having more than 10 upVotes?,Pathfinding Queries,buzzoverflow
+How many users have asked questions that were tagged with 'graphql' and have a score of zero?,Pathfinding Queries,buzzoverflow
+List the questions asked by users with display names containing 'Alex' and sort them by creation date.,Pathfinding Queries,buzzoverflow
+What are the top 5 questions with the most downVotes?,Pathfinding Queries,buzzoverflow
+Find all questions asked by users with a reputation less than 500.,Pathfinding Queries,buzzoverflow
+Which questions tagged with 'aws-lambda' were created after 2019 and have downVotes?,Pathfinding Queries,buzzoverflow
+List the questions with a link that includes 'apollo' and their corresponding tags.,Pathfinding Queries,buzzoverflow
+How many questions have been asked by users with no upVotes and no downVotes?,Pathfinding Queries,buzzoverflow
+What are the titles of the questions with a createdAt date on or after 2021-01-01 and less than 5 favorites?,Pathfinding Queries,buzzoverflow
+Which users asked questions that have a link ending in '.com'?,Pathfinding Queries,buzzoverflow
+List all tags associated with questions that have been answered and have a score less than zero.,Pathfinding Queries,buzzoverflow
+Which questions have been tagged with 'graphql-js' and asked by users with a reputation over 100000?,Pathfinding Queries,buzzoverflow
+List the top 3 questions by score that are also tagged with 'apollo-server-lambda'.,Pathfinding Queries,buzzoverflow
+Which questions were asked by users who have an image link ending in '.com'?,Pathfinding Queries,buzzoverflow
+Find all users who have asked questions that were tagged with 'graphql-subscriptions' and sort them by reputation.,Pathfinding Queries,buzzoverflow
+What are the most common tags for questions asked by users with a reputation over 50000?,Pathfinding Queries,buzzoverflow
+How many questions have been tagged with 'graphql' and have a negative score?,Pathfinding Queries,buzzoverflow
+List the questions that were asked by users with a reputation exactly 420137.,Pathfinding Queries,buzzoverflow
+Which users with a reputation over 100000 asked questions that have been answered?,Pathfinding Queries,buzzoverflow
+List all questions with a score of 0 and their associated tags.,Pathfinding Queries,buzzoverflow
+Which questions with more than 5 downVotes were asked by users with a reputation under 1000?,Pathfinding Queries,buzzoverflow
+List the top 5 users by reputation who have asked questions tagged with 'apollo'.,Pathfinding Queries,buzzoverflow
+Which questions have a text containing 'Internal server error' and have been tagged with 'graphql'?,Pathfinding Queries,buzzoverflow
+Provide the titles and links of questions asked by users with a display name containing 'Le' and a reputation over 10000.,Pathfinding Queries,buzzoverflow
+Which questions have a score of -1 and were asked by users with a display name starting with 'A'?,Pathfinding Queries,buzzoverflow
+"List all questions that have been answered, have more than 5 favorites, and were asked in 2020.",Pathfinding Queries,buzzoverflow
+What are the titles of questions that have a text containing 'error' and were asked by users with an image link?,Pathfinding Queries,buzzoverflow
+Which questions tagged with 'aws-lambda' have a score greater than 0 and were asked by users with a reputation over 50000?,Pathfinding Queries,buzzoverflow
+List the questions that have been tagged with 'aws-lambda' and have a creation date in 2020.,Pathfinding Queries,buzzoverflow
+What are the most common tags for questions that have more than 5 downVotes?,Pathfinding Queries,buzzoverflow
+Which questions have more than 10 favorites and were asked by users with a reputation less than 5000?,Pathfinding Queries,buzzoverflow
+List all tags for questions that have a positive score and were asked by users with a reputation over 50000.,Pathfinding Queries,buzzoverflow
+Which questions were asked by users with a display name containing 'Alexandre' and have more than 5 upVotes?,Pathfinding Queries,buzzoverflow
+Provide the links to the top 5 questions asked by users with a reputation under 1000.,Pathfinding Queries,buzzoverflow
+What are the creation dates of questions that have been answered and have a score greater than 10?,Pathfinding Queries,buzzoverflow
+Which users asked questions tagged with 'graphql-js' and have a reputation under 5000?,Pathfinding Queries,buzzoverflow
+List the titles of questions that have been downvoted and have a score less than -5.,Pathfinding Queries,buzzoverflow
+Which questions have been asked by users with the highest reputation and have a link containing 'stackoverflow'?,Pathfinding Queries,buzzoverflow
+What are the titles and tags of questions that have a score of zero and were asked by a user with a reputation over 100000?,Pathfinding Queries,buzzoverflow
+Which questions have been asked by users who have asked more than 20 questions?,Pathfinding Queries,buzzoverflow
+List all users who asked questions that have a title containing 'Apollo' and their corresponding tags.,Pathfinding Queries,buzzoverflow
+Which questions have been tagged with 'graphql-subscriptions' and have a score greater than 5?,Pathfinding Queries,buzzoverflow
+Provide details of the top 3 users by reputation who have asked questions about 'aws-lambda'.,Pathfinding Queries,buzzoverflow
+Which users with a reputation over 100000 have asked questions that have been downvoted?,Pathfinding Queries,buzzoverflow
+List the questions that were asked by users with a reputation over 50000 and have a text containing 'error'.,Pathfinding Queries,buzzoverflow
+What are the tags of questions that have more than 10 upVotes and were asked by users with a reputation over 100000?,Pathfinding Queries,buzzoverflow
+Which questions have a link containing 'apollo' and have been answered?,Pathfinding Queries,buzzoverflow
+Provide the titles and links of questions that were asked by users with an image link containing 'googleusercontent' and have more than 3 favorites.,Pathfinding Queries,buzzoverflow
+Which questions were asked by the same user more than once and have been tagged with 'aws-lambda'?,Pathfinding Queries,buzzoverflow
+List the tags of questions asked by users with a reputation under 500 that have been answered.,Pathfinding Queries,buzzoverflow
+What are the most common tags for questions that have been asked by users with a display name containing 'Le'?,Pathfinding Queries,buzzoverflow
+Which questions with more than 5 favorites were asked by users who have an image link ending in '.com'?,Pathfinding Queries,buzzoverflow
+List the top 5 questions with the most favorites that were asked by users with a reputation under 50000.,Pathfinding Queries,buzzoverflow
+Which questions have a createdAt date in 2020 and were asked by users with a reputation over 100000?,Pathfinding Queries,buzzoverflow
+What are the top 3 questions by upVotes that were also tagged with 'graphql-js'?,Pathfinding Queries,buzzoverflow
+What are the top 5 questions with the most upVotes?,Complex Aggregation Queries,buzzoverflow
+Which questions were asked by users with a reputation above 100?,Complex Aggregation Queries,buzzoverflow
+List the first 3 questions which have been marked as answered.,Complex Aggregation Queries,buzzoverflow
+Which users have asked questions tagged with 'angular'?,Complex Aggregation Queries,buzzoverflow
+What are the top 5 most recent questions asked in the system?,Complex Aggregation Queries,buzzoverflow
+List all questions that have more than 5 downVotes.,Complex Aggregation Queries,buzzoverflow
+Which tags are associated with questions that have a negative score?,Complex Aggregation Queries,buzzoverflow
+Find all users who have asked a question with no upVotes or downVotes.,Complex Aggregation Queries,buzzoverflow
+What are the first 3 questions with the highest number of favorites?,Complex Aggregation Queries,buzzoverflow
+Which user has the highest reputation among those who asked questions tagged with 'apollo'?,Complex Aggregation Queries,buzzoverflow
+List the first 3 tags that appear most frequently across all questions.,Complex Aggregation Queries,buzzoverflow
+What are the first 3 questions asked by the user with the lowest reputation?,Complex Aggregation Queries,buzzoverflow
+Which user has asked the most questions in the database?,Complex Aggregation Queries,buzzoverflow
+List the first 3 questions that have text containing 'apollo'?,Complex Aggregation Queries,buzzoverflow
+What are the first 3 questions with a creation date in 2020?,Complex Aggregation Queries,buzzoverflow
+Which users have asked questions with more than 3 downVotes?,Complex Aggregation Queries,buzzoverflow
+What are the top 5 questions with the least favorites but more than 1 upVote?,Complex Aggregation Queries,buzzoverflow
+Find the first 3 users who asked questions on '2020-06-05'.,Complex Aggregation Queries,buzzoverflow
+Which questions have a score less than -3?,Complex Aggregation Queries,buzzoverflow
+List the first 3 users who have not answered their questions but have a reputation over 50.,Complex Aggregation Queries,buzzoverflow
+What are the top 5 questions with the highest number of upVotes?,Verbose query,buzzoverflow
+List the first 3 users by reputation who have asked a question.,Verbose query,buzzoverflow
+Which tags are associated with the top 3 most favorited questions?,Verbose query,buzzoverflow
+Identify the top 5 questions with the most downVotes.,Verbose query,buzzoverflow
+What are the first 3 questions asked by the user with the highest reputation?,Verbose query,buzzoverflow
+Which user has posted the highest number of questions?,Verbose query,buzzoverflow
+List the first 3 tags that appear most frequently across all questions.,Verbose query,buzzoverflow
+What are the first 3 most recent questions that have been answered?,Verbose query,buzzoverflow
+Who are the top 5 users with the most downVoted questions?,Verbose query,buzzoverflow
+Identify the first 3 questions tagged 'graphql' with negative scores.,Verbose query,buzzoverflow
+What are the top 5 oldest questions in the database?,Verbose query,buzzoverflow
+"List the first 3 users who asked questions on or after June 1, 2020.",Verbose query,buzzoverflow
+What are the top 3 most upVoted questions that have not been answered?,Verbose query,buzzoverflow
+List the first 3 questions with exactly 0 favorites and a positive score.,Verbose query,buzzoverflow
+Which 3 users have asked questions with the most tags?,Verbose query,buzzoverflow
+What are the top 5 questions by score that were created in 2020?,Verbose query,buzzoverflow
+Identify the first 3 users whose questions have never been downVoted.,Verbose query,buzzoverflow
+What are the top 5 most recent questions asked by users with an image link?,Verbose query,buzzoverflow
+Which 3 users have the lowest average score on their questions?,Verbose query,buzzoverflow
+List the first 3 tags used by the user with id 10251021 for their questions.,Verbose query,buzzoverflow
+What are the top 5 questions with the most complex text content?,Verbose query,buzzoverflow
+Identify the first 3 questions with no upVotes and no downVotes.,Verbose query,buzzoverflow
+List the first 3 users who have only asked questions that were never answered.,Verbose query,buzzoverflow
+Which 3 users' questions have the highest average number of favorites?,Verbose query,buzzoverflow
+Identify the first 3 questions that were asked by users with a reputation over 100000.,Verbose query,buzzoverflow
+What are the top 5 questions that have been linked the most in external websites?,Verbose query,buzzoverflow
+List the first 3 tags associated with questions that have been answered and have a negative score.,Verbose query,buzzoverflow
+Which user has the lowest reputation but has asked a question with a high score?,Verbose query,buzzoverflow
+Identify the first 3 questions with a title containing 'error' or 'issue'.,Verbose query,buzzoverflow
+What are the top 5 questions with the longest text descriptions?,Verbose query,buzzoverflow
+List the first 3 questions that were tagged 'aws-lambda' and have more than 1 downVotes.,Verbose query,buzzoverflow
+Which 3 users have the highest average favorites on their questions?,Verbose query,buzzoverflow
+Identify the first 3 questions that have an exact score of 0 and were asked in June 2020.,Verbose query,buzzoverflow
+List the top 5 tags for questions with more than 5 favorites.,Verbose query,buzzoverflow
+Which 3 users have asked questions that are all unanswered but highly upVoted?,Verbose query,buzzoverflow
+Identify the first 3 questions with a creation date on a weekend.,Verbose query,buzzoverflow
+What are the top 5 questions with the most comments visible in their link descriptions?,Verbose query,buzzoverflow
+List the first 3 tags used in questions asked by users without a profile image.,Verbose query,buzzoverflow
+Which 3 users have questions with the highest average downVotes?,Verbose query,buzzoverflow
+Identify the first 3 questions with a score greater than 5.,Verbose query,buzzoverflow
+What are the top 5 questions asked by the most recent users to join?,Verbose query,buzzoverflow
+List the first 3 users who have asked questions with exactly 2 tags.,Verbose query,buzzoverflow
+Which 3 users' questions have the most variations in favorites count?,Verbose query,buzzoverflow
+Identify the first 3 questions asked by users who have a specific image in their profile.,Verbose query,buzzoverflow
+What are the top 5 shortest questions in terms of text content?,Verbose query,buzzoverflow
+List the first 3 questions that have the word 'playground' in the title.,Verbose query,buzzoverflow
+Which 3 users have the most answered questions?,Verbose query,buzzoverflow
+Identify the first 3 questions tagged with 'graphql-subscriptions' that have a positive score.,Verbose query,buzzoverflow
+What are the top 5 questions asked by users with a reputation under 500?,Verbose query,buzzoverflow
+"List the first 3 questions with a createdAt date exactly on January 1, 2020.",Verbose query,buzzoverflow
+Which 3 users have asked the oldest questions in the database?,Verbose query,buzzoverflow
+Identify the first 3 questions with more than 3 tags.,Verbose query,buzzoverflow
+What are the top 5 questions with the shortest titles?,Verbose query,buzzoverflow
+List the first 3 questions that have been tagged with both 'apollo' and 'graphql'.,Verbose query,buzzoverflow
+Which 3 users have the most questions with zero downVotes?,Verbose query,buzzoverflow
+Identify the first 3 questions with the most detailed descriptions based on the number of characters.,Verbose query,buzzoverflow
+What are the top 5 questions with a creation time between 8:00 and 10:00 UTC?,Verbose query,buzzoverflow
+List the first 3 questions that have been tagged with 'aws-lambda' and have a score of exactly 2.,Verbose query,buzzoverflow
+Which 3 users have the highest number of questions with a negative score?,Verbose query,buzzoverflow
+Identify the first 3 questions that were asked by users with a display name starting with 'A'.,Verbose query,buzzoverflow
+What are the top 5 most recent questions tagged 'graphql'?,Verbose query,buzzoverflow
+List the first 3 questions that have been answered and have a text containing 'bug'.,Verbose query,buzzoverflow
+Which 3 users have their questions most frequently tagged with 'graphql-js'?,Verbose query,buzzoverflow
+Identify the first 3 questions that have been asked more than once by the same user.,Verbose query,buzzoverflow
+What are the top 5 questions with the most external links mentioned in their text?,Verbose query,buzzoverflow
+List the first 3 questions that have been tagged with 'apollo-server-lambda' and have no favorites.,Verbose query,buzzoverflow
+Which 3 users have the most questions with a link to an external website?,Verbose query,buzzoverflow
+Identify the first 3 questions asked by the newest user in the database.,Verbose query,buzzoverflow
+What are the top 5 questions with the most variety in their vote counts (difference between upVotes and downVotes)?,Verbose query,buzzoverflow
+List the first 3 questions with a title containing the word 'loading'.,Verbose query,buzzoverflow
+Which 3 users have asked the most questions tagged with 'aws-lambda'?,Verbose query,buzzoverflow
+Identify the first 3 questions that have been answered and have a createdAt date on a public holiday.,Verbose query,buzzoverflow
+What are the top 5 questions asked by users with the most questions in the database?,Verbose query,buzzoverflow
+List the first 3 questions with a negative score and no upVotes.,Verbose query,buzzoverflow
+Which 3 users have asked questions that are most frequently associated with the tag 'apollo'?,Verbose query,buzzoverflow
+Identify the first 3 questions that have been tagged with 'graphql' and have been answered.,Verbose query,buzzoverflow
+What are the top 5 questions with a link that includes 'stackoverflow'?,Verbose query,buzzoverflow
+List the first 3 questions that have a creation time exactly at noon UTC.,Verbose query,buzzoverflow
+Which 3 users have asked the most questions with a score of 5 or higher?,Verbose query,buzzoverflow
+Identify the first 3 questions asked by users who have a reputation of exactly 1000.,Verbose query,buzzoverflow
+What are the top 5 users with the most questions having a score of zero?,Verbose query,buzzoverflow
+List the first 3 questions that have been tagged with 'apollo' and have a score of less than -1.,Verbose query,buzzoverflow
+Which 3 users have the most tags associated with their questions?,Verbose query,buzzoverflow
+Identify the first 3 questions with the most references to specific software or technology in their text.,Verbose query,buzzoverflow
+What are the top 5 most recent questions with a score less than -1?,Verbose query,buzzoverflow
+Which organizations are located in Seattle?,Simple Retrieval Queries,companies
+What are the first 3 articles that mention the organization 'Accenture'?,Simple Retrieval Queries,companies
+List top 5 organizations that have a revenue greater than 100 million.,Simple Retrieval Queries,companies
+Who are the CEOs of the first 3 organizations in the database?,Simple Retrieval Queries,companies
+What are the first 3 cities located in the United States of America?,Simple Retrieval Queries,companies
+Which organizations have more than 100 employees?,Simple Retrieval Queries,companies
+List the first 5 industry categories mentioned in the database.,Simple Retrieval Queries,companies
+What are the names of the first 3 articles authored by 'James Blackman'?,Simple Retrieval Queries,companies
+Can you provide the first 3 organizations that have been dissolved?,Simple Retrieval Queries,companies
+Who are the board members of 'New Energy Group'?,Simple Retrieval Queries,companies
+Which organizations are public companies?,Simple Retrieval Queries,companies
+What are the sentiment scores of the first 3 articles mentioning 'Deja vu Security'?,Simple Retrieval Queries,companies
+List the first 3 parent companies of 'Accenture'.,Simple Retrieval Queries,companies
+What are the names of the first 3 subsidiaries of 'Accenture'?,Simple Retrieval Queries,companies
+Which organizations does 'New Energy Group' supply?,Simple Retrieval Queries,companies
+List the first 5 cities that have organizations with more than 300 employees.,Simple Retrieval Queries,companies
+What are the first 3 industry categories for organizations in Rome?,Simple Retrieval Queries,companies
+Can you provide the names of top 5 articles published before 2020?,Simple Retrieval Queries,companies
+Who are the investors of the first 3 organizations in the list?,Simple Retrieval Queries,companies
+Which organizations are competitors of 'Deja vu Security'?,Simple Retrieval Queries,companies
+What are the first 3 articles that have a sentiment score above 0.5?,Simple Retrieval Queries,companies
+List the first 3 countries mentioned in the database.,Simple Retrieval Queries,companies
+Which organizations are involved in the industry category 'Electronic Products Manufacturers'?,Simple Retrieval Queries,companies
+What are the first 3 children of the person named 'Julie Spellman Sweet'?,Simple Retrieval Queries,companies
+Who are the first 3 parents of 'Julie Spellman Sweet'?,Simple Retrieval Queries,companies
+What is the summary of the person with ID 'Eaf0bpz6NNoqLVUCqNZPAew'?,Simple Retrieval Queries,companies
+What are the top 5 highest revenue organizations in the database?,Simple Retrieval Queries,companies
+Which organizations have a motto?,Simple Retrieval Queries,companies
+What are the summaries of the first 3 cities in the database?,Simple Retrieval Queries,companies
+Provide the names and IDs of the first 3 persons who are CEOs of public companies.,Simple Retrieval Queries,companies
+Which person has the ID 'Eaf0bpz6NNoqLVUCqNZPAew'?,Simple Retrieval Queries,companies
+What are the first 3 organizations mentioned in the article titled 'Funds for Consumer Behavior Specialist Infinite An'?,Simple Retrieval Queries,companies
+List the first 5 organizations that have a CEO named 'Julie Spellman Sweet'.,Simple Retrieval Queries,companies
+Which organizations have subsidiaries within the same city?,Simple Retrieval Queries,companies
+Name the first 3 organizations that have been mentioned in an article from 'MrWeb'.,Simple Retrieval Queries,companies
+What are the names of the first 3 CEOs who work at organizations with a revenue greater than 10 million?,Simple Retrieval Queries,companies
+Who are the investors of 'Deja vu Security'?,Simple Retrieval Queries,companies
+List the first 3 organizations that have an investor who is a person.,Simple Retrieval Queries,companies
+What are the summaries of the first 3 organizations that have more than 200 employees?,Simple Retrieval Queries,companies
+Provide the names of the first 5 organizations that have at least one subsidiary.,Simple Retrieval Queries,companies
+Which organizations are headquartered in a city with a summary containing 'capital'?,Simple Retrieval Queries,companies
+List the first 3 articles that mention an organization with a revenue less than 5 million.,Simple Retrieval Queries,companies
+Who are the board members of the first 3 public organizations?,Simple Retrieval Queries,companies
+What are the first 3 organizations that have the industry category 'Software company'?,Simple Retrieval Queries,companies
+Name the first 3 organizations that have a supplier named 'New Energy Group'.,Simple Retrieval Queries,companies
+List the first 3 organizations that are competitors within the same industry category.,Simple Retrieval Queries,companies
+"What are the first 3 articles with a date after January 1, 2021?",Simple Retrieval Queries,companies
+Which organizations have a parent organization within the same city?,Simple Retrieval Queries,companies
+Who are the first 3 CEOs of organizations that have been dissolved?,Simple Retrieval Queries,companies
+List the first 5 organizations that have a motto containing 'world'.,Simple Retrieval Queries,companies
+What are the first 3 organizations that have been mentioned in articles by 'David Correa'?,Simple Retrieval Queries,companies
+Which organizations have more than two competitors?,Simple Retrieval Queries,companies
+Who are the first 3 persons mentioned as investors in organizations?,Simple Retrieval Queries,companies
+What are the top 5 organizations by number of employees?,Simple Retrieval Queries,companies
+List the first 3 organizations that have a subsidiary and an investor.,Simple Retrieval Queries,companies
+Which cities have more than three organizations located within them?,Simple Retrieval Queries,companies
+Name the first 3 organizations that have their CEOs with a summary containing 'CEO at'.,Simple Retrieval Queries,companies
+What are the first 3 organizations that have a CEO and a board member with the same name?,Simple Retrieval Queries,companies
+List the first 5 organizations that have a CEO with a summary mentioning 'Accenture'.,Simple Retrieval Queries,companies
+Which organization has the highest revenue in Seattle?,Simple Retrieval Queries,companies
+Who are the CEOs of the first 3 organizations that have a category 'Electronic Products Manufacturers'?,Simple Retrieval Queries,companies
+What are the first 3 organizations that have a public status and more than 500 employees?,Simple Retrieval Queries,companies
+Which organizations have a CEO named within the first 5 chunks of an article?,Simple Retrieval Queries,companies
+List the first 3 organizations that have been competitors for more than 5 years.,Simple Retrieval Queries,companies
+What are the names of the first 3 organizations that have a CEO with a name starting with 'J'?,Simple Retrieval Queries,companies
+Which organizations have a category and are located in a city with a name containing 'Rome'?,Simple Retrieval Queries,companies
+List the first 5 organizations that have a supplier and are public companies.,Simple Retrieval Queries,companies
+What are the first 3 organizations with a CEO who has written an article?,Simple Retrieval Queries,companies
+Who are the investors of the first 3 organizations with a revenue above 50 million?,Simple Retrieval Queries,companies
+Which organizations have been mentioned in articles with a sentiment score lower than 0.5?,Simple Retrieval Queries,companies
+Name the first 3 organizations that have a CEO and a board member with different nationalities.,Simple Retrieval Queries,companies
+List the first 5 organizations that have more than one category.,Simple Retrieval Queries,companies
+What are the first 3 articles mentioning an organization with more than 1000 employees?,Simple Retrieval Queries,companies
+Which organization in Seattle has the most employees?,Simple Retrieval Queries,companies
+Name the first 3 CEOs of organizations that are headquartered in a city starting with 'S'.,Simple Retrieval Queries,companies
+List the names of the first 3 organizations that have both a CEO and a board member named in their summary.,Simple Retrieval Queries,companies
+What are the first 3 organizations with a CEO who has a summary mentioning 'Technology'?,Simple Retrieval Queries,companies
+Which organizations have a CEO and are headquartered in a country other than the USA?,Simple Retrieval Queries,companies
+List the first 5 organizations that have a category named 'Technology'.,Simple Retrieval Queries,companies
+What are the first 3 organizations with a CEO whose name ends with 'Sweet'?,Simple Retrieval Queries,companies
+Which organizations have been mentioned in articles authored by women?,Simple Retrieval Queries,companies
+Name the first 3 organizations that have a CEO with a name containing 'Julie'.,Simple Retrieval Queries,companies
+List the first 3 organizations that have a competitor and a supplier in the same city.,Simple Retrieval Queries,companies
+Which organizations have a CEO who was mentioned in an article on 'RCR Wireless News'?,Simple Retrieval Queries,companies
+List the first 5 organizations that have a CEO with a summary mentioning 'Leader'.,Simple Retrieval Queries,companies
+What are the first 3 organizations that have a category and a CEO named 'Julie Spellman Sweet'?,Simple Retrieval Queries,companies
+Which organizations are mentioned in articles authored by 'David Correa'?,Complex Retrieval Queries,companies
+List the top 5 organizations that have more than 100 employees and are not dissolved.,Complex Retrieval Queries,companies
+What are the names of the organizations that have a public status and revenue greater than 100000000?,Complex Retrieval Queries,companies
+Name 3 organizations that are suppliers to 'New Energy Group'.,Complex Retrieval Queries,companies
+Which cities are home to organizations with more than 300 employees?,Complex Retrieval Queries,companies
+Identify the top 5 articles with a positive sentiment greater than 0.8.,Complex Retrieval Queries,companies
+What are the names of the organizations that are subsidiaries of 'Accenture'?,Complex Retrieval Queries,companies
+Which organizations have 'Julie Spellman Sweet' as a CEO?,Complex Retrieval Queries,companies
+List the industry categories for organizations located in 'Seattle'.,Complex Retrieval Queries,companies
+Which organizations are competitors of 'Deis'?,Complex Retrieval Queries,companies
+Who are the board members of organizations with revenue over 50000000?,Complex Retrieval Queries,companies
+Which organizations have a summary mentioning 'software' and are located in a city with a population summary mentioning 'capital'?,Complex Retrieval Queries,companies
+Who are the children of 'Julie Spellman Sweet' listed in the database?,Complex Retrieval Queries,companies
+What are the names of the parents of people who work in organizations with more than 400 employees?,Complex Retrieval Queries,companies
+List the countries where organizations with a revenue of over 50000000 are located.,Complex Retrieval Queries,companies
+Identify articles mentioning organizations based in 'Rome'.,Complex Retrieval Queries,companies
+Which organizations have an investor named 'Accenture'?,Complex Retrieval Queries,companies
+Name 3 people who are board members for organizations with a motto.,Complex Retrieval Queries,companies
+What are the top 3 latest articles mentioning any organization?,Complex Retrieval Queries,companies
+Which organizations are located in cities within 'United States of America'?,Complex Retrieval Queries,companies
+Who are the investors in 'New Energy Group'?,Complex Retrieval Queries,companies
+List the organizations that have a category named 'Electronic Products Manufacturers'.,Complex Retrieval Queries,companies
+Which cities have organizations with a public status?,Complex Retrieval Queries,companies
+Name the children and parents of persons who are CEOs of organizations with more than 50 employees.,Complex Retrieval Queries,companies
+Which articles mention organizations that have been dissolved?,Complex Retrieval Queries,companies
+Identify the organizations that have more than one subsidiary.,Complex Retrieval Queries,companies
+List the CEOs of organizations that have a category in 'Electronic Products Manufacturers'.,Complex Retrieval Queries,companies
+Which organization has the highest number of employees and is located in a capital city?,Complex Retrieval Queries,companies
+What are the top 5 articles with the highest sentiment scores?,Complex Retrieval Queries,companies
+List all organizations that have a supplier named 'Accenture'.,Complex Retrieval Queries,companies
+Which organizations have a CEO and are also public companies?,Complex Retrieval Queries,companies
+Name the organizations with competitors that have more than 300 employees.,Complex Retrieval Queries,companies
+List 3 organizations that have their headquarters in a city that is also a capital.,Complex Retrieval Queries,companies
+Which articles have chunks containing the text 'consumer behavior analyses'?,Complex Retrieval Queries,companies
+Identify the organizations that have been mentioned in articles published after 2021-01-01.,Complex Retrieval Queries,companies
+What are the summaries of organizations that have a CEO named 'Julie Spellman Sweet'?,Complex Retrieval Queries,companies
+Who are the children of people working in organizations in 'Seattle'?,Complex Retrieval Queries,companies
+List the organizations that have 'Julie Spellman Sweet' as an investor.,Complex Retrieval Queries,companies
+Which organizations in 'United States of America' have more than 200 employees?,Complex Retrieval Queries,companies
+What is the sentiment of articles authored by 'David Correa' regarding organizations in the tech industry?,Complex Retrieval Queries,companies
+Name the organizations that have subsidiaries and are located in cities with a summary mentioning 'county seat'.,Complex Retrieval Queries,companies
+Which organizations have board members who are also CEOs of other organizations?,Complex Retrieval Queries,companies
+List the articles that mention organizations headquartered in 'Rome'.,Complex Retrieval Queries,companies
+What are the titles of articles that report negative sentiments and mention organizations?,Complex Retrieval Queries,companies
+Identify the organizations that have an investor with more than 50 employees.,Complex Retrieval Queries,companies
+Which organizations are public and have been mentioned in articles with a positive sentiment?,Complex Retrieval Queries,companies
+List the industry categories of organizations that have a revenue above 100000000.,Complex Retrieval Queries,companies
+What are the relationships of 'Julie Spellman Sweet' within the context of the organization she is associated with?,Complex Retrieval Queries,companies
+Which organizations have subsidiaries and are located in the same city?,Complex Retrieval Queries,companies
+Who are the CEOs of organizations that have a competitor named 'New Energy Group'?,Complex Retrieval Queries,companies
+What are the organizations mentioned in articles with a sentiment score below 0.5?,Complex Retrieval Queries,companies
+List the cities where organizations with a summary mentioning 'financial services' are based.,Complex Retrieval Queries,companies
+Identify the organizations that are suppliers to public companies.,Complex Retrieval Queries,companies
+Which organizations have more than two categories and are located in 'United States of America'?,Complex Retrieval Queries,companies
+Name the organizations headquartered in cities that are capitals and have more than one industry category.,Complex Retrieval Queries,companies
+Which organizations have a CEO who is also a board member of another organization?,Complex Retrieval Queries,companies
+List the top 3 organizations by revenue that are located in a city with a summary mentioning 'metropolitan'.,Complex Retrieval Queries,companies
+What are the top 5 articles that mention organizations based in 'United States of America'?,Complex Retrieval Queries,companies
+Which organizations have a summary that includes 'based in San Francisco' and are not dissolved?,Complex Retrieval Queries,companies
+Name the organizations that have investors named 'Julie Spellman Sweet'.,Complex Retrieval Queries,companies
+List the cities that are home to organizations with a revenue exceeding 50000000.,Complex Retrieval Queries,companies
+What are the top 3 articles mentioning organizations with a public status?,Complex Retrieval Queries,companies
+Identify the organizations that have CEOs who are also investors in other companies.,Complex Retrieval Queries,companies
+Which organizations are competitors and are located in the same country?,Complex Retrieval Queries,companies
+List the industry categories of organizations that have a CEO with a summary mentioning 'executive'.,Complex Retrieval Queries,companies
+What are the names of organizations with a CEO named 'Julie Spellman Sweet' and are located in a city named 'Seattle'?,Complex Retrieval Queries,companies
+Which organizations have investors who are also board members?,Complex Retrieval Queries,companies
+Name the top 3 countries where organizations with a revenue of over 100000000 are based.,Complex Retrieval Queries,companies
+What are the articles mentioning organizations that have a CEO with a name containing 'Sweet'?,Complex Retrieval Queries,companies
+List the organizations that have a subsidiary and also have a supplier named 'Accenture'.,Complex Retrieval Queries,companies
+Which organizations have a board member named 'Julie Spellman Sweet'?,Complex Retrieval Queries,companies
+Name the organizations that are public and have a category in 'Electronic Products Manufacturers'.,Complex Retrieval Queries,companies
+List the organizations located in cities that have been mentioned in articles with a high sentiment score.,Complex Retrieval Queries,companies
+Identify the articles that mention organizations with a CEO named 'Julie Spellman Sweet' and a revenue over 100000000.,Complex Retrieval Queries,companies
+Who are the investors in organizations that have subsidiaries in 'United States of America'?,Complex Retrieval Queries,companies
+List the organizations that have competitors and a public status.,Complex Retrieval Queries,companies
+Which organizations have a CEO and a motto that includes 'innovation'?,Complex Retrieval Queries,companies
+Name the organizations headquartered in 'Rome' that have a public status.,Complex Retrieval Queries,companies
+List the children of CEOs who are mentioned as investors in the database.,Complex Retrieval Queries,companies
+What are the summaries of organizations that have a supplier named 'Accenture'?,Complex Retrieval Queries,companies
+Identify the organizations that have a CEO with a summary including 'executive' and are located in a country named 'United States of America'.,Complex Retrieval Queries,companies
+Which organizations have a CEO named 'Julie Spellman Sweet' and have a revenue exceeding 50000000?,Complex Retrieval Queries,companies
+List the organizations that have a public status and a summary mentioning 'software'.,Complex Retrieval Queries,companies
+What are the top 3 articles mentioning organizations with more than 200 employees?,Complex Retrieval Queries,companies
+Identify organizations that have both a CEO and an investor named 'Julie Spellman Sweet'.,Complex Retrieval Queries,companies
+What are the top 5 organizations with the highest revenue?,Simple Aggregation Queries,companies
+Which 3 cities have organizations that are not dissolved?,Simple Aggregation Queries,companies
+List the top 3 organizations with the most employees.,Simple Aggregation Queries,companies
+Name 5 organizations that have been marked as public.,Simple Aggregation Queries,companies
+Which 3 industries are most commonly associated with organizations in Seattle?,Simple Aggregation Queries,companies
+What are the 5 latest articles mentioning the organization 'New Energy Group'?,Simple Aggregation Queries,companies
+Can you name 3 organizations that have subsidiaries?,Simple Aggregation Queries,companies
+Which 3 organizations have a CEO named 'Julie Spellman Sweet'?,Simple Aggregation Queries,companies
+List the top 5 articles by positive sentiment.,Simple Aggregation Queries,companies
+Who are the board members of the top 3 organizations by revenue?,Simple Aggregation Queries,companies
+Name 3 organizations that have suppliers.,Simple Aggregation Queries,companies
+What are the top 5 cities by number of organizations located in them?,Simple Aggregation Queries,companies
+Name 3 countries hosting organizations with revenue over 100 million.,Simple Aggregation Queries,companies
+Which 5 organizations have the most subsidiaries?,Simple Aggregation Queries,companies
+List 3 organizations that have a competitor in the same industry.,Simple Aggregation Queries,companies
+Who are the investors in the top 3 organizations by revenue?,Simple Aggregation Queries,companies
+What are the top 5 cities mentioned in recent articles?,Simple Aggregation Queries,companies
+Name 3 organizations that are listed as dissolved.,Simple Aggregation Queries,companies
+Which 3 organizations have the oldest founding dates?,Simple Aggregation Queries,companies
+List the 5 most recent articles that mention organizations in the technology sector.,Simple Aggregation Queries,companies
+Who are the top 3 CEOs of tech companies by number of articles mentioning them?,Simple Aggregation Queries,companies
+Which 3 organizations have changed their CEOs in the last year?,Simple Aggregation Queries,companies
+Name the top 5 industries by number of organizations associated with them.,Simple Aggregation Queries,companies
+What are the 3 latest investments made by organizations in the software industry?,Simple Aggregation Queries,companies
+List 5 organizations that have acquired other organizations in the past year.,Simple Aggregation Queries,companies
+Which 3 organizations have the highest number of board members?,Simple Aggregation Queries,companies
+Name 3 organizations that have been involved in legal disputes according to recent articles.,Simple Aggregation Queries,companies
+List the top 3 cities where tech organizations are based.,Simple Aggregation Queries,companies
+What are the 5 most recent articles about organizations in 'Seattle'?,Simple Aggregation Queries,companies
+Who are the 3 most recently appointed CEOs in the tech industry?,Simple Aggregation Queries,companies
+Which 3 organizations have the most negative sentiment in recent articles?,Simple Aggregation Queries,companies
+List the 5 organizations with the most diverse industry categories.,Simple Aggregation Queries,companies
+Which 3 organizations have the most detailed organizational summaries?,Simple Aggregation Queries,companies
+Name the top 5 organizations by number of articles mentioning them.,Simple Aggregation Queries,companies
+Who are the top 5 CEOs of organizations based in Seattle?,Pathfinding Queries,companies
+List the first 3 organizations mentioned in articles published by 'Silicon UK'.,Pathfinding Queries,companies
+Which organizations in the city of Chicago have more than 300 employees?,Pathfinding Queries,companies
+Find the top 5 organizations with revenue over 100 million that have subsidiaries.,Pathfinding Queries,companies
+Who are the board members of the first 3 public organizations?,Pathfinding Queries,companies
+What are the names of the top 5 organizations that have been dissolved?,Pathfinding Queries,companies
+List the first 3 cities where 'Accenture' has subsidiaries.,Pathfinding Queries,companies
+What are the top 5 highest revenue organizations that are not public?,Pathfinding Queries,companies
+"Which organizations in New York City have the most employees, list the top 3.",Pathfinding Queries,companies
+List the first 3 organizations in the 'Software' industry category.,Pathfinding Queries,companies
+Who are the top 3 investors of 'New Energy Group'?,Pathfinding Queries,companies
+List the first 3 organizations that have 'Accenture' as a supplier.,Pathfinding Queries,companies
+"Which organizations have more than 2 competitors, list the top 3.",Pathfinding Queries,companies
+What are the top 3 articles mentioning organizations in the 'Financial Services' industry?,Pathfinding Queries,companies
+"Which cities are linked to more than 5 organizations, list the first 3.",Pathfinding Queries,companies
+"Who are the children of 'Julie Spellman Sweet', list the first 3.",Pathfinding Queries,companies
+List the top 5 organizations that are competitors of 'Accenture'.,Pathfinding Queries,companies
+What are the first 3 industries mentioned in articles with a positive sentiment over 0.8?,Pathfinding Queries,companies
+List the top 5 countries by number of cities mentioned in the database.,Pathfinding Queries,companies
+Which organizations are mentioned in articles authored by 'David Correa'?,Pathfinding Queries,companies
+List the first 3 organizations with the highest number of employees that are public.,Pathfinding Queries,companies
+What are the top 3 cities where the software companies are based?,Pathfinding Queries,companies
+Find the first 3 organizations that have been investors in more than 3 other organizations.,Pathfinding Queries,companies
+Who are the top 3 suppliers of 'New Energy Group'?,Pathfinding Queries,companies
+List the top 5 CEOs of organizations with revenue greater than 50 million.,Pathfinding Queries,companies
+"Which industries have more than 5 organizations associated with them, list the top 3.",Pathfinding Queries,companies
+What are the first 3 articles mentioning organizations based in the United States?,Pathfinding Queries,companies
+List the first 3 organizations that have 'Google' as a competitor.,Pathfinding Queries,companies
+"Which organizations have more than 3 subsidiaries, list the top 3.",Pathfinding Queries,companies
+What are the top 5 organizations that are mentioned the most in articles with a sentiment below 0.5?,Pathfinding Queries,companies
+Who are the board members of the first 3 organizations in the 'Technology' industry?,Pathfinding Queries,companies
+List the top 5 organizations that have the most suppliers.,Pathfinding Queries,companies
+Which organizations have a CEO named 'Julie Spellman Sweet'?,Pathfinding Queries,companies
+List the first 3 organizations with the lowest revenue that are not dissolved.,Pathfinding Queries,companies
+What are the top 5 articles with the highest sentiment scores mentioning organizations in 'Seattle'?,Pathfinding Queries,companies
+"Which organizations have more than 2 board members, list the top 3.",Pathfinding Queries,companies
+Who are the top 3 parents of 'Julie Spellman Sweet'?,Pathfinding Queries,companies
+List the top 5 cities with the most organizations in the 'Healthcare' industry.,Pathfinding Queries,companies
+"Which organizations have a motto related to 'security', list the top 3.",Pathfinding Queries,companies
+List the first 3 countries with organizations that have more than 100 employees.,Pathfinding Queries,companies
+What are the top 3 articles mentioning 'New Energy Group'?,Pathfinding Queries,companies
+List the top 5 organizations that are public and have a revenue less than 10 million.,Pathfinding Queries,companies
+"Which organizations in Rome have a 'Software' category, list the top 3.",Pathfinding Queries,companies
+List the first 3 industries that have the most organizations with a CEO named 'Julie Spellman Sweet'.,Pathfinding Queries,companies
+What are the top 5 articles with the earliest publication dates mentioning 'Accenture'?,Pathfinding Queries,companies
+"Which organizations have been mentioned in articles with a sentiment greater than 0.7, list the top 3.",Pathfinding Queries,companies
+Who are the top 3 CEOs of dissolved organizations?,Pathfinding Queries,companies
+List the top 5 cities where the electronic products manufacturers are based.,Pathfinding Queries,companies
+"Which organizations have 'Apple' as a competitor, list the top 3.",Pathfinding Queries,companies
+List the first 3 CEOs of organizations with less than 50 employees.,Pathfinding Queries,companies
+What are the top 5 organizations in the 'Transportation' industry with the most revenue?,Pathfinding Queries,companies
+List the top 3 articles mentioning organizations with a summary containing 'financial services'.,Pathfinding Queries,companies
+"Which organizations have a board member named 'Julie Spellman Sweet', list the top 3.",Pathfinding Queries,companies
+List the top 5 organizations that have an investor named 'Julie Spellman Sweet'.,Pathfinding Queries,companies
+Who are the top 3 suppliers of organizations in 'New York City'?,Pathfinding Queries,companies
+List the first 3 organizations in 'Chicago' that have been mentioned in articles with a sentiment below 0.6.,Pathfinding Queries,companies
+Which organizations are mentioned in articles authored by David Correa?,Complex Aggregation Queries,companies
+List all organizations that have a revenue greater than $1 billion.,Complex Aggregation Queries,companies
+What are the names of organizations dissolved and were public?,Complex Aggregation Queries,companies
+Who are the CEOs of organizations located in Seattle?,Complex Aggregation Queries,companies
+Which organizations are competitors of Deja vu Security?,Complex Aggregation Queries,companies
+"Which organizations have more than 1,000 employees and are not public?",Complex Aggregation Queries,companies
+What are the names of organizations that have 'Accenture' as an investor?,Complex Aggregation Queries,companies
+Which organizations are suppliers to Accenture?,Complex Aggregation Queries,companies
+What are the top 5 organizations with the highest revenue?,Complex Aggregation Queries,companies
+Which industry categories does New Energy Group belong to?,Complex Aggregation Queries,companies
+List all people who are board members of organizations in Houston.,Complex Aggregation Queries,companies
+Which cities host organizations with more than 100 employees?,Complex Aggregation Queries,companies
+List the articles that mention the organization 'New Energy Group'.,Complex Aggregation Queries,companies
+What are the names of the children of Julie Spellman Sweet?,Complex Aggregation Queries,companies
+Which countries have cities that are mentioned in articles with a positive sentiment (>0.5)?,Complex Aggregation Queries,companies
+Which organizations are headquartered in cities within the United States of America?,Complex Aggregation Queries,companies
+Who are the board members of organizations with more than $500 million in revenue?,Complex Aggregation Queries,companies
+What are the names of organizations that are subsidiaries of Accenture?,Complex Aggregation Queries,companies
+List all organizations that are public and have no employees listed.,Complex Aggregation Queries,companies
+What are the names of organizations that have Accenture as their CEO?,Complex Aggregation Queries,companies
+Which organizations have more than 3 suppliers?,Complex Aggregation Queries,companies
+List the organizations that have a sentiment score above 0.8 in their latest article mention.,Complex Aggregation Queries,companies
+Which organizations have the most subsidiaries? Provide top 3.,Complex Aggregation Queries,companies
+What is the summary of the city where New Energy Group is located?,Complex Aggregation Queries,companies
+Which organizations have a motto that includes the word 'technology'?,Complex Aggregation Queries,companies
+List the authors who have mentioned more than three different organizations in their articles.,Complex Aggregation Queries,companies
+Which organizations are mentioned in articles posted on MrWeb?,Complex Aggregation Queries,companies
+List all organizations that are not public but have subsidiaries.,Complex Aggregation Queries,companies
+Who are the investors in the organization 'Accenture' who are also people?,Complex Aggregation Queries,companies
+What is the revenue and employee number for organizations headquartered in Rome?,Complex Aggregation Queries,companies
+"Which organizations have more than 10,000 employees and are located in a city that is not the capital of a country?",Complex Aggregation Queries,companies
+List the articles that have a sentiment score below 0.3.,Complex Aggregation Queries,companies
+Which organizations have a CEO named 'Julie Spellman Sweet'?,Complex Aggregation Queries,companies
+What are the names of the top 5 organizations in terms of number of employees?,Complex Aggregation Queries,companies
+Which organizations are mentioned in articles about cybersecurity?,Complex Aggregation Queries,companies
+Which organizations have a parent organization with a revenue of more than $100 million?,Complex Aggregation Queries,companies
+List the cities where organizations with a public status are located.,Complex Aggregation Queries,companies
+What are the industry categories for organizations headquartered in Chattanooga?,Complex Aggregation Queries,companies
+Which organizations have a summary that mentions the word 'software'?,Complex Aggregation Queries,companies
+List the countries that have organizations with a motto.,Complex Aggregation Queries,companies
+Which organizations are mentioned in articles from the year 2022?,Complex Aggregation Queries,companies
+Which cities have more than three organizations based in them?,Complex Aggregation Queries,companies
+Who are the parents of persons who are CEOs of major organizations?,Complex Aggregation Queries,companies
+What are the summaries of articles mentioning organizations in the electronics industry?,Complex Aggregation Queries,companies
+Which countries are associated with cities that host major software companies?,Complex Aggregation Queries,companies
+List all organizations that have subsidiaries and are not dissolved.,Complex Aggregation Queries,companies
+Who are the children of persons named in the organization board member directories?,Complex Aggregation Queries,companies
+Which organizations have more than two competitors?,Complex Aggregation Queries,companies
+List the top 3 organizations with the highest sentiment score in their mentioned articles.,Complex Aggregation Queries,companies
+Which organizations have industry categories that include 'Electronic Products Manufacturers'?,Complex Aggregation Queries,companies
+Who are the current CEOs of public organizations?,Complex Aggregation Queries,companies
+What are the challenges faced by organizations headquartered in non-capital cities?,Complex Aggregation Queries,companies
+List the countries where organizations with a revenue less than $10 million are located.,Complex Aggregation Queries,companies
+Which organizations have a CEO and also have a subsidiary?,Complex Aggregation Queries,companies
+List all articles that mention organizations headquartered in the United States of America.,Complex Aggregation Queries,companies
+Which organizations are suppliers to companies in the energy sector?,Complex Aggregation Queries,companies
+What are the cities where organizations with the highest number of suppliers are located?,Complex Aggregation Queries,companies
+List the industries that have organizations with CEOs named 'Julie Spellman Sweet'.,Complex Aggregation Queries,companies
+Which organizations have more than 500 employees and have been dissolved?,Complex Aggregation Queries,companies
+Who are the board members of the top 5 organizations by revenue?,Complex Aggregation Queries,companies
+What are the names of organizations that are suppliers to more than three other organizations?,Complex Aggregation Queries,companies
+Which organizations have a parent company named 'Accenture'?,Complex Aggregation Queries,companies
+List all organizations that have been mentioned in articles with a negative sentiment.,Complex Aggregation Queries,companies
+Which organizations have a CEO who has authored articles?,Complex Aggregation Queries,companies
+What are the organizations that are headquartered in cities that are also mentioned in articles with a positive sentiment?,Complex Aggregation Queries,companies
+Provide the names of the organizations that have more than three board members.,Complex Aggregation Queries,companies
+Which organizations have CEOs that are also board members of other organizations?,Complex Aggregation Queries,companies
+"List the organizations that have subsidiaries and are headquartered in cities with more than 500,000 residents.",Complex Aggregation Queries,companies
+Who are the investors of organizations with a revenue exceeding $500 million?,Complex Aggregation Queries,companies
+What are the names of the top 3 organizations in terms of revenue in the electronics industry?,Complex Aggregation Queries,companies
+Which organizations have more than one industry category?,Complex Aggregation Queries,companies
+List articles that mention organizations based in countries not in North America.,Complex Aggregation Queries,companies
+What are the names of organizations that have a motto mentioning 'innovation'?,Complex Aggregation Queries,companies
+Which organizations are headquartered in cities named 'Rome' across different countries?,Complex Aggregation Queries,companies
+Who are the children of CEOs of organizations with a revenue over $1 billion?,Complex Aggregation Queries,companies
+List the cities where organizations with more than 500 employees are headquartered.,Complex Aggregation Queries,companies
+Which organizations have subsidiaries in more than three different countries?,Complex Aggregation Queries,companies
+What are the names of organizations that have been dissolved but still have a CEO listed?,Complex Aggregation Queries,companies
+Which organizations have a board member named 'Julie Spellman Sweet'?,Complex Aggregation Queries,companies
+Who are the parents of CEOs of organizations that are public?,Complex Aggregation Queries,companies
+List the organizations that have been mentioned in articles with a sentiment score of exactly 0.5.,Complex Aggregation Queries,companies
+Which organizations have a summary that mentions 'consumer behavior'?,Complex Aggregation Queries,companies
+What are the countries where organizations with a public status are headquartered?,Complex Aggregation Queries,companies
+Which organizations are mentioned in articles with titles containing the word 'security'?,Complex Aggregation Queries,companies
+List the organizations that have more than five categories listed in their industry classification.,Complex Aggregation Queries,companies
+Who are the CEOs of organizations that have been dissolved but mentioned in recent articles?,Complex Aggregation Queries,companies
+List the organizations that have a CEO with the name 'David Correa'.,Complex Aggregation Queries,companies
+What are the names of organizations that are suppliers to those in the telecommunications industry?,Complex Aggregation Queries,companies
+Which organizations have a city location with a summary mentioning 'county seat'?,Complex Aggregation Queries,companies
+"List the articles mentioning organizations with revenues under $500,000.",Complex Aggregation Queries,companies
+Who are the parents of the board members of organizations with revenues over $1 million?,Complex Aggregation Queries,companies
+Which organizations have the most articles mentioning them in 2022?,Complex Aggregation Queries,companies
+List all organizations that have a CEO and more than 10 suppliers.,Complex Aggregation Queries,companies
+Who are the investors of organizations mentioned in articles with a positive sentiment?,Complex Aggregation Queries,companies
+Which organizations have a revenue greater than 100 million and are not dissolved?,Verbose query,companies
+"List the first 5 organizations that have been mentioned in articles published after January 1st, 2020.",Verbose query,companies
+Find the top 3 cities where organizations with more than 500 employees are located.,Verbose query,companies
+What are the names of the industry categories that have at least three organizations associated with them?,Verbose query,companies
+Identify the first 5 people who are CEOs of public companies.,Verbose query,companies
+Which organizations have a subsidiary with fewer than 50 employees?,Verbose query,companies
+List the first 3 countries that are home to more than one city mentioned in the schema.,Verbose query,companies
+What are the names of the people who have both a parent and a child listed in the schema?,Verbose query,companies
+Identify the top 3 organizations that have the highest number of suppliers.,Verbose query,companies
+List the first 5 organizations that are competitors and are both public companies.,Verbose query,companies
+Which organizations have a CEO named 'Julie Spellman Sweet'?,Verbose query,companies
+Find the top 3 organizations that have been invested in by more than one person.,Verbose query,companies
+What are the names of the organizations that are headquartered in cities with a summary stating they are a county seat?,Verbose query,companies
+Identify the first 5 articles that mention organizations headquartered in the United States of America.,Verbose query,companies
+Which organizations have a board member who is also a CEO of another organization?,Verbose query,companies
+List the first 3 organizations with the highest revenue that are also dissolved.,Verbose query,companies
+What are the names of the people who are board members of at least two different organizations?,Verbose query,companies
+Identify the top 3 cities where organizations with a revenue less than 10 million are located.,Verbose query,companies
+List the first 5 organizations that have a motto including the word 'security'.,Verbose query,companies
+Which organizations are headquartered in a city that is not the capital of its country?,Verbose query,companies
+What are the names of the organizations that have an industry category named 'Electronic Products Manufacturers'?,Verbose query,companies
+Find the top 3 articles with the highest sentiment scores mentioning organizations with over 1000 employees.,Verbose query,companies
+List the first 5 people who are investors in more than one organization.,Verbose query,companies
+Which organizations have a summary mentioning 'software' and are public companies?,Verbose query,companies
+Identify the top 3 organizations that have been dissolved but still have a CEO listed.,Verbose query,companies
+List the first 5 organizations with the most number of employees that have a subsidiary.,Verbose query,companies
+What are the names of the organizations that have a subsidiary named 'Accenture'?,Verbose query,companies
+Find the top 3 countries mentioned in articles that have the lowest sentiment scores.,Verbose query,companies
+List the first 5 organizations that have a CEO who has authored an article.,Verbose query,companies
+Which organizations have a city with a summary mentioning 'county seat' as their location?,Verbose query,companies
+Identify the top 3 organizations with the smallest number of employees that are public.,Verbose query,companies
+List the first 5 organizations with a revenue greater than 50 million that have a competitor.,Verbose query,companies
+What are the names of the organizations that have a CEO with a summary mentioning 'CEO at Accenture'?,Verbose query,companies
+Find the top 3 articles that mention organizations based in Rome.,Verbose query,companies
+List the first 5 industry categories that have organizations with a summary mentioning 'technology'.,Verbose query,companies
+Which organizations are mentioned in articles with a sentiment score greater than 0.8?,Verbose query,companies
+Identify the top 3 organizations with the most subsidiaries.,Verbose query,companies
+List the first 5 organizations that have a CEO who is also a board member of another organization.,Verbose query,companies
+What are the names of the organizations that have a supplier with a revenue less than 5 million?,Verbose query,companies
+Find the top 3 organizations that are public and have been mentioned in the most articles.,Verbose query,companies
+List the first 5 people who have children that are CEOs of an organization.,Verbose query,companies
+Which organizations have a CEO with the name 'Julie Spellman Sweet' and a revenue greater than 100 million?,Verbose query,companies
+Identify the top 3 organizations with the most articles mentioning them.,Verbose query,companies
+List the first 5 organizations that have a subsidiary with a summary mentioning 'Dublin'.,Verbose query,companies
+What are the names of the organizations that have a CEO with a summary mentioning 'Accenture'?,Verbose query,companies
+Find the top 3 cities mentioned in articles with the highest sentiment scores.,Verbose query,companies
+List the first 5 organizations that have a CEO who is also a board member of a competitor.,Verbose query,companies
+Which organizations have a subsidiary in a city named 'Seattle'?,Verbose query,companies
+Identify the top 3 organizations with the most board members.,Verbose query,companies
+List the first 5 organizations that have a supplier with a revenue greater than 100 million.,Verbose query,companies
+What are the names of the organizations that have a CEO named after a person with a summary mentioning 'CEO at Accenture'?,Verbose query,companies
+Find the top 3 industry categories with the most organizations.,Verbose query,companies
+List the first 5 organizations that have a board member with the same name as a CEO of another organization.,Verbose query,companies
+Which organizations have a supplier named 'Accenture'?,Verbose query,companies
+Identify the top 3 organizations with the most children as subsidiaries.,Verbose query,companies
+List the first 5 organizations that have a CEO who has authored more than one article.,Verbose query,companies
+What are the names of the organizations that have a board member named 'Julie Spellman Sweet'?,Verbose query,companies
+Find the top 3 countries with the most cities mentioned in the schema.,Verbose query,companies
+List the first 5 organizations with a motto mentioning 'security' and more than 500 employees.,Verbose query,companies
+Which organizations have a CEO with a name mentioned in more than one article?,Verbose query,companies
+Identify the top 3 organizations with the most competitors.,Verbose query,companies
+List the first 5 organizations that have an investor with a name mentioned in at least two different articles.,Verbose query,companies
+What are the names of the organizations that are competitors and have a CEO named 'Julie Spellman Sweet'?,Verbose query,companies
+Find the top 3 articles with the lowest sentiment scores mentioning organizations based in Chicago.,Verbose query,companies
+List the first 5 organizations that have a revenue greater than 10 million and are headquartered in a city named 'Seattle'.,Verbose query,companies
+Which organizations have a board member who has authored an article?,Verbose query,companies
+Identify the top 3 organizations with a CEO who has a summary mentioning 'Accenture'.,Verbose query,companies
+List the first 5 organizations that have a summary mentioning 'software company'.,Verbose query,companies
+What are the names of the organizations that have a subsidiary with a revenue greater than 50 million?,Verbose query,companies
+Find the top 3 organizations with the most suppliers.,Verbose query,companies
+List the first 5 organizations that are public and have a CEO with a summary mentioning 'Accenture'.,Verbose query,companies
+Which organizations have a CEO named 'Julie Spellman Sweet' and are headquartered in 'Seattle'?,Verbose query,companies
+Identify the top 3 organizations with a CEO who has authored an article.,Verbose query,companies
+List the first 5 organizations with a subsidiary in a country named 'United States of America'.,Verbose query,companies
+What are the names of the organizations that have a CEO with a name mentioned in an article with a sentiment score greater than 0.8?,Verbose query,companies
+Find the top 3 organizations that have the most board members who are also CEOs of other organizations.,Verbose query,companies
+List the first 5 organizations that have a CEO with a summary mentioning 'software'.,Verbose query,companies
+Which organizations have a board member with a name mentioned in more than one article?,Verbose query,companies
+Identify the top 3 organizations with the highest revenue that are headquartered in a country named 'United States of America'.,Verbose query,companies
+List the first 5 organizations that have a CEO with a name mentioned in at least two different articles.,Verbose query,companies
+What are the names of the organizations that have a board member named 'Julie Spellman Sweet' and a revenue greater than 100 million?,Verbose query,companies
+Find the top 3 organizations that have a CEO with a summary mentioning 'Accenture' and a revenue greater than 50 million.,Verbose query,companies
+List the first 5 organizations that have a supplier headquartered in a city named 'Seattle'.,Verbose query,companies
+Which organizations have a CEO who has authored an article with a sentiment score greater than 0.5?,Verbose query,companies
+Identify the top 3 organizations that have a subsidiary with the largest number of employees.,Verbose query,companies
+List the first 5 organizations that have a CEO with a name mentioned in more than one article.,Verbose query,companies
+What are the names of the organizations that have a CEO with a summary mentioning 'Accenture' and a revenue greater than 100 million?,Verbose query,companies
+Find the top 3 articles that mention organizations based in 'Seattle'.,Verbose query,companies
+List the first 5 organizations that have a CEO with a name mentioned in at least two different articles and a revenue greater than 50 million.,Verbose query,companies
+Which organizations have a CEO named 'Julie Spellman Sweet' and a summary mentioning 'Accenture'?,Verbose query,companies
+Identify the top 3 organizations with the most subsidiaries headquartered in a city named 'Seattle'.,Verbose query,companies
+List the first 5 organizations that have a CEO with a name mentioned in more than one article and a revenue greater than 100 million.,Verbose query,companies
+List the top 5 countries by the number of filings where they are the originator.,Simple Retrieval Queries,fincen
+What are the first 3 banks that have filed the most filings?,Simple Retrieval Queries,fincen
+Which 5 entities have been concerned the most in filings?,Simple Retrieval Queries,fincen
+Show the top 5 originator banks by the total amount of transactions.,Simple Retrieval Queries,fincen
+Which 3 countries have the highest number of beneficiary entities?,Simple Retrieval Queries,fincen
+List the top 3 filings with the highest amount.,Simple Retrieval Queries,fincen
+Show the first 5 entities that have been beneficiaries the most times.,Simple Retrieval Queries,fincen
+What are the top 5 countries based on the number of originator entities they have?,Simple Retrieval Queries,fincen
+List the first 3 entities that have filed the most number of transactions in 2015.,Simple Retrieval Queries,fincen
+Which 5 filings involved the highest number of entities as beneficiaries?,Simple Retrieval Queries,fincen
+Show the top 3 originator banks by the total number of transactions in 2014.,Simple Retrieval Queries,fincen
+List the first 5 countries by the number of filings where they are the beneficiary.,Simple Retrieval Queries,fincen
+What are the 3 most frequent beneficiary banks in transactions over $1 million?,Simple Retrieval Queries,fincen
+Which 3 filings have the shortest duration from begin to end date?,Simple Retrieval Queries,fincen
+List the top 5 beneficiary banks by the total amount received from filings.,Simple Retrieval Queries,fincen
+Show the first 3 originator countries by the total amount sent in transactions.,Simple Retrieval Queries,fincen
+Which 5 entities are most frequently listed as originators in filings from 2010 to 2015?,Simple Retrieval Queries,fincen
+List the first 3 entities by the number of concerns they have in filings.,Simple Retrieval Queries,fincen
+Show the top 5 beneficiary entities based on the total amount received.,Simple Retrieval Queries,fincen
+What are the first 3 filings with the most number of concerns?,Simple Retrieval Queries,fincen
+Which 5 filings have the longest duration from begin to end date?,Simple Retrieval Queries,fincen
+List the top 3 countries with the most filings as a beneficiary in 2013.,Simple Retrieval Queries,fincen
+Show the first 5 filings with the largest amount of money transferred.,Simple Retrieval Queries,fincen
+What are the top 3 originator banks in filings from the United Kingdom?,Simple Retrieval Queries,fincen
+Which 5 entities have the most filings concerning them from Germany?,Simple Retrieval Queries,fincen
+List the first 3 countries by the number of originator banks they have.,Simple Retrieval Queries,fincen
+Show the top 5 beneficiary countries by the total amount received in transactions.,Simple Retrieval Queries,fincen
+What are the first 3 filings with the smallest amount transferred?,Simple Retrieval Queries,fincen
+Which 5 filings have entities from more than one country as originators?,Simple Retrieval Queries,fincen
+List the top 3 countries based on the number of beneficiary banks they have.,Simple Retrieval Queries,fincen
+Show the first 5 originator entities by the total number of transactions they initiated.,Simple Retrieval Queries,fincen
+What are the top 3 beneficiary entities in transactions from Asia?,Simple Retrieval Queries,fincen
+Which 5 filings involved the most distinct banks as beneficiaries?,Simple Retrieval Queries,fincen
+List the first 3 filings that involved entities from both Europe and Asia as originators.,Simple Retrieval Queries,fincen
+Show the top 5 countries by the number of filings they are involved in as both originator and beneficiary.,Simple Retrieval Queries,fincen
+What are the first 3 filings with entities from three different continents as originators?,Simple Retrieval Queries,fincen
+Which 5 countries have the highest total amount of transactions where they are the beneficiary?,Simple Retrieval Queries,fincen
+"List the top 3 countries by the number of filings with transactions over $500,000.",Simple Retrieval Queries,fincen
+Show the first 5 filings that involved a change in beneficiary bank during the transaction.,Simple Retrieval Queries,fincen
+What are the top 3 countries with the most filings as an originator in 2012?,Simple Retrieval Queries,fincen
+Which 5 filings involve the most number of different originator iso codes?,Simple Retrieval Queries,fincen
+List the first 3 filings with a duration of exactly one month from begin to end date.,Simple Retrieval Queries,fincen
+Show the top 5 entities with the most filings as a beneficiary in the financial sector.,Simple Retrieval Queries,fincen
+What are the first 3 countries with entities that have filed the most in the technology sector?,Simple Retrieval Queries,fincen
+Which 5 filings had the most entities listed as originators?,Simple Retrieval Queries,fincen
+List the first 3 filings with entities that are both originator and beneficiary.,Simple Retrieval Queries,fincen
+Show the top 5 filings with the largest number of concerns.,Simple Retrieval Queries,fincen
+What are the first 3 filings where the originator and beneficiary are the same entity?,Simple Retrieval Queries,fincen
+Which 5 countries have the highest number of filings involving transactions above $2 million?,Simple Retrieval Queries,fincen
+List the top 3 filings with the most entities involved as beneficiaries from the same country.,Simple Retrieval Queries,fincen
+"Show the first 5 countries with the most filings involving transactions below $100,000.",Simple Retrieval Queries,fincen
+What are the first 3 filings with the highest number of entities concerned from the same country?,Simple Retrieval Queries,fincen
+Which 5 countries have the least number of filings as a beneficiary?,Simple Retrieval Queries,fincen
+List the top 3 originator banks with the most filings involving transactions above $1 million.,Simple Retrieval Queries,fincen
+Show the first 5 entities that have filed the most number of transactions involving multiple countries.,Simple Retrieval Queries,fincen
+What are the top 3 filings with the most entities listed as originators from different countries?,Simple Retrieval Queries,fincen
+Which 5 countries have the highest total number of filings as an originator?,Simple Retrieval Queries,fincen
+List the first 3 countries by the number of filings they have as a beneficiary in transactions involving multiple currencies.,Simple Retrieval Queries,fincen
+Show the top 5 filings with the most entities involved as originators from the same country.,Simple Retrieval Queries,fincen
+What are the first 3 filings with the highest total number of concerns?,Simple Retrieval Queries,fincen
+Which 5 countries have the highest number of filings with entities as both originator and beneficiary?,Simple Retrieval Queries,fincen
+List the first 3 filings with the longest duration and involve entities from more than two countries.,Simple Retrieval Queries,fincen
+Show the top 5 entities by the number of filings they are involved in as both originator and beneficiary.,Simple Retrieval Queries,fincen
+What are the top 3 filings with the highest number of entities involved as concerns from different sectors?,Simple Retrieval Queries,fincen
+Which 5 countries have the most filings as originators in the last quarter of any year?,Simple Retrieval Queries,fincen
+"List the top 3 originator banks by the number of filings involving transactions below $50,000.",Simple Retrieval Queries,fincen
+Show the first 5 filings with the most entities involved as concerns from the same sector.,Simple Retrieval Queries,fincen
+What are the top 3 beneficiary banks in transactions involving multiple currencies?,Simple Retrieval Queries,fincen
+Which 5 filings have the most distinct beneficiary iso codes involved?,Simple Retrieval Queries,fincen
+List the first 3 filings with entities from more than three different countries as beneficiaries.,Simple Retrieval Queries,fincen
+Show the top 5 countries with the most filings where they are both originator and beneficiary in transactions involving multiple currencies.,Simple Retrieval Queries,fincen
+What are the first 3 filings with the highest number of entities listed as concerns from different countries?,Simple Retrieval Queries,fincen
+Which 5 countries have the most filings involving transactions above $10 million?,Simple Retrieval Queries,fincen
+List the top 3 entities by the number of filings they are involved in as beneficiary in the healthcare sector.,Simple Retrieval Queries,fincen
+"Show the first 5 countries with the highest number of filings involving transactions under $500,000.",Simple Retrieval Queries,fincen
+What are the top 3 beneficiary banks by the number of filings involving transactions from Europe?,Simple Retrieval Queries,fincen
+Which 5 countries have the most filings as beneficiaries in the first half of any year?,Simple Retrieval Queries,fincen
+List the first 3 filings with the highest number of entities involved as originators from the same country.,Simple Retrieval Queries,fincen
+Show the top 5 filings with the most entities involved as originators from different sectors.,Simple Retrieval Queries,fincen
+What are the first 3 filings with the highest number of entities listed as benefits from different countries?,Simple Retrieval Queries,fincen
+Which 5 countries have the highest total amount of transactions where they are the originator?,Simple Retrieval Queries,fincen
+List the top 3 entities by the number of filings they are involved in as concerns in the financial sector.,Simple Retrieval Queries,fincen
+Show the first 5 filings with the most entities involved as benefits from the same country.,Simple Retrieval Queries,fincen
+What are the top 3 filings with the most number of different beneficiary banks involved?,Simple Retrieval Queries,fincen
+Which 5 countries have the most filings involving entities from more than two different sectors?,Simple Retrieval Queries,fincen
+List the top 3 beneficiary banks by the number of filings involving transactions over $2 million.,Simple Retrieval Queries,fincen
+Show the first 5 filings with the longest duration and involve entities from more than three different countries.,Simple Retrieval Queries,fincen
+What are the top 3 filings with the highest number of entities involved as originators from the same sector?,Simple Retrieval Queries,fincen
+Which 5 countries have the highest number of filings where they are both originator and beneficiary in transactions involving multiple currencies?,Simple Retrieval Queries,fincen
+List the top 3 filings with the highest number of entities involved as originators from different sectors.,Simple Retrieval Queries,fincen
+Show the first 5 countries with the highest number of filings involving transactions involving multiple countries.,Simple Retrieval Queries,fincen
+What are the top 3 filings with the most entities involved as concerns from the same country?,Simple Retrieval Queries,fincen
+Which 5 countries have the highest number of filings involving transactions below $1 million?,Simple Retrieval Queries,fincen
+List the top 3 entities by the number of filings they are involved in as originators in the technology sector.,Simple Retrieval Queries,fincen
+Show the first 5 filings with the most entities involved as concerns from different sectors.,Simple Retrieval Queries,fincen
+What are the names of the top 3 countries by the number of originator banks based on filings?,Complex Retrieval Queries,fincen
+Which 5 filings have the highest amount transferred between 2015 and 2017?,Complex Retrieval Queries,fincen
+List the first 3 originator banks located in 'Australia'.,Complex Retrieval Queries,fincen
+Which 3 entities have filed the most number of filings?,Complex Retrieval Queries,fincen
+What are the top 5 beneficiary banks that have received funds from 'CIMB Bank Berhad'?,Complex Retrieval Queries,fincen
+"Identify the top 3 countries where the beneficiary banks are located, based on the total amount transferred.",Complex Retrieval Queries,fincen
+Which 3 filings have an end date later than '2017-01-01'?,Complex Retrieval Queries,fincen
+What are the names of the top 3 entities that have been concerned in filings more than 20 times?,Complex Retrieval Queries,fincen
+List the first 3 originator banks from 'Singapore'.,Complex Retrieval Queries,fincen
+Which 3 beneficiary banks received the highest total amount in transactions from filings originated in 'United Kingdom'?,Complex Retrieval Queries,fincen
+What are the top 5 filings by amount that involve 'The Bank of New York Mellon Corp.' as the filer?,Complex Retrieval Queries,fincen
+Which 3 countries have the most entities linked as originators in the filings?,Complex Retrieval Queries,fincen
+What are the names of the top 3 entities by number of filings they have originated?,Complex Retrieval Queries,fincen
+List the first 3 filings where the originator bank is from 'Japan'.,Complex Retrieval Queries,fincen
+Identify the top 5 beneficiary banks that received funds from filings where the originator bank country is 'China'.,Complex Retrieval Queries,fincen
+What are the top 3 countries by the number of filings where they appear as the beneficiary bank country?,Complex Retrieval Queries,fincen
+Which 3 filings have the smallest amount and involve an entity from 'France' as the originator?,Complex Retrieval Queries,fincen
+List the first 3 entities that originated filings with an amount over 100 million USD.,Complex Retrieval Queries,fincen
+What are the top 5 filings by number where 'Deutsche Bank AG' is the beneficiary bank?,Complex Retrieval Queries,fincen
+Which 3 entities have the most filings as beneficiaries and are located in 'Germany'?,Complex Retrieval Queries,fincen
+Identify the top 3 beneficiary banks that have received funds in filings where the originator bank is 'Barclays Bank Plc'.,Complex Retrieval Queries,fincen
+List the top 3 countries by the number of entities that have filed more than 30 filings.,Complex Retrieval Queries,fincen
+Which 3 filings have the longest duration from beginning to end date and involve an originator bank from 'USA'?,Complex Retrieval Queries,fincen
+What are the top 5 entities by number of filings where the beneficiary bank is 'HSBC'?,Complex Retrieval Queries,fincen
+Which 3 filings have the smallest number of transactions but involve a beneficiary bank from 'India'?,Complex Retrieval Queries,fincen
+List the top 3 filings by amount where the beneficiary bank is from 'Switzerland'.,Complex Retrieval Queries,fincen
+Identify the top 5 filings that ended in the year 2016 and involve an originator bank from 'Canada'.,Complex Retrieval Queries,fincen
+What are the top 3 entities that have originated filings concerning banks in 'Russia'?,Complex Retrieval Queries,fincen
+Which 3 countries have beneficiary banks that received the highest total amounts in filings?,Complex Retrieval Queries,fincen
+List the first 3 filings where the beneficiary bank's country is 'Brazil' and the amount is over 1 million USD.,Complex Retrieval Queries,fincen
+What are the names of the top 3 originator banks that have initiated filings with an end date before '2005-01-01'?,Complex Retrieval Queries,fincen
+Which 3 entities have been the originator in filings with the highest total amounts transferred?,Complex Retrieval Queries,fincen
+Identify the top 5 countries by the number of filings where the originator bank is located.,Complex Retrieval Queries,fincen
+List the first 3 entities that have been beneficiaries in filings originating from 'United Arab Emirates'.,Complex Retrieval Queries,fincen
+What are the top 5 filings by amount that involved 'Bank of Baku' as the originator?,Complex Retrieval Queries,fincen
+Which 3 countries have the most entities linked as beneficiaries in filings?,Complex Retrieval Queries,fincen
+List the top 3 entities by the number of filings they are concerned in.,Complex Retrieval Queries,fincen
+Identify the top 5 countries where the originator banks of the filings are based.,Complex Retrieval Queries,fincen
+Which 3 filings involve an entity from 'Mexico' as the beneficiary and the amount is over 500000 USD?,Complex Retrieval Queries,fincen
+What are the top 5 entities by amount received in filings where they are the beneficiary?,Complex Retrieval Queries,fincen
+List the first 3 filings where the originator bank's country is 'Italy' and the amount transferred is over 10 million USD.,Complex Retrieval Queries,fincen
+Which 3 entities have filed the most number of filings concerning banks in 'Australia'?,Complex Retrieval Queries,fincen
+Identify the top 5 filings by amount where the originator bank is 'The Bank of New York Mellon Corp.'.,Complex Retrieval Queries,fincen
+What are the top 3 countries by the number of filings where they appear as the originator bank country?,Complex Retrieval Queries,fincen
+List the first 3 filings with the highest number of transactions that involve a beneficiary bank from 'Japan'.,Complex Retrieval Queries,fincen
+Which 3 entities have been the originator in the filings with the longest durations from beginning to end date?,Complex Retrieval Queries,fincen
+Identify the top 5 entities by number of filings where the originator bank is 'HSBC'.,Complex Retrieval Queries,fincen
+What are the top 3 countries by the number of filings where they are the beneficiary bank country?,Complex Retrieval Queries,fincen
+List the first 3 filings where the beneficiary bank country is 'Spain' and the amount is over 5 million USD.,Complex Retrieval Queries,fincen
+Which 3 entities have originated the most filings with a beneficiary bank in 'United Kingdom'?,Complex Retrieval Queries,fincen
+Identify the top 5 countries by the number of filings where the beneficiary bank is located.,Complex Retrieval Queries,fincen
+What are the top 3 countries by the number of entities that have filed filings with a beneficiary bank in 'France'?,Complex Retrieval Queries,fincen
+List the top 3 filings by amount that involve an originator bank from 'Singapore'.,Complex Retrieval Queries,fincen
+Which 3 countries have the most filings where the originator bank is based in their territory?,Complex Retrieval Queries,fincen
+Identify the top 5 beneficiary banks that have received the highest amounts from filings where the originator bank country is 'Germany'.,Complex Retrieval Queries,fincen
+What are the names of the top 3 originator banks that have initiated the most filings with a beneficiary in 'USA'?,Complex Retrieval Queries,fincen
+Which 3 entities have the most filings as originators and are located in 'China'?,Complex Retrieval Queries,fincen
+List the first 3 entities that have been beneficiaries in filings with an amount over 50 million USD.,Complex Retrieval Queries,fincen
+Identify the top 5 filings by number that involve 'CIMB Bank Berhad' as the originator.,Complex Retrieval Queries,fincen
+What are the top 3 countries by the number of filings where they appear as the originator bank country?,Complex Retrieval Queries,fincen
+List the top 3 countries by the number of filings that have a beneficiary bank based in their territory.,Complex Retrieval Queries,fincen
+Identify the top 5 entities by number of filings where the beneficiary bank is 'Barclays Bank Plc'.,Complex Retrieval Queries,fincen
+Which 3 countries have the most entities linked as originators in the filings?,Complex Retrieval Queries,fincen
+List the first 3 entities that have originated filings with an end date after '2016-01-01'.,Complex Retrieval Queries,fincen
+What are the top 5 filings by amount that involve an originator bank from 'Australia'?,Complex Retrieval Queries,fincen
+Which 3 entities have the most filings as beneficiaries and are located in 'India'?,Complex Retrieval Queries,fincen
+List the top 3 filings by amount where the beneficiary bank is from 'USA'.,Complex Retrieval Queries,fincen
+Identify the top 5 filings that ended in the year 2014 and involve an originator bank from 'United Kingdom'.,Complex Retrieval Queries,fincen
+What are the top 3 entities that have originated filings concerning banks in 'China'?,Complex Retrieval Queries,fincen
+Which 3 countries have beneficiary banks that received the highest total amounts in filings?,Complex Retrieval Queries,fincen
+What are the names of the top 5 countries by the number of originating banks?,Simple Aggregation Queries,fincen
+List the top 3 countries based on the number of beneficiary banks.,Simple Aggregation Queries,fincen
+What are the top 5 filings by amount in 2015?,Simple Aggregation Queries,fincen
+Which 3 countries have the most filings where the originator bank is not in the same country as the beneficiary bank?,Simple Aggregation Queries,fincen
+Identify the top 5 entities by the number of filings they filed.,Simple Aggregation Queries,fincen
+What are the names of the top 3 originator banks that have originated the highest amounts in filings?,Simple Aggregation Queries,fincen
+Which 3 beneficiary banks have been involved in filings with the highest total amounts?,Simple Aggregation Queries,fincen
+List the top 3 filings with the highest number of transactions in a single filing.,Simple Aggregation Queries,fincen
+What are the top 5 countries in terms of total amount received by beneficiary banks?,Simple Aggregation Queries,fincen
+Which 3 entities have been filed against the most in terms of number of filings?,Simple Aggregation Queries,fincen
+List the top 5 countries where most originator banks are located based on filings.,Simple Aggregation Queries,fincen
+What are the top 3 filings in terms of amount that occurred in 2016?,Simple Aggregation Queries,fincen
+Which 3 countries have the highest average amounts in filings where they are listed as originator?,Simple Aggregation Queries,fincen
+Identify the top 5 entities that have originated the most filings.,Simple Aggregation Queries,fincen
+What are the top 5 filings by duration (from 'begin' to 'end')?,Simple Aggregation Queries,fincen
+Which 3 countries have beneficiary banks that have been involved in the highest number of filings?,Simple Aggregation Queries,fincen
+List the top 5 entities that have been concerned in filings the most.,Simple Aggregation Queries,fincen
+Which 3 countries have the most filings where the amount is above 1 million?,Simple Aggregation Queries,fincen
+List the top 5 filings with the shortest duration between 'begin' and 'end'.,Simple Aggregation Queries,fincen
+What are the names of the top 3 originator banks that have initiated filings with the most distinct beneficiary banks?,Simple Aggregation Queries,fincen
+Identify the top 5 countries by the number of entities filed against.,Simple Aggregation Queries,fincen
+Which 3 originator banks have the most filings associated with them?,Simple Aggregation Queries,fincen
+List the top 5 filings where the originator and beneficiary banks are in the same country.,Simple Aggregation Queries,fincen
+What are the top 5 countries in terms of total amount sent by originator banks?,Simple Aggregation Queries,fincen
+Which 3 entities have benefited from the most filings?,Simple Aggregation Queries,fincen
+List the top 3 filings with the largest number of transactions where the originator bank's country and beneficiary bank's country are different.,Simple Aggregation Queries,fincen
+Identify the top 5 entities that have the most connections to countries through the relationship [:COUNTRY].,Simple Aggregation Queries,fincen
+Which 3 filings have the largest amounts where the beneficiary bank's country is 'United Kingdom'?,Simple Aggregation Queries,fincen
+List the top 5 originator banks based on the total number of filings they have originated.,Simple Aggregation Queries,fincen
+What are the names of the top 3 beneficiary banks based on the number of different originator banks they have interacted with in filings?,Simple Aggregation Queries,fincen
+Which 3 countries have the largest number of entities that are originators in filings?,Simple Aggregation Queries,fincen
+List the top 5 filings where the originator bank's country is 'Singapore'.,Simple Aggregation Queries,fincen
+"What are the top 5 countries where the beneficiary banks are located, based on the total number of filings?",Simple Aggregation Queries,fincen
+Which 3 entities have the largest number of incoming [:BENEFITS] relationships?,Simple Aggregation Queries,fincen
+List the top 3 countries where the originator banks have originated the smallest total amounts in filings.,Simple Aggregation Queries,fincen
+What are the top 5 filings by amount where the filing year is 2017?,Simple Aggregation Queries,fincen
+Which 3 countries have the highest number of filings where the beneficiary bank's country is 'Germany'?,Simple Aggregation Queries,fincen
+List the top 5 filings where the originator bank's country and beneficiary bank's country are the same but not 'United Kingdom'.,Simple Aggregation Queries,fincen
+"What are the top 5 countries by the number of filings where the amount is between 100,000 and 1,000,000?",Simple Aggregation Queries,fincen
+"Which 3 filings have the longest duration from 'begin' to 'end' where the amount is over 500,000?",Simple Aggregation Queries,fincen
+List the top 5 entities based on the number of [:CONCERNS] relationships they are involved in.,Simple Aggregation Queries,fincen
+Identify the top 5 filings with the most distinct beneficiary banks involved.,Simple Aggregation Queries,fincen
+Which 3 countries have the most filings where the originator bank's country is 'United States'?,Simple Aggregation Queries,fincen
+List the top 5 originator banks that have originated filings with the highest average amounts.,Simple Aggregation Queries,fincen
+What are the names of the top 3 entities based on the number of [:FILED] relationships?,Simple Aggregation Queries,fincen
+Which 3 beneficiary banks have been involved in filings with the smallest total amounts?,Simple Aggregation Queries,fincen
+List the top 5 countries by the number of filings where the originator bank is located in 'China'.,Simple Aggregation Queries,fincen
+What are the top 5 countries by the number of beneficiary banks involved in filings with amounts over 2 million?,Simple Aggregation Queries,fincen
+Which 3 filings have the smallest amounts where the beneficiary bank's country is 'Japan'?,Simple Aggregation Queries,fincen
+List the top 5 filings where the beneficiary bank's country and originator bank's country are different and the amount is above 1 million.,Simple Aggregation Queries,fincen
+List the top 5 Filings with the highest amounts.,Pathfinding Queries,fincen
+Which Entities have filed more than 3 Filings?,Pathfinding Queries,fincen
+Find the top 3 Countries based on the number of originating Filings.,Pathfinding Queries,fincen
+"What are the names of Entities that are concerned by Filings involving more than $1,000,000?",Pathfinding Queries,fincen
+Who are the beneficiaries in Filings that originated from entities in 'Singapore'?,Pathfinding Queries,fincen
+Display the top 5 longest Filings by duration between begin and end dates.,Pathfinding Queries,fincen
+What are the names of the top 3 Entities by the total amount of Filings they have benefited from?,Pathfinding Queries,fincen
+Which Country has the most Entities registered with it?,Pathfinding Queries,fincen
+"Show the top 5 Filings where the amount is between $500,000 and $1,000,000.",Pathfinding Queries,fincen
+List Entities that originated Filings to more than two different countries.,Pathfinding Queries,fincen
+Which Filings have a beneficiary bank located in the 'United Kingdom'?,Pathfinding Queries,fincen
+Show the top 3 Filings with the earliest begin dates.,Pathfinding Queries,fincen
+Which Entities are associated with Filings that have the originator bank country as 'Angola'?,Pathfinding Queries,fincen
+List the Filings where the beneficiary bank and originator bank are from the same country.,Pathfinding Queries,fincen
+Find the top 3 Filings with the smallest amount.,Pathfinding Queries,fincen
+Display the Entities that are associated with the most number of Filings as a beneficiary.,Pathfinding Queries,fincen
+What are the top 5 Countries where the Filings' beneficiary banks are located?,Pathfinding Queries,fincen
+Which Filings involve Entities that are linked to the 'CHN' country code?,Pathfinding Queries,fincen
+"List the top 3 Filings where the amount is exactly $1,000,000.",Pathfinding Queries,fincen
+Who are the Entities that filed the Filings with a begin date in 'March 2015'?,Pathfinding Queries,fincen
+Find the top 5 Filings by number of transactions.,Pathfinding Queries,fincen
+Show the names of Entities that have originator banks in 'Singapore'.,Pathfinding Queries,fincen
+Which Filings have an end date later than 'September 2015'?,Pathfinding Queries,fincen
+List the top 3 longest Filings in terms of duration from the begin to the end date.,Pathfinding Queries,fincen
+Who are the beneficiaries in Filings that have an originator bank from 'Angola'?,Pathfinding Queries,fincen
+Display all Filings where the originator and beneficiary banks are different.,Pathfinding Queries,fincen
+What are the top 5 Filings with the highest number of transactions?,Pathfinding Queries,fincen
+Which Countries have the most Entities as originators in Filings?,Pathfinding Queries,fincen
+Show the top 3 Filings where the beneficiary bank country is 'Singapore'.,Pathfinding Queries,fincen
+List the Filings where the originator bank country and beneficiary bank country are the same.,Pathfinding Queries,fincen
+Find the top 5 Filings by amount where the originator is from 'United Kingdom'.,Pathfinding Queries,fincen
+Which Filings have a beneficiary bank in 'Angola'?,Pathfinding Queries,fincen
+Show the top 3 Entities that have filed the most number of Filings.,Pathfinding Queries,fincen
+"List the Entities that have benefited from Filings with an amount over $2,000,000.",Pathfinding Queries,fincen
+Which Filings have an originator bank with a country code of 'SGP'?,Pathfinding Queries,fincen
+Display the top 5 Entities by the number of Filings they have originated.,Pathfinding Queries,fincen
+What are the names of the top 3 Countries that have beneficiary banks in Filings?,Pathfinding Queries,fincen
+Which Filings are concerned by Entities located in 'Singapore'?,Pathfinding Queries,fincen
+"List the Filings where the amount is greater than $1,500,000.",Pathfinding Queries,fincen
+Find the top 5 Filings with the shortest duration between begin and end dates.,Pathfinding Queries,fincen
+"Who are the beneficiaries in Filings that involved an amount over $2,000,000?",Pathfinding Queries,fincen
+Display all Filings where the originator and beneficiary banks are from 'Singapore'.,Pathfinding Queries,fincen
+What are the top 5 Filings where the beneficiary bank is located in the 'United Kingdom'?,Pathfinding Queries,fincen
+Which Filings have a beneficiary bank in 'China'?,Pathfinding Queries,fincen
+Show the top 3 Filings where the originator bank is 'CIMB Bank Berhad'.,Pathfinding Queries,fincen
+List the Entities that are concerned by Filings where the originator bank is in 'Angola'.,Pathfinding Queries,fincen
+Find the top 5 Filings with the lowest number of transactions.,Pathfinding Queries,fincen
+Which Countries have the most beneficiary banks in Filings?,Pathfinding Queries,fincen
+Show the top 3 Filings with the latest end dates.,Pathfinding Queries,fincen
+What are the names of the Entities that have filed the Filings with a begin date in '2014'?,Pathfinding Queries,fincen
+What are the top 3 filings by amount where the originator bank country is 'Singapore'?,Complex Aggregation Queries,fincen
+List the top 5 countries by the number of entities located there.,Complex Aggregation Queries,fincen
+Which 3 entities filed the most filings between 2010 and 2015?,Complex Aggregation Queries,fincen
+Find the top 5 filings with the largest amounts that concern entities in 'China'.,Complex Aggregation Queries,fincen
+What are the top 3 filings where the beneficiary bank is 'Barclays Bank Plc' and the amount is over 1000000?,Complex Aggregation Queries,fincen
+List the top 5 entities that have originated filings with amounts greater than 500000.,Complex Aggregation Queries,fincen
+Which 3 countries have the most entities with filings related to 'Barclays Bank Plc' as the beneficiary bank?,Complex Aggregation Queries,fincen
+What are the top 5 filings from originators in 'Singapore' concerning entities in 'United Kingdom'?,Complex Aggregation Queries,fincen
+List the top 3 countries connected to entities that have originated filings with amounts over 2000000.,Complex Aggregation Queries,fincen
+Which 5 entities have their locations in countries with the top-level domain '.cn'?,Complex Aggregation Queries,fincen
+Find the top 3 filings with the earliest begin dates and amounts over 100000.,Complex Aggregation Queries,fincen
+Which 5 filings ended the latest and concern entities in 'China'?,Complex Aggregation Queries,fincen
+List the top 3 filings with originator banks in 'Singapore' and amounts exceeding 1500000.,Complex Aggregation Queries,fincen
+What are the top 5 entities linked to the most filings where the beneficiary bank country is 'United Kingdom'?,Complex Aggregation Queries,fincen
+Which 3 countries have entities that have filed the most filings with beneficiary banks in 'Singapore'?,Complex Aggregation Queries,fincen
+List the top 5 filings where the originator bank country is 'Singapore' and the amount is between 500000 and 2000000.,Complex Aggregation Queries,fincen
+What are the top 3 entities with the most filings that benefit entities in 'United Kingdom'?,Complex Aggregation Queries,fincen
+Which 5 countries have entities that are beneficiaries in filings where the amount is over 2500000?,Complex Aggregation Queries,fincen
+List the top 3 filings where the originator bank is 'CIMB Bank Berhad' and the beneficiary bank country is 'United Kingdom'.,Complex Aggregation Queries,fincen
+What are the top 5 countries with entities that have originated filings with the highest average amounts?,Complex Aggregation Queries,fincen
+List the top 5 countries by the number of entities based on the [:COUNTRY] relationship.,Verbose query,fincen
+Find the first 3 filings that originated from entities in Singapore.,Verbose query,fincen
+What are the top 5 entities that have filed the most transactions with a beneficiary in the United Kingdom?,Verbose query,fincen
+Which 3 filings involved the highest amounts between March 2015 and September 2015?,Verbose query,fincen
+Identify the top 3 countries where the originator banks of filings are located.,Verbose query,fincen
+"What are the first 5 filings with an amount greater than 500,000 USD?",Verbose query,fincen
+List the top 3 originator banks that have initiated filings with beneficiary banks located in Singapore.,Verbose query,fincen
+Which 3 entities have been involved as beneficiaries in the most filings?,Verbose query,fincen
+Find the top 5 filings by amount where the beneficiary bank's country is 'United Kingdom'.,Verbose query,fincen
+What are the first 3 entities that have filed a transaction where the originator and beneficiary banks are from different countries?,Verbose query,fincen
+Identify the top 5 filings where the originator bank's country is 'Singapore' and the beneficiary bank's country is 'United Kingdom'.,Verbose query,fincen
+What are the top 3 filings with the longest duration between begin and end dates?,Verbose query,fincen
+List the first 3 entities that have filed the most transactions with a beneficiary in 'China'.,Verbose query,fincen
+Identify the top 5 filings by amount where the beneficiary bank's country is 'Singapore'.,Verbose query,fincen
+What are the first 3 countries that have the most entities with filings in the database?,Verbose query,fincen
+List the top 3 filings with the smallest amounts.,Verbose query,fincen
+Which 3 entities have filed the most transactions where the amount is greater than 1 million USD?,Verbose query,fincen
+Find the top 5 originator banks with filings that have the shortest duration between begin and end dates.,Verbose query,fincen
+What are the first 3 entities linked to countries with the top-level domain '.sg'?,Verbose query,fincen
+List the top 3 filings where the beneficiary bank is 'Barclays Bank Plc' with the amount specified.,Verbose query,fincen
+Which 3 filings involve entities that are both the originator and beneficiary of the filing?,Verbose query,fincen
+Identify the top 5 entities based on the number of filings where they have acted as both originator and beneficiary.,Verbose query,fincen
+What are the first 3 filings where the originator bank's country is 'Angola'?,Verbose query,fincen
+List the top 3 filings by amount where the originator bank is 'CIMB Bank Berhad'.,Verbose query,fincen
+Which 3 entities have the most relationships with filings where the originator bank country is 'United Kingdom'?,Verbose query,fincen
+"Find the top 5 filings where the beneficiary bank country is 'Singapore' and the amount is over 500,000 USD.",Verbose query,fincen
+What are the first 3 filings with a beneficiary bank located in 'United Kingdom' that involve an amount greater than 1 million USD?,Verbose query,fincen
+List the top 3 countries by the number of filings where the originator bank is located.,Verbose query,fincen
+Which 3 entities have the most filings that concern entities based in 'China'?,Verbose query,fincen
+Identify the top 5 filings where the beneficiary bank is 'United Overseas Bank Ltd' and the amount specified.,Verbose query,fincen
+What are the first 3 filings with the shortest duration between begin and end dates?,Verbose query,fincen
+List the top 3 filings involving entities from 'Singapore' based on the amount.,Verbose query,fincen
+Which 3 countries have the most entities involved as beneficiaries in filings?,Verbose query,fincen
+"Find the top 5 filings where the originator bank's country is 'Angola' and the amount is over 100,000 USD.",Verbose query,fincen
+What are the first 3 filings where the originator and beneficiary banks have the same country of origin?,Verbose query,fincen
+List the top 3 entities based on the number of relationships they have with countries.,Verbose query,fincen
+Which 3 filings have the most significant difference in latitude between originator and beneficiary banks?,Verbose query,fincen
+Identify the top 5 filings where the originator bank is 'CIMB Bank Berhad'.,Verbose query,fincen
+What are the first 3 filings with a beneficiary bank located in 'Singapore' that have the smallest amounts?,Verbose query,fincen
+"List the top 3 entities that have filed the most transactions involving an amount greater than 500,000 USD.",Verbose query,fincen
+Which 3 filings have involved entities with the longest relationships based on begin and end dates?,Verbose query,fincen
+Find the top 5 filings by number where the originator bank's country is 'United Kingdom'.,Verbose query,fincen
+What are the first 3 entities that have filed transactions where the originator bank is located in 'Angola'?,Verbose query,fincen
+List the top 3 countries by the number of originator banks located there based on the filings.,Verbose query,fincen
+Which 3 filings involve the highest amounts where the beneficiary bank's country is 'United Kingdom' and the originator bank's country is 'Singapore'?,Verbose query,fincen
+Identify the top 5 entities based on the total amount of their filings where the beneficiary bank's country is 'Singapore'.,Verbose query,fincen
+What are the first 3 countries that are linked to the most entities based on the [:COUNTRY] relationship?,Verbose query,fincen
+List the top 3 filings where the originator bank is from a country with a top-level domain '.uk'.,Verbose query,fincen
+Which 3 entities have filed the most transactions where the beneficiary bank is located in 'United Kingdom'?,Verbose query,fincen
+Find the top 5 filings with the shortest durations where the originator bank's country is 'Singapore'.,Verbose query,fincen
+What are the first 3 filings with a beneficiary bank located in 'Angola' that involves the smallest amounts?,Verbose query,fincen
+List the top 3 originator banks based on the number of filings where the beneficiary bank is located in 'United Kingdom'.,Verbose query,fincen
+Which 3 entities have the most relationships with filings where the beneficiary bank country is 'Angola'?,Verbose query,fincen
+Identify the top 5 countries based on the number of filings where the beneficiary bank is located.,Verbose query,fincen
+What are the first 3 entities that have filed transactions where the beneficiary bank is located in 'Singapore'?,Verbose query,fincen
+What are the top 3 businesses in 'Missoula'?,Simple Retrieval Queries,grandstack
+List the first 5 businesses in 'San Mateo'.,Simple Retrieval Queries,grandstack
+Show the names of 3 businesses located on '200 W Pine St'.,Simple Retrieval Queries,grandstack
+Which 3 users wrote reviews?,Simple Retrieval Queries,grandstack
+Name the 3 businesses that have been reviewed with 5 stars.,Simple Retrieval Queries,grandstack
+List the top 5 business names in 'Burlingame'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses categorized as 'Beer'?,Simple Retrieval Queries,grandstack
+Show the first 3 reviews written by 'Jenny'.,Simple Retrieval Queries,grandstack
+Which 3 businesses are located in the state 'CA'?,Simple Retrieval Queries,grandstack
+List the addresses of 5 businesses that have reviews.,Simple Retrieval Queries,grandstack
+What are the top 3 categories available for businesses?,Simple Retrieval Queries,grandstack
+Show the first 3 review texts for businesses in 'Missoula'.,Simple Retrieval Queries,grandstack
+Which 3 users have written a review on 'Neo4j'?,Simple Retrieval Queries,grandstack
+List the names of 5 businesses that have a review with at least 4.0 stars.,Simple Retrieval Queries,grandstack
+Show the first 3 reviews with text containing 'great selection'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses located on 'E Main St' or 'W Broadway St'?,Simple Retrieval Queries,grandstack
+List the top 5 reviews with a star rating above 4.5.,Simple Retrieval Queries,grandstack
+Which 3 businesses have the most reviews in 'Missoula'?,Simple Retrieval Queries,grandstack
+Name the top 3 users based on the number of reviews written.,Simple Retrieval Queries,grandstack
+Show the business addresses for 'KettleHouse Brewing Co.' and 'Imagine Nation Brewing'.,Simple Retrieval Queries,grandstack
+What are the top 3 most recent reviews for businesses in 'CA'?,Simple Retrieval Queries,grandstack
+List the names of businesses reviewed by 'Will' with more than 4 stars.,Simple Retrieval Queries,grandstack
+Which 3 businesses have been reviewed on '2018-09-10'?,Simple Retrieval Queries,grandstack
+Show the first 3 users who have written a review on 'Ducky's Car Wash'.,Simple Retrieval Queries,grandstack
+List the first 5 business names along 'California Dr'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses that have an address in 'San Mateo'?,Simple Retrieval Queries,grandstack
+Show the names of businesses that have a 'Library' category in 'Missoula'.,Simple Retrieval Queries,grandstack
+Which 3 businesses have been reviewed by 'Angie'?,Simple Retrieval Queries,grandstack
+List the first 3 businesses with a state property of 'MT'.,Simple Retrieval Queries,grandstack
+Show the top 5 reviews with the earliest review dates.,Simple Retrieval Queries,grandstack
+What are the first 3 business names that have been reviewed with a text mentioning 'breakfast'?,Simple Retrieval Queries,grandstack
+List the names of 3 businesses located at '313 N 1st St W' or '111 E 5th Ave'.,Simple Retrieval Queries,grandstack
+Which 3 users have reviewed businesses on 'E Front St'?,Simple Retrieval Queries,grandstack
+Show the names of 3 businesses that have been reviewed in September 2018.,Simple Retrieval Queries,grandstack
+List the first 5 business names with a review containing the word 'Love'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses in 'Burlingame' with reviews?,Simple Retrieval Queries,grandstack
+Show the first 3 reviews for businesses categorized under 'Beer'.,Simple Retrieval Queries,grandstack
+Which 3 users wrote the most recent reviews?,Simple Retrieval Queries,grandstack
+List the first 5 businesses that Jenny reviewed.,Simple Retrieval Queries,grandstack
+Show the first 3 reviews that mention 'IPA'.,Simple Retrieval Queries,grandstack
+What are the names of businesses with addresses in 'Burlingame' and have been reviewed?,Simple Retrieval Queries,grandstack
+List the first 3 categories for businesses in 'San Mateo'.,Simple Retrieval Queries,grandstack
+Which 3 businesses are categorized under 'Car Wash' in 'Missoula'?,Simple Retrieval Queries,grandstack
+Show the names of 3 businesses where 'Bob' wrote a review.,Simple Retrieval Queries,grandstack
+List the first 5 reviews for businesses in 'Missoula' with a star rating of 5.0.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses in 'CA' with reviews mentioning 'great'?,Simple Retrieval Queries,grandstack
+Show the top 3 reviews for 'Zootown Brew'.,Simple Retrieval Queries,grandstack
+Which 3 businesses have the address '723 California Dr'?,Simple Retrieval Queries,grandstack
+List the names of 3 users who wrote a review in 2016.,Simple Retrieval Queries,grandstack
+Show the first 5 reviews with a star rating below 4.0.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses with reviews written in August 2015?,Simple Retrieval Queries,grandstack
+List the first 3 businesses in 'San Mateo' that have been reviewed.,Simple Retrieval Queries,grandstack
+Which 3 businesses have reviews mentioning 'Awesome service'?,Simple Retrieval Queries,grandstack
+Show the names of 3 businesses where reviews mention 'sandwich'.,Simple Retrieval Queries,grandstack
+List the top 5 businesses by the number of reviews they received in 2017.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses with reviews from 'Angie' with at least 4 stars?,Simple Retrieval Queries,grandstack
+Show the first 3 businesses reviewed by 'Jenny' in 2017.,Simple Retrieval Queries,grandstack
+Which 3 businesses have a review mentioning 'selection of books'?,Simple Retrieval Queries,grandstack
+List the first 5 reviews mentioning 'car wash'.,Simple Retrieval Queries,grandstack
+Show the first 3 businesses categorized under 'Public Library'.,Simple Retrieval Queries,grandstack
+What are the first 3 reviews mentioning 'Farmer's Market'?,Simple Retrieval Queries,grandstack
+List the names of 3 businesses located at '716 N San Mateo Dr'.,Simple Retrieval Queries,grandstack
+Which 3 businesses have been reviewed by 'Bob' in 'Burlingame'?,Simple Retrieval Queries,grandstack
+Show the names of 3 businesses in 'Missoula' reviewed by 'Will'.,Simple Retrieval Queries,grandstack
+List the first 5 reviews for businesses located on 'E Front St'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses with reviews written by 'Angie'?,Simple Retrieval Queries,grandstack
+Show the first 3 businesses in 'San Mateo' categorized under 'Brewery'.,Simple Retrieval Queries,grandstack
+Which 3 businesses have the most recent reviews?,Simple Retrieval Queries,grandstack
+List the names of 3 businesses in 'CA' that have been reviewed.,Simple Retrieval Queries,grandstack
+Show the first 3 businesses that have been reviewed and are located on 'W Broadway St'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses in 'Burlingame' that have been reviewed by 'Bob'?,Simple Retrieval Queries,grandstack
+List the first 3 businesses in 'Missoula' with reviews mentioning 'great IPA'.,Simple Retrieval Queries,grandstack
+Which 3 businesses have been reviewed by users from 'MT'?,Simple Retrieval Queries,grandstack
+Show the first 5 businesses with reviews mentioning 'awesome'.,Simple Retrieval Queries,grandstack
+List the first 3 reviews for businesses on 'California Dr'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses with reviews written on '2018-09-10'?,Simple Retrieval Queries,grandstack
+Show the first 3 businesses in 'Missoula' that have been reviewed by 'Angie'.,Simple Retrieval Queries,grandstack
+List the first 5 businesses that have been categorized under 'Car Wash'.,Simple Retrieval Queries,grandstack
+Which 3 businesses have reviews from 'Will' with a star rating of 5.0?,Simple Retrieval Queries,grandstack
+Show the names of 3 businesses with reviews containing the word 'world's leading'.,Simple Retrieval Queries,grandstack
+List the first 5 reviews for businesses on 'Broadway St'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses in 'CA' that have been reviewed by 'Jenny'?,Simple Retrieval Queries,grandstack
+Show the first 3 reviews for businesses with a review date in 2016.,Simple Retrieval Queries,grandstack
+Which 3 businesses have been reviewed by 'Bob' and are located in 'San Mateo'?,Simple Retrieval Queries,grandstack
+List the names of 3 businesses with reviews mentioning 'not great'.,Simple Retrieval Queries,grandstack
+Show the first 3 businesses in 'CA' reviewed by 'Will'.,Simple Retrieval Queries,grandstack
+List the first 5 businesses that have been reviewed and are located in 'Burlingame'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses in 'Missoula' with reviews mentioning 'selection'?,Simple Retrieval Queries,grandstack
+Show the first 3 reviews for businesses with addresses on 'E Main St'.,Simple Retrieval Queries,grandstack
+Which 3 businesses have reviews mentioning 'sandwich' at 'Farmer's Market'?,Simple Retrieval Queries,grandstack
+List the names of 3 businesses in 'CA' with the highest star ratings in reviews.,Simple Retrieval Queries,grandstack
+Show the first 5 businesses in 'San Mateo' that have been reviewed.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses with the most reviews in 2017?,Simple Retrieval Queries,grandstack
+List the first 3 businesses in 'Missoula' with a review date in 2018.,Simple Retrieval Queries,grandstack
+Which 3 businesses have reviews from 'Jenny' with a star rating above 4.5?,Simple Retrieval Queries,grandstack
+Show the first 3 businesses with reviews mentioning 'IPA selection'.,Simple Retrieval Queries,grandstack
+List the names of 3 businesses reviewed by 'Angie' in 'CA'.,Simple Retrieval Queries,grandstack
+What are the names of the top 3 businesses in 'Missoula' based on the number of reviews?,Simple Retrieval Queries,grandstack
+Show the first 3 businesses in 'Burlingame' with reviews mentioning 'awesome'.,Simple Retrieval Queries,grandstack
+List the names of 3 businesses with reviews on 'W Pine St'.,Simple Retrieval Queries,grandstack
+Which 3 businesses have been reviewed by 'Will' in 'San Mateo'?,Simple Retrieval Queries,grandstack
+Show the names of 3 businesses with reviews from 'Bob' with a star rating below 4.5.,Simple Retrieval Queries,grandstack
+List the first 5 businesses with reviews mentioning 'car wash' in 'Burlingame'.,Simple Retrieval Queries,grandstack
+What are the names of 3 businesses in 'CA' reviewed by 'Angie' with a star rating of 5.0?,Simple Retrieval Queries,grandstack
+Show the names of the first 3 businesses reviewed by 'Jenny' with texts mentioning 'great selection'.,Simple Retrieval Queries,grandstack
+List the first 5 businesses in 'Missoula' that have been reviewed by 'Will'.,Simple Retrieval Queries,grandstack
+Which 3 businesses have reviews mentioning 'love'?,Simple Retrieval Queries,grandstack
+Which businesses are located in Missoula and have a businessId starting with 'b3'?,Complex Retrieval Queries,grandstack
+What are the names of businesses in San Mateo that are categorized as 'Coffee'?,Complex Retrieval Queries,grandstack
+Find the names of all users who wrote a review with 5 stars.,Complex Retrieval Queries,grandstack
+List the businesses reviewed by Jenny.,Complex Retrieval Queries,grandstack
+What are the top 3 highest-rated reviews and which businesses do they correspond to?,Complex Retrieval Queries,grandstack
+Name the businesses that have been reviewed in September 2018.,Complex Retrieval Queries,grandstack
+Which users have written reviews for businesses located at '200 W Pine St'?,Complex Retrieval Queries,grandstack
+Display the names of businesses with at least two reviews.,Complex Retrieval Queries,grandstack
+Identify businesses in 'Burlingame' that have a review text mentioning 'car wash'.,Complex Retrieval Queries,grandstack
+List the business names and locations that have been reviewed by users named Angie.,Complex Retrieval Queries,grandstack
+Which businesses are categorized under 'Library' and are located in 'CA'?,Complex Retrieval Queries,grandstack
+What are the categories of businesses that have a review with exactly 4.5 stars?,Complex Retrieval Queries,grandstack
+Name the businesses that have been reviewed on '2017-11-13'.,Complex Retrieval Queries,grandstack
+Find the businesses in 'CA' that have reviews with text containing 'graph database'.,Complex Retrieval Queries,grandstack
+Which businesses in 'Missoula' have a review with a rating of at least 4 stars?,Complex Retrieval Queries,grandstack
+Name the categories of businesses that are located on 'E Main St'.,Complex Retrieval Queries,grandstack
+List all businesses reviewed by users with a userId 'u2'.,Complex Retrieval Queries,grandstack
+What are the names of businesses that have a point location latitude greater than 46.87?,Complex Retrieval Queries,grandstack
+Which businesses have reviews written in August 2016?,Complex Retrieval Queries,grandstack
+List the businesses with addresses on 'Broadway St' and their corresponding review texts.,Complex Retrieval Queries,grandstack
+Identify the business categories in 'San Mateo' with reviews written by Bob.,Complex Retrieval Queries,grandstack
+Which businesses have a state code 'CA' and have received a review rating below 4 stars?,Complex Retrieval Queries,grandstack
+List the review dates for businesses named 'Neo4j'.,Complex Retrieval Queries,grandstack
+Which businesses located in 'MT' are categorized under 'Brewery'?,Complex Retrieval Queries,grandstack
+Find the businesses with addresses starting with '301' and list their categories.,Complex Retrieval Queries,grandstack
+Which users have written reviews for businesses in 'Burlingame'?,Complex Retrieval Queries,grandstack
+List the businesses that have reviews with text mentioning 'IPA selection'.,Complex Retrieval Queries,grandstack
+Name the businesses with the highest number of reviews in 'Missoula'.,Complex Retrieval Queries,grandstack
+Identify the businesses with reviews on or after '2018-01-01' and their corresponding users.,Complex Retrieval Queries,grandstack
+List the top 3 recent reviews and the corresponding businesses that received them.,Complex Retrieval Queries,grandstack
+Which businesses are located in Missoula?,Simple Aggregation Queries,grandstack
+List the top 5 businesses in California based on the number of reviews.,Simple Aggregation Queries,grandstack
+What are the names and addresses of businesses that have a rating of 4.0 or higher?,Simple Aggregation Queries,grandstack
+How many reviews does each business in San Mateo have? Limit the results to top 3 businesses.,Simple Aggregation Queries,grandstack
+Which users have written reviews for businesses located on 'W Broadway St'?,Simple Aggregation Queries,grandstack
+What are the recent three reviews for the business named 'Neo4j'?,Simple Aggregation Queries,grandstack
+Which businesses are in the category 'Library'?,Simple Aggregation Queries,grandstack
+How many businesses are there in each city? Display only for cities with at least two businesses.,Simple Aggregation Queries,grandstack
+What are the businesses with the highest review stars in Burlingame?,Simple Aggregation Queries,grandstack
+What are the addresses of 'Brewing Co.' businesses in Missoula?,Simple Aggregation Queries,grandstack
+Which users have written more than one review? List their names and the number of reviews they've written.,Simple Aggregation Queries,grandstack
+What is the average star rating for businesses in the 'Car Wash' category?,Simple Aggregation Queries,grandstack
+Which business has the most reviews written in 2017?,Simple Aggregation Queries,grandstack
+What are the names of businesses that are reviewed by user 'Will'?,Simple Aggregation Queries,grandstack
+Which business has the highest average review rating? Limit the results to top 3 businesses.,Simple Aggregation Queries,grandstack
+List all reviews that have 5 stars and were written in 2018.,Simple Aggregation Queries,grandstack
+What is the average number of stars given by each user? Limit the results to top 5 users.,Simple Aggregation Queries,grandstack
+Which categories does the business 'Missoula Public Library' belong to?,Simple Aggregation Queries,grandstack
+What are the names of businesses that have been reviewed at least three times?,Simple Aggregation Queries,grandstack
+Which user has the lowest average review stars? Display top 3 users.,Simple Aggregation Queries,grandstack
+What is the relationship between the business 'Hanabi' and its reviewers?,Simple Aggregation Queries,grandstack
+How many businesses are there in Missoula with a 5-star review?,Simple Aggregation Queries,grandstack
+What is the text of the most recent review for 'KettleHouse Brewing Co.'?,Simple Aggregation Queries,grandstack
+List the businesses that are located within 2 miles of '301 E Main St'.,Simple Aggregation Queries,grandstack
+Which users have never written a review?,Simple Aggregation Queries,grandstack
+What are the names of businesses that have a review with exactly 4.5 stars?,Simple Aggregation Queries,grandstack
+How many categories are there for each business? Limit the results to businesses with more than one category.,Simple Aggregation Queries,grandstack
+What is the name and address of the business with the oldest review date?,Simple Aggregation Queries,grandstack
+Which businesses have reviews with a star rating below 4? List the top 3.,Simple Aggregation Queries,grandstack
+What is the distribution of businesses by state?,Simple Aggregation Queries,grandstack
+Which user has reviewed the most distinct businesses?,Simple Aggregation Queries,grandstack
+How many reviews were written in the year 2016?,Simple Aggregation Queries,grandstack
+Which business located on 'E Front St' has the highest average star rating?,Simple Aggregation Queries,grandstack
+What is the text of the review with the lowest stars for the business named 'Market on Front'?,Simple Aggregation Queries,grandstack
+Which businesses have been reviewed both by 'Jenny' and 'Bob'?,Simple Aggregation Queries,grandstack
+How many businesses are there in each category? Limit the results to top 5 categories.,Simple Aggregation Queries,grandstack
+What are the names and review dates of reviews written by 'Angie'?,Simple Aggregation Queries,grandstack
+How many reviews does the 'Neo4j' business have?,Simple Aggregation Queries,grandstack
+What is the average star rating of businesses in 'Missoula'?,Simple Aggregation Queries,grandstack
+Which business has the newest review in 'San Mateo'?,Simple Aggregation Queries,grandstack
+List the businesses that have been reviewed in September 2018.,Simple Aggregation Queries,grandstack
+What are the names of businesses with a review text containing 'IPA'?,Simple Aggregation Queries,grandstack
+What are the names of users who have reviewed the 'Missoula Public Library'?,Simple Aggregation Queries,grandstack
+How many reviews mention 'breakfast'?,Simple Aggregation Queries,grandstack
+Which businesses have a user review that includes the word 'great'?,Simple Aggregation Queries,grandstack
+What are the cities with the highest number of reviews? Limit to top 3 cities.,Simple Aggregation Queries,grandstack
+Which category has the fewest businesses?,Simple Aggregation Queries,grandstack
+How many businesses have a point location within 1 mile of POINT(-113.995057 46.874029)?,Simple Aggregation Queries,grandstack
+What are the review texts for businesses on 'N San Mateo Dr'?,Simple Aggregation Queries,grandstack
+Which businesses have been reviewed on '2018-09-10'?,Simple Aggregation Queries,grandstack
+What are the names of businesses in Missoula that are categorized as breweries?,Pathfinding Queries,grandstack
+Which businesses in Burlingame have received a 5-star review?,Pathfinding Queries,grandstack
+List the names and addresses of businesses in San Mateo that have 'Car Wash' in their category.,Pathfinding Queries,grandstack
+How many users have written reviews for businesses located at '301 E Main St'?,Pathfinding Queries,grandstack
+Find the top 3 highest-rated businesses in Missoula.,Pathfinding Queries,grandstack
+What are the names of all users who have reviewed 'Neo4j'?,Pathfinding Queries,grandstack
+Which business has received the most reviews in 2018?,Pathfinding Queries,grandstack
+List all categories associated with businesses in 'San Mateo'.,Pathfinding Queries,grandstack
+What are the addresses of businesses that have reviews with 4 stars or more and are located in 'Burlingame'?,Pathfinding Queries,grandstack
+Which user has written the most reviews for businesses in 'Missoula'?,Pathfinding Queries,grandstack
+Identify businesses that have been reviewed by both 'Jenny' and 'Bob'.,Pathfinding Queries,grandstack
+What businesses are located at '200 W Pine St' and what categories are they in?,Pathfinding Queries,grandstack
+List the businesses that have received at least one review with a text mentioning 'great selection'.,Pathfinding Queries,grandstack
+Which business located in 'Missoula' has the newest review?,Pathfinding Queries,grandstack
+Find the top 5 longest reviews based on text length for businesses in 'Burlingame'.,Pathfinding Queries,grandstack
+What are the names of businesses with locations within a 1km radius of POINT(-113.995057 46.874029)?,Pathfinding Queries,grandstack
+How many different users have reviewed 'KettleHouse Brewing Co.'?,Pathfinding Queries,grandstack
+List all businesses with a review dated before 2016 and their corresponding review text.,Pathfinding Queries,grandstack
+Which categories include businesses that have been reviewed by 'Angie'?,Pathfinding Queries,grandstack
+Identify all users who have reviewed businesses on 'E Front St' and the names of those businesses.,Pathfinding Queries,grandstack
+What are the business names and categories for locations on 'Broadway St'?,Pathfinding Queries,grandstack
+Which businesses in 'Missoula' have received reviews with less than 4 stars?,Pathfinding Queries,grandstack
+"List the reviews, including text and stars, for businesses owned by 'Neo4j'.",Pathfinding Queries,grandstack
+Which user has the highest average star rating for their reviews and what businesses have they reviewed?,Pathfinding Queries,grandstack
+How many businesses in 'San Mateo' have been reviewed in September of any year?,Pathfinding Queries,grandstack
+Identify the businesses that have been reviewed exactly three times and list the review dates.,Pathfinding Queries,grandstack
+What are the names of businesses in 'Burlingame' that are categorized as libraries?,Pathfinding Queries,grandstack
+Which business has the oldest review and what is the text of that review?,Pathfinding Queries,grandstack
+List all businesses that have been reviewed by 'Will' and the corresponding categories of these businesses.,Pathfinding Queries,grandstack
+Find businesses in 'Missoula' that have received exactly two reviews and list the names of the reviewers.,Pathfinding Queries,grandstack
+What are the top 3 most frequent categories of businesses in 'San Mateo'?,Pathfinding Queries,grandstack
+Which businesses have a 'Library' category and are located in 'CA'?,Pathfinding Queries,grandstack
+List the reviews with a star rating of 5 for businesses on 'Main St' and the name of the reviewers.,Pathfinding Queries,grandstack
+Identify the business with the most reviews in 'Burlingame' and list its reviews.,Pathfinding Queries,grandstack
+What are the names of businesses on 'California Dr' and their corresponding categories?,Pathfinding Queries,grandstack
+Which users have reviewed more than one business in 'San Mateo' and what are those businesses?,Pathfinding Queries,grandstack
+List all businesses that have been reviewed on 'E Front St' and their review stars.,Pathfinding Queries,grandstack
+Which businesses in 'Missoula' have received reviews only from 'Jenny'?,Pathfinding Queries,grandstack
+Find businesses that have been reviewed on 'Pine St' and list their categories and review dates.,Pathfinding Queries,grandstack
+List the names of users who have reviewed businesses in both 'Missoula' and 'San Mateo'.,Pathfinding Queries,grandstack
+"What are the names, addresses, and categories of businesses that have been reviewed by 'Bob'?",Pathfinding Queries,grandstack
+Identify businesses in 'Burlingame' with reviews mentioning 'love' and list the reviewers.,Pathfinding Queries,grandstack
+Which business in 'San Mateo' has the highest average review star rating and what are its reviews?,Pathfinding Queries,grandstack
+List all users who have reviewed 'Zootown Brew' and the text of their reviews.,Pathfinding Queries,grandstack
+Which businesses have been reviewed by users named 'Angie' and 'Will' and what are the review texts?,Pathfinding Queries,grandstack
+Find the top 3 businesses in 'MT' based on the number of reviews they have received.,Pathfinding Queries,grandstack
+What are the review texts for the highest rated business in 'Burlingame'?,Pathfinding Queries,grandstack
+List the names of businesses in 'San Mateo' that are categorized as 'Car Wash' along with their reviews.,Pathfinding Queries,grandstack
+Which businesses on 'Broadway St' have been reviewed in 2017 and what are the reviewers' names?,Pathfinding Queries,grandstack
+Identify all businesses reviewed by 'Jenny' in '2016' and list the review stars and texts.,Pathfinding Queries,grandstack
+What are the names of businesses in 'Missoula' with reviews dated on or after '2017-01-01'?,Pathfinding Queries,grandstack
+List the businesses in 'San Mateo' that have received reviews with exactly 4 stars.,Pathfinding Queries,grandstack
+Which user has reviewed the most categories of businesses and what are those categories?,Pathfinding Queries,grandstack
+Identify businesses on '1st St W' with reviews mentioning 'selection' and list the review stars.,Pathfinding Queries,grandstack
+List the names of businesses in 'Burlingame' that have received a review from 'Angie' and the review dates.,Pathfinding Queries,grandstack
+Which business in 'Missoula' has the most reviews from 'Will' and what are the review texts?,Pathfinding Queries,grandstack
+Find the top 5 businesses with reviews mentioning 'IPA' and the names of the reviewers.,Pathfinding Queries,grandstack
+What are the names of businesses with reviews mentioning 'breakfast' and their corresponding categories?,Pathfinding Queries,grandstack
+Which businesses in 'CA' have been reviewed by 'Bob' and list the review stars.,Pathfinding Queries,grandstack
+Identify all businesses on 'Front St' with reviews from 'Jenny' and list the review dates.,Pathfinding Queries,grandstack
+List the names of businesses in 'San Mateo' that have been reviewed in '2018' and their review texts.,Pathfinding Queries,grandstack
+Which business has reviews with the text mentioning 'car wash' and what are the review dates?,Pathfinding Queries,grandstack
+List the names and categories of businesses on 'California Dr' that have received a 3-star review.,Pathfinding Queries,grandstack
+Which businesses in 'Missoula' have been reviewed by all listed users and what are the review texts?,Pathfinding Queries,grandstack
+Find businesses in 'Burlingame' that have been reviewed by 'Jenny' and list the categories of these businesses.,Pathfinding Queries,grandstack
+What are the names of businesses on '5th Ave' and their corresponding reviewers?,Pathfinding Queries,grandstack
+Identify the businesses in 'San Mateo' that have been reviewed by 'Will' and list the review texts.,Pathfinding Queries,grandstack
+List all businesses that have been reviewed by 'Bob' in 'CA' and the corresponding stars of those reviews.,Pathfinding Queries,grandstack
+Which business on 'Broadway St' has the lowest average review star rating and what are the review texts?,Pathfinding Queries,grandstack
+Find the top 3 longest reviews for businesses in 'Missoula' and the corresponding businesses names.,Pathfinding Queries,grandstack
+What are the names of businesses in 'Burlingame' with reviews dated in '2016' and the names of the reviewers?,Pathfinding Queries,grandstack
+List the businesses on 'Main St' that have been reviewed by 'Angie' and the corresponding review texts.,Pathfinding Queries,grandstack
+Which businesses in 'San Mateo' have been reviewed more than twice and what are the review stars?,Pathfinding Queries,grandstack
+Identify the businesses on 'Pine St' that have been reviewed in '2017' and list the reviewers' names.,Pathfinding Queries,grandstack
+What are the names of businesses in 'Missoula' that have been reviewed by users named 'Jenny' and 'Bob'?,Pathfinding Queries,grandstack
+List the names and categories of businesses on 'Broadway St' that have received a 5-star review.,Pathfinding Queries,grandstack
+Which businesses in 'Burlingame' have been reviewed in '2015' and what are the review texts?,Pathfinding Queries,grandstack
+Find the businesses in 'San Mateo' that have been reviewed by 'Angie' and list the review dates.,Pathfinding Queries,grandstack
+What are the names of businesses in 'Missoula' that are categorized as 'Breweries' and their review texts?,Pathfinding Queries,grandstack
+List all businesses in 'CA' that have been reviewed in '2017' and their corresponding categories.,Pathfinding Queries,grandstack
+Which businesses on '1st St W' have been reviewed by 'Will' and what are the review texts?,Pathfinding Queries,grandstack
+Identify businesses in 'Burlingame' with reviews mentioning 'awesome' and list the reviewers.,Pathfinding Queries,grandstack
+What are the names of businesses on 'California Dr' that have been reviewed in '2016' and their review texts?,Pathfinding Queries,grandstack
+List the businesses in 'San Mateo' that have received reviews mentioning 'graph database' and the reviewers' names.,Pathfinding Queries,grandstack
+Which business in 'Missoula' has the most diverse range of review stars and what are the review texts?,Pathfinding Queries,grandstack
+Find the top 5 businesses in 'CA' based on the number of reviews they have received.,Pathfinding Queries,grandstack
+What are the names of businesses in 'Burlingame' that have been reviewed by 'Will' and the corresponding review texts.,Pathfinding Queries,grandstack
+List the businesses on 'Broadway St' that have been reviewed by 'Angie' and the review dates.,Pathfinding Queries,grandstack
+Which businesses in 'San Mateo' have been reviewed by more than one user and what are the review texts?,Pathfinding Queries,grandstack
+Identify the business in 'Missoula' with the highest number of 5-star reviews and list the review texts.,Pathfinding Queries,grandstack
+List the businesses in 'CA' that have been reviewed in '2018' and their corresponding categories.,Pathfinding Queries,grandstack
+What are the names of businesses on '5th Ave' and their corresponding review stars?,Pathfinding Queries,grandstack
+Which businesses in 'Burlingame' have reviews mentioning 'love' and list the review dates.,Pathfinding Queries,grandstack
+Find the businesses in 'San Mateo' that have been reviewed by 'Jenny' and list the categories of these businesses.,Pathfinding Queries,grandstack
+What are the names of the top 5 businesses located in Missoula?,Complex Aggregation Queries,grandstack
+List the names of the businesses that have a review with 5 stars.,Complex Aggregation Queries,grandstack
+Which users have written a review for 'KettleHouse Brewing Co.'?,Complex Aggregation Queries,grandstack
+Show the top 3 business names in San Mateo along with their categories.,Complex Aggregation Queries,grandstack
+What are the addresses of the businesses categorized as 'Coffee'?,Complex Aggregation Queries,grandstack
+Find the top 3 users who have written the most reviews.,Complex Aggregation Queries,grandstack
+Which businesses have the highest average review stars? Only list the top 5.,Complex Aggregation Queries,grandstack
+What are the names of businesses located at '200 W Pine St' and '313 N 1st St W'?,Complex Aggregation Queries,grandstack
+List all the reviews written by the user 'Bob'.,Complex Aggregation Queries,grandstack
+What is the name of the business reviewed on '2018-09-10'?,Complex Aggregation Queries,grandstack
+Which businesses are located in California and have more than one review?,Complex Aggregation Queries,grandstack
+What are the business names that have been reviewed by 'Jenny'?,Complex Aggregation Queries,grandstack
+Which users have reviewed businesses in 'Burlingame'?,Complex Aggregation Queries,grandstack
+List the top 3 businesses by the number of reviews they received.,Complex Aggregation Queries,grandstack
+What are the names of businesses that have been reviewed with a rating less than 4.0?,Complex Aggregation Queries,grandstack
+Find all businesses and their categories in the state of 'CA'.,Complex Aggregation Queries,grandstack
+What are the recent 3 reviews for 'Neo4j'?,Complex Aggregation Queries,grandstack
+Which business has the most reviews in 'Missoula'?,Complex Aggregation Queries,grandstack
+List the users who have reviewed 'Ducky's Car Wash'.,Complex Aggregation Queries,grandstack
+Find the top 5 businesses with the highest average ratings and their addresses.,Complex Aggregation Queries,grandstack
+List all businesses located in Missoula.,Verbose query,grandstack
+Which businesses in Burlingame have an address on California Dr?,Verbose query,grandstack
+Identify the top 3 businesses by name that are in the city of San Mateo.,Verbose query,grandstack
+Find the first 5 users who wrote a review with a rating of 5 stars.,Verbose query,grandstack
+What are the names of the first 3 businesses categorized as a 'Library'?,Verbose query,grandstack
+Which users have written a review for 'KettleHouse Brewing Co.'?,Verbose query,grandstack
+List all reviews written by the user named 'Angie'.,Verbose query,grandstack
+Which businesses have received a review that mentioned 'great selection'?,Verbose query,grandstack
+Retrieve the top 5 reviews with a rating of 4 stars or higher.,Verbose query,grandstack
+What are the addresses of the first 3 businesses named 'Neo4j'?,Verbose query,grandstack
+List the cities and states for the businesses that have a name starting with 'Z'.,Verbose query,grandstack
+Which users wrote reviews for businesses located at '111 E 5th Ave'?,Verbose query,grandstack
+Find the first 5 businesses that have a category of 'Brewery'.,Verbose query,grandstack
+List all the reviews with a text containing 'car wash'.,Verbose query,grandstack
+Which business located in 'Missoula' has the highest rating based on reviews?,Verbose query,grandstack
+Retrieve the names of the first 3 businesses that are located within a 5-mile radius of POINT(-113.995297 46.877981).,Verbose query,grandstack
+Which users have written more than one review?,Verbose query,grandstack
+List the first 5 categories that have been associated with more than three businesses.,Verbose query,grandstack
+What are the business names and addresses for businesses that have received a review on '2018-09-10'?,Verbose query,grandstack
+Which reviews have a star rating exactly 3.0 and mention 'wifi'?,Verbose query,grandstack
+List the business names and review texts for the top 3 highest-rated reviews in 'Burlingame'.,Verbose query,grandstack
+Identify the first 3 businesses that have been reviewed by the user named 'Bob'.,Verbose query,grandstack
+List the top 5 reviews that mention 'breakfast' in their text.,Verbose query,grandstack
+Which businesses in 'San Mateo' have been reviewed in August 2016?,Verbose query,grandstack
+Retrieve the names of businesses that have been categorized under both 'Brewery' and 'Restaurant'.,Verbose query,grandstack
+List all reviews written in 2017 for businesses located on 'Broadway St'.,Verbose query,grandstack
+Which businesses have received reviews with a text mentioning 'books'?,Verbose query,grandstack
+Find the first 5 businesses located on 'Pine St' in any city.,Verbose query,grandstack
+List the business names and user names for reviews written in September 2015.,Verbose query,grandstack
+Which users have written a review for businesses located in 'CA'?,Verbose query,grandstack
+Retrieve the names and locations of the first 3 businesses that have received at least one review with a star rating of 5.0.,Verbose query,grandstack
+List the first 5 users who have written a review for a business in the category 'Car Wash'.,Verbose query,grandstack
+What are the names of the businesses that are located at '200 W Pine St'?,Verbose query,grandstack
+Which businesses have received reviews with texts containing the word 'IPA'?,Verbose query,grandstack
+Find the first 3 reviews with the lowest star ratings.,Verbose query,grandstack
+List the business names and address for the top 3 businesses with the most reviews.,Verbose query,grandstack
+Which users wrote reviews for businesses located on 'Main St'?,Verbose query,grandstack
+Retrieve the top 5 businesses that have been reviewed by users named 'Jenny'.,Verbose query,grandstack
+List all reviews with a star rating above 4.5.,Verbose query,grandstack
+Which businesses have a location point closest to POINT(-113.990976 46.870035)?,Verbose query,grandstack
+List the first 5 businesses that have not been reviewed yet.,Verbose query,grandstack
+What are the names of the first 3 businesses located in 'MT'?,Verbose query,grandstack
+Which business in 'San Mateo' has been reviewed most frequently?,Verbose query,grandstack
+List the user names and review texts for reviews written in January 2016.,Verbose query,grandstack
+Which businesses have been reviewed by all users?,Verbose query,grandstack
+Find the first 3 businesses that have been reviewed with a mention of 'library'.,Verbose query,grandstack
+List the first 5 reviews with a text mentioning 'sandwich'.,Verbose query,grandstack
+Which businesses located on '1st St' have received a review with a star rating of 4.0 or higher?,Verbose query,grandstack
+Retrieve the names of the first 3 businesses that have been reviewed in December 2017.,Verbose query,grandstack
+List the first 5 businesses that have received a review mentioning 'service'.,Verbose query,grandstack
+Which businesses in 'Burlingame' have received reviews with a star rating of 3.5 or higher?,Verbose query,grandstack
+What are the titles of the top 5 movies released in 1999?,Simple Retrieval Queries,movies
+List the first 3 movies reviewed by a person born in 1960.,Simple Retrieval Queries,movies
+Which movies have a tagline containing the word 'freedom'?,Simple Retrieval Queries,movies
+Find the top 5 movies with the highest votes released after 2000.,Simple Retrieval Queries,movies
+Who are the top 3 people born after 1970 who directed a movie?,Simple Retrieval Queries,movies
+List all movies released between 1990 and 2000 that have more than 100 votes.,Simple Retrieval Queries,movies
+What are the names of the first 5 people who acted in a movie with the tagline 'Everything is connected'?,Simple Retrieval Queries,movies
+Which top 3 movies released before 1985 were reviewed with a rating above 90?,Simple Retrieval Queries,movies
+List the first 5 movies produced by a person born in 1967.,Simple Retrieval Queries,movies
+Name the top 3 directors of movies that had a tagline mentioning 'Houston'.,Simple Retrieval Queries,movies
+What are the names of the first 3 people who reviewed a movie titled 'Apollo 13'?,Simple Retrieval Queries,movies
+Which top 5 people have directed movies with more than 200 votes?,Simple Retrieval Queries,movies
+List the first 3 people who acted in a movie released in 2012.,Simple Retrieval Queries,movies
+What are the names of the top 5 people who followed someone born in 1956?,Simple Retrieval Queries,movies
+Who are the top 3 producers of movies with a tagline including 'Speed'?,Simple Retrieval Queries,movies
+List the first 5 people who wrote a movie with a rating of at least 80 in a review.,Simple Retrieval Queries,movies
+Which movies released between 2005 and 2010 have the tagline 'Speed has no limits'?,Simple Retrieval Queries,movies
+Name the first 3 people born before 1970 who produced a movie released after 2000.,Simple Retrieval Queries,movies
+Which top 5 movies received the highest ratings in reviews written by someone born in 1965?,Simple Retrieval Queries,movies
+List the first 3 movies with a tagline containing the word 'real' and released before 2000.,Simple Retrieval Queries,movies
+What are the names of the top 5 people who acted in and also reviewed the same movie?,Simple Retrieval Queries,movies
+List the first 3 movies directed by persons who were born after 1950 and before 1960.,Simple Retrieval Queries,movies
+Who are the top 3 persons who have both directed and produced the same movie?,Simple Retrieval Queries,movies
+List the top 5 movies with a tagline mentioning 'compelling' and having more than 50 votes.,Simple Retrieval Queries,movies
+"Name the first 3 people who have reviewed a movie with a summary stating 'Silly, but fun'.",Simple Retrieval Queries,movies
+Which top 3 movies have been both produced and reviewed by the same person?,Simple Retrieval Queries,movies
+List the first 5 movies that have been acted in by someone with the role 'Captain' and reviewed with a rating below 60.,Simple Retrieval Queries,movies
+Who are the top 3 people born after 1960 who have directed a movie titled 'V for Vendetta'?,Simple Retrieval Queries,movies
+List the first 3 movies with a tagline containing 'limits' and released after 2005.,Simple Retrieval Queries,movies
+What are the names of the top 5 people who have followed more than three other persons?,Simple Retrieval Queries,movies
+List the top 5 persons who reviewed movies with a summary stating 'An amazing journey' and a rating above 80.,Simple Retrieval Queries,movies
+Who are the top 3 people who have acted in at least two movies with more than 100 votes each?,Simple Retrieval Queries,movies
+List the first 5 movies where the tagline includes the word 'Houston' and the released year is before 2000.,Simple Retrieval Queries,movies
+Name the first 3 people born before 1950 who have written a movie with a tagline mentioning 'journey'.,Simple Retrieval Queries,movies
+Which top 5 movies released between 1980 and 1990 have been reviewed with a summary mentioning 'compelling'?,Simple Retrieval Queries,movies
+List the first 3 persons who have produced a movie with a tagline including 'real world' and released after 1995.,Simple Retrieval Queries,movies
+Who are the top 3 directors of movies that have been reviewed with a summary stating 'Pretty funny at times'?,Simple Retrieval Queries,movies
+List the top 5 movies that have been directed by someone born in 1967.,Simple Retrieval Queries,movies
+Name the first 3 people who have reviewed a movie with a tagline stating 'Welcome to the Real World'.,Simple Retrieval Queries,movies
+Which movies have more than 1000 votes?,Complex Retrieval Queries,movies
+List all movies released after 2000.,Complex Retrieval Queries,movies
+Who acted in 'The Matrix'?,Complex Retrieval Queries,movies
+Find all directors of movies released before 1990.,Complex Retrieval Queries,movies
+Which persons have a birth year after 1950?,Complex Retrieval Queries,movies
+What are the roles of Keanu Reeves in 'The Matrix'?,Complex Retrieval Queries,movies
+How many movies has Keanu Reeves acted in?,Complex Retrieval Queries,movies
+List movies with a tagline that includes the word 'world'.,Complex Retrieval Queries,movies
+Which movies were produced by Joel Silver?,Complex Retrieval Queries,movies
+What are the highest-rated reviews and which movies do they belong to?,Complex Retrieval Queries,movies
+List all the movies reviewed with a rating above 80.,Complex Retrieval Queries,movies
+Who has reviewed 'Speed Racer' and what was their rating?,Complex Retrieval Queries,movies
+Find all the people who follow Keanu Reeves.,Complex Retrieval Queries,movies
+Who are the top 5 oldest actors in the database?,Complex Retrieval Queries,movies
+List all the movies reviewed with the summary 'An amazing journey'.,Complex Retrieval Queries,movies
+Which person wrote the most movies?,Complex Retrieval Queries,movies
+Who produced the most movies released after 2000?,Complex Retrieval Queries,movies
+List all movies with a release year in the 1980s.,Complex Retrieval Queries,movies
+Who directed 'Speed Racer'?,Complex Retrieval Queries,movies
+Find all actors born in the 1960s.,Complex Retrieval Queries,movies
+Who reviewed the most movies?,Complex Retrieval Queries,movies
+What are the different roles played by Laurence Fishburne in his career?,Complex Retrieval Queries,movies
+"List top 3 people who have directed, produced, and acted in the same movie.",Complex Retrieval Queries,movies
+Which movies have taglines longer than 30 characters?,Complex Retrieval Queries,movies
+List all relationships of Lana Wachowski.,Complex Retrieval Queries,movies
+Find movies with fewer than 50 votes.,Complex Retrieval Queries,movies
+Who has the highest number of follows among persons?,Complex Retrieval Queries,movies
+List all movies that were both acted in and directed by the same person.,Complex Retrieval Queries,movies
+"Which movies have been reviewed with the summary 'Dark, but compelling'?",Complex Retrieval Queries,movies
+Who was born in 1965 and has directed a movie?,Complex Retrieval Queries,movies
+List all movies with a released year divisible by 10.,Complex Retrieval Queries,movies
+What are the summaries of reviews for movies released before 1985?,Complex Retrieval Queries,movies
+"Who has acted in, directed, and produced the same movie?",Complex Retrieval Queries,movies
+List all movies with more than 3 roles listed in their ACTED_IN relationships.,Complex Retrieval Queries,movies
+Who has produced movies but never acted in any?,Complex Retrieval Queries,movies
+What roles did Laurence Fishburne play in 'The Matrix Revolutions'?,Complex Retrieval Queries,movies
+List the movies where the actors were born before 1950.,Complex Retrieval Queries,movies
+Who are the top 5 youngest producers?,Complex Retrieval Queries,movies
+"List all movies that have a 'Fun, but a little far fetched' review summary.",Complex Retrieval Queries,movies
+Which people have reviewed the movie with the highest votes?,Complex Retrieval Queries,movies
+List the movies directed by persons born after 1960.,Complex Retrieval Queries,movies
+Who has the most roles in a single movie?,Complex Retrieval Queries,movies
+List all movie titles with exactly one word in the title.,Complex Retrieval Queries,movies
+Who has directed the most movies with a tagline containing 'limit'?,Complex Retrieval Queries,movies
+Find all movies where Joel Silver acted.,Complex Retrieval Queries,movies
+Who are the top 3 youngest directors?,Complex Retrieval Queries,movies
+List all persons who have not reviewed any movies.,Complex Retrieval Queries,movies
+Who has produced the highest-rated reviewed movie?,Complex Retrieval Queries,movies
+What are the top 5 most frequently appearing review summaries?,Complex Retrieval Queries,movies
+List all persons who have directed and reviewed the same movie.,Complex Retrieval Queries,movies
+Find all persons born in 1996.,Complex Retrieval Queries,movies
+Who has the most diverse roles across different movies?,Complex Retrieval Queries,movies
+List all movies with a 'Pretty funny at times' review summary.,Complex Retrieval Queries,movies
+Which directors have also acted in the movies they directed?,Complex Retrieval Queries,movies
+Who has the longest name among all actors?,Complex Retrieval Queries,movies
+List the top 5 movies with the lowest votes.,Complex Retrieval Queries,movies
+Who has produced and written the same movie?,Complex Retrieval Queries,movies
+Find the youngest person who has reviewed a movie released before 1990.,Complex Retrieval Queries,movies
+Who has acted in the most movies released in the 1990s?,Complex Retrieval Queries,movies
+List all movies where the producer and director are the same person.,Complex Retrieval Queries,movies
+Which person reviewed 'The Matrix Revolutions' and what was their summary?,Complex Retrieval Queries,movies
+Who are the people who have not acted in any movie?,Complex Retrieval Queries,movies
+List the movies that have been reviewed with a rating less than 50.,Complex Retrieval Queries,movies
+Who directed the oldest movie in the database?,Complex Retrieval Queries,movies
+List all movies with taglines that start with 'The'.,Complex Retrieval Queries,movies
+Who has the most followers?,Complex Retrieval Queries,movies
+List top 5 movies reviewed by persons born before 1970.,Complex Retrieval Queries,movies
+Who has written the most movies released after 2000?,Complex Retrieval Queries,movies
+List all movies where the same person has acted and produced.,Complex Retrieval Queries,movies
+Which movies have been reviewed by persons following Keanu Reeves?,Complex Retrieval Queries,movies
+Who has directed and reviewed the same movie?,Complex Retrieval Queries,movies
+List the movies with exactly two roles in their ACTED_IN relationships.,Complex Retrieval Queries,movies
+"Who has the most movies with a 'Silly, but fun' review summary?",Complex Retrieval Queries,movies
+List all persons who have produced at least three movies.,Complex Retrieval Queries,movies
+Which movie has the highest number of votes and was released in the 1990s?,Complex Retrieval Queries,movies
+Who has acted in movies directed by Lana Wachowski?,Complex Retrieval Queries,movies
+List all movies that have been reviewed and produced by the same person.,Complex Retrieval Queries,movies
+Who are the top 3 actors with the most diverse roles?,Complex Retrieval Queries,movies
+List all movies with more than one person who has reviewed them.,Complex Retrieval Queries,movies
+Which persons have directed the most movies with a tagline containing 'world'?,Complex Retrieval Queries,movies
+List the movies that have been acted in by the oldest actor in the database.,Complex Retrieval Queries,movies
+Who has the most roles in movies released before 1985?,Complex Retrieval Queries,movies
+List all movies reviewed with a summary containing 'journey'.,Complex Retrieval Queries,movies
+Who has reviewed the most movies with a rating above 90?,Complex Retrieval Queries,movies
+List all movies where the producer has also acted.,Complex Retrieval Queries,movies
+Who has directed the most movies with at least three different actors?,Complex Retrieval Queries,movies
+Who reviewed 'The Matrix' and what was their rating?,Complex Retrieval Queries,movies
+List the top 5 youngest people who have written a movie.,Complex Retrieval Queries,movies
+Who has the most productions in movies released in the 2000s?,Complex Retrieval Queries,movies
+List all persons who have followed more than five other persons.,Complex Retrieval Queries,movies
+Which movies have been produced by persons born in the 1950s?,Complex Retrieval Queries,movies
+Who are the top 5 actors with the most reviews for movies they acted in?,Complex Retrieval Queries,movies
+List all movies with a tagline containing 'end'.,Complex Retrieval Queries,movies
+Who has the most directed movies without acting in any of them?,Complex Retrieval Queries,movies
+List all persons born in 1970 and what movies they have produced.,Complex Retrieval Queries,movies
+What are the titles of the top 5 movies with the highest number of votes?,Simple Aggregation Queries,movies
+List the names of 3 persons who were born after 1980.,Simple Aggregation Queries,movies
+Which movies were released between 1990 and 2000?,Simple Aggregation Queries,movies
+Name 3 movies that have the tagline 'Welcome to the Real World'.,Simple Aggregation Queries,movies
+Who are the top 5 actors by the number of movies they acted in?,Simple Aggregation Queries,movies
+Find 3 directors who directed movies released after 2000.,Simple Aggregation Queries,movies
+What are the names of 3 persons who reviewed movies with a rating above 80?,Simple Aggregation Queries,movies
+Identify 3 movies that were both produced and directed by the same person.,Simple Aggregation Queries,movies
+List the names of 3 persons who follow more than 5 other persons.,Simple Aggregation Queries,movies
+What are the top 3 movies by release year with a tagline containing 'freedom'?,Simple Aggregation Queries,movies
+Which 3 people have the smallest age difference between them?,Simple Aggregation Queries,movies
+List 3 movies with the most roles listed in the ACTED_IN relationship.,Simple Aggregation Queries,movies
+"Name 3 actors who have acted in a movie with the tagline 'Dark, but compelling'.",Simple Aggregation Queries,movies
+What are the top 3 highest rated reviews and which movies they are associated with?,Simple Aggregation Queries,movies
+Find 3 directors who have directed movies with fewer than 50 votes.,Simple Aggregation Queries,movies
+Which 3 movies have the longest taglines?,Simple Aggregation Queries,movies
+"List 3 persons who have acted in, directed, and produced at least one movie each.",Simple Aggregation Queries,movies
+What are the common movies acted in by people who were born in the same decade?,Simple Aggregation Queries,movies
+Name 3 movies with taglines that contain the word 'Speed'.,Simple Aggregation Queries,movies
+List the top 5 most reviewed movies by the number of reviews.,Simple Aggregation Queries,movies
+Who are 3 actors who have acted in movies released before 1980?,Simple Aggregation Queries,movies
+What are the top 3 movies with the most diverse roles in the ACTED_IN relationship?,Simple Aggregation Queries,movies
+Who are the first 3 people to act in and review the same movie?,Simple Aggregation Queries,movies
+List 3 movies reviewed with the summary 'An amazing journey'.,Simple Aggregation Queries,movies
+Which 3 directors have the highest average movie rating for movies they directed?,Simple Aggregation Queries,movies
+Name 3 persons who have produced movies but have not directed any.,Simple Aggregation Queries,movies
+List the names of 3 persons who have the name starting with 'L'.,Simple Aggregation Queries,movies
+What are the top 3 movies by the number of roles available in the ACTED_IN relationship?,Simple Aggregation Queries,movies
+Which 3 persons have reviewed the most movies?,Simple Aggregation Queries,movies
+Find 3 persons who have directed movies released in the 1990s.,Simple Aggregation Queries,movies
+List 3 movies that have been reviewed with a summary mentioning 'funny'.,Simple Aggregation Queries,movies
+Who are the first 3 persons to have directed and acted in the same movie?,Simple Aggregation Queries,movies
+What are the 3 oldest movies in the database?,Simple Aggregation Queries,movies
+Name 3 persons who have produced the most movies.,Simple Aggregation Queries,movies
+List 3 movies with exactly 3 roles in the ACTED_IN relationship.,Simple Aggregation Queries,movies
+Which 3 persons have the most followers?,Simple Aggregation Queries,movies
+What are the top 5 movies by vote count that have a tagline mentioning 'real'?,Simple Aggregation Queries,movies
+Name 3 actors who have acted in movies with at least 1000 votes.,Simple Aggregation Queries,movies
+List the top 3 movies with the least votes.,Simple Aggregation Queries,movies
+Which 3 directors have directed the most movies released after 2005?,Simple Aggregation Queries,movies
+What are the names of 3 persons who reviewed movies with a rating lower than 60?,Simple Aggregation Queries,movies
+Find the top 3 longest relationships in terms of roles between a person and a movie.,Simple Aggregation Queries,movies
+Name 3 movies that were produced by persons born after 1970.,Simple Aggregation Queries,movies
+List the names of 3 persons who follow someone with the same first letter in their name.,Simple Aggregation Queries,movies
+What are the 3 newest movies in the database?,Simple Aggregation Queries,movies
+"Which 3 persons have acted in, directed, and produced the same movie?",Simple Aggregation Queries,movies
+Name the first 3 movies to be reviewed with a rating of exactly 75.,Simple Aggregation Queries,movies
+List 3 movies with at least 2 reviews with a summary mentioning 'compelling'.,Simple Aggregation Queries,movies
+Who are the top 3 producers by the number of movies they produced?,Simple Aggregation Queries,movies
+Name 3 persons who have directed a movie with a tagline containing 'limits'.,Simple Aggregation Queries,movies
+List the top 5 actors by the variety of roles they played in movies.,Simple Aggregation Queries,movies
+What are the 3 oldest persons in the database?,Simple Aggregation Queries,movies
+Name 3 movies with a released year divisible by 3.,Simple Aggregation Queries,movies
+Who are the 3 youngest directors in the database?,Simple Aggregation Queries,movies
+List the titles of 3 movies that have been both acted in and reviewed by the same person.,Simple Aggregation Queries,movies
+What are the top 3 movies by number of votes that were produced by someone born before 1960?,Simple Aggregation Queries,movies
+Name 3 persons who acted in the most movies with a tagline containing 'journey'.,Simple Aggregation Queries,movies
+List the 3 movies with the highest number of distinct reviewers.,Simple Aggregation Queries,movies
+Which 3 persons have the most distinct roles in the ACTED_IN relationship?,Simple Aggregation Queries,movies
+What are the 3 most common summaries in the REVIEWED relationship?,Simple Aggregation Queries,movies
+Name 3 actors who have acted in the least voted movies.,Simple Aggregation Queries,movies
+List 3 directors who have never reviewed a movie.,Simple Aggregation Queries,movies
+Which 3 movies have been directed by persons born in the 1960s?,Simple Aggregation Queries,movies
+What are the top 3 movies by the number of followers for its actors?,Simple Aggregation Queries,movies
+Who are the 3 persons with the most directed movies that have a tagline?,Simple Aggregation Queries,movies
+Find 3 actors who have acted in movies with a tagline mentioning 'freedom'.,Simple Aggregation Queries,movies
+List the 3 movies with the highest average review ratings.,Simple Aggregation Queries,movies
+Which 3 persons have reviewed and produced the same movie?,Simple Aggregation Queries,movies
+Name 3 movies that have been reviewed with a summary containing 'romp'.,Simple Aggregation Queries,movies
+List the 3 movies with the lowest average ratings in the REVIEWED relationship.,Simple Aggregation Queries,movies
+Who are the 3 directors with the fewest produced movies?,Simple Aggregation Queries,movies
+What are the top 3 movies with the most distinct actors in the ACTED_IN relationship?,Simple Aggregation Queries,movies
+Name the 3 persons who have appeared in the most REVIEWED movies.,Simple Aggregation Queries,movies
+List the first 3 movies where someone both acted in and directed.,Simple Aggregation Queries,movies
+Which 3 persons follow the most directors?,Simple Aggregation Queries,movies
+What are the 3 newest relationships formed in the graph (any type)?,Simple Aggregation Queries,movies
+Name 3 people who have the most combined roles across all their ACTED_IN movies.,Simple Aggregation Queries,movies
+Find 3 movies that were both directed and reviewed by the same person.,Simple Aggregation Queries,movies
+List 3 actors who have acted in movies with a tagline containing 'beginning'.,Simple Aggregation Queries,movies
+Who are the 3 persons with the highest total ratings for movies they reviewed?,Simple Aggregation Queries,movies
+What are the top 3 movies with the most distinct taglines?,Simple Aggregation Queries,movies
+Name 3 persons who have acted in movies released in consecutive years.,Simple Aggregation Queries,movies
+List 3 movies that have been followed by the most persons.,Simple Aggregation Queries,movies
+Which 3 directors have directed movies with the most distinct taglines?,Simple Aggregation Queries,movies
+Find the 3 oldest movies reviewed by someone born after 1970.,Simple Aggregation Queries,movies
+List the top 3 movies with roles played by persons born in the 1940s.,Simple Aggregation Queries,movies
+Name 3 persons who have acted in movies with the most distinct titles.,Simple Aggregation Queries,movies
+What are the top 3 reviewed movies with summaries mentioning 'fun'?,Simple Aggregation Queries,movies
+Who are the 3 persons with the most PRODUCED relationships?,Simple Aggregation Queries,movies
+List the 3 movies with the highest number of votes and a tagline mentioning 'limit'.,Simple Aggregation Queries,movies
+Which 3 persons have the most diverse roles across movies they acted in?,Simple Aggregation Queries,movies
+What are the 3 most common taglines found in the movies?,Simple Aggregation Queries,movies
+Name 3 directors who have directed movies with the least number of votes.,Simple Aggregation Queries,movies
+List the first 3 movies to have been reviewed with a summary containing 'slapstick'.,Simple Aggregation Queries,movies
+Who are the top 3 producers by the number of movies with different taglines?,Simple Aggregation Queries,movies
+What are the 3 oldest movies produced by someone born after 1960?,Simple Aggregation Queries,movies
+Name 3 persons who have reviewed the most movies released before 2000.,Simple Aggregation Queries,movies
+Which movies has Keanu Reeves acted in?,Pathfinding Queries,movies
+List the directors of the movie 'The Matrix'.,Pathfinding Queries,movies
+Find the top 5 movies with the most votes.,Pathfinding Queries,movies
+Which actors were born after 1970 and acted in movies released before 2000?,Pathfinding Queries,movies
+What are the roles of Laurence Fishburne in 'The Matrix Revolutions'?,Pathfinding Queries,movies
+List all movies produced by Joel Silver.,Pathfinding Queries,movies
+Which movie has the tagline 'Welcome to the Real World'?,Pathfinding Queries,movies
+"Show top 3 persons who directed, produced, and acted in the same movie.",Pathfinding Queries,movies
+List all reviewers of 'Speed Racer' and the ratings they gave.,Pathfinding Queries,movies
+What is the highest rating given to any movie by any person?,Pathfinding Queries,movies
+"Which movies have been reviewed with a summary 'Dark, but compelling'?",Pathfinding Queries,movies
+Find the top 5 movies with the least votes.,Pathfinding Queries,movies
+What are the top 3 oldest persons in the graph?,Pathfinding Queries,movies
+List the movies that were written and directed by the same person.,Pathfinding Queries,movies
+Who are the top 3 followers of Keanu Reeves?,Pathfinding Queries,movies
+What are the first 3 movies released after 2000 that Laurence Fishburne acted in?,Pathfinding Queries,movies
+Which persons have only directed movies and never acted in any?,Pathfinding Queries,movies
+List all the movies where the roles list contains more than 4 characters.,Pathfinding Queries,movies
+Who are the producers of movies with a tagline containing 'limits'?,Pathfinding Queries,movies
+Which movies released between 1990 and 2000 have been reviewed?,Pathfinding Queries,movies
+List the top 5 most recent movies in the graph.,Pathfinding Queries,movies
+Who reviewed 'The Matrix' and what summary did they provide?,Pathfinding Queries,movies
+What are the combined total votes of all movies Joel Silver produced?,Pathfinding Queries,movies
+"Find persons who have acted in, directed, and produced different movies.",Pathfinding Queries,movies
+Which person has the highest number of followers?,Pathfinding Queries,movies
+List all movies with a release year divisible by 5.,Pathfinding Queries,movies
+Who has reviewed the most number of movies?,Pathfinding Queries,movies
+What are the first 3 movies with a rating greater than 85?,Pathfinding Queries,movies
+Which persons born in the 1960s have directed movies?,Pathfinding Queries,movies
+List all movies with a tagline that includes the word 'Real'.,Pathfinding Queries,movies
+How many different persons have reviewed 'Speed Racer'?,Pathfinding Queries,movies
+What are the roles of Keanu Reeves in movies released in the 1990s?,Pathfinding Queries,movies
+List the first 3 people born before 1950 who acted in movies.,Pathfinding Queries,movies
+Which movies have been acted in by persons born after 1970?,Pathfinding Queries,movies
+How many movies has Lana Wachowski directed?,Pathfinding Queries,movies
+What are the first 3 movies with a vote count less than 100?,Pathfinding Queries,movies
+List the top 5 movies by release year in the 1980s.,Pathfinding Queries,movies
+Which persons have the name 'Joel' and have produced a movie with more than 100 votes?,Pathfinding Queries,movies
+What are the first 3 movies with the longest role lists in 'ACTED_IN' relationships?,Pathfinding Queries,movies
+Which persons have reviewed movies with a rating of 100?,Pathfinding Queries,movies
+List the roles of Laurence Fishburne in movies with a release year after 2000.,Pathfinding Queries,movies
+Who are the top 5 followers of Lana Wachowski?,Pathfinding Queries,movies
+What are the most common roles in movies released before 1980?,Pathfinding Queries,movies
+Which persons have acted in and directed the same movie?,Pathfinding Queries,movies
+List the roles of Keanu Reeves in 'The Matrix'.,Pathfinding Queries,movies
+Who has produced the most movies?,Pathfinding Queries,movies
+List all movies with exactly 5 roles in the 'ACTED_IN' relationship.,Pathfinding Queries,movies
+Which movies released in the 2000s have been reviewed with a rating below 60?,Pathfinding Queries,movies
+Who are the top 3 producers of movies released before 1990?,Pathfinding Queries,movies
+What is the summary of the lowest-rated review of 'Speed Racer'?,Pathfinding Queries,movies
+List the top 5 movies that have not been reviewed.,Pathfinding Queries,movies
+"Which persons born after 1980 have acted in, directed, or produced any movies?",Pathfinding Queries,movies
+What are the roles list sizes for each movie Keanu Reeves has acted in?,Pathfinding Queries,movies
+List the top 3 pairs of persons who follow each other.,Pathfinding Queries,movies
+Who has directed the most movies with a release after 1995?,Pathfinding Queries,movies
+Which movies have 'Robin Williams' mentioned in the review summary?,Pathfinding Queries,movies
+Find the movies with a tagline containing 'beginning'.,Pathfinding Queries,movies
+Who are the top 3 youngest directors in the graph?,Pathfinding Queries,movies
+What are the first 3 movies with a released year divisible by 10 and votes over 500?,Pathfinding Queries,movies
+Which movies have been produced by persons born before 1960?,Pathfinding Queries,movies
+List all movies with more than 2000 votes.,Pathfinding Queries,movies
+Who reviewed movies with a summary mentioning 'funny'?,Pathfinding Queries,movies
+List the top 5 movies with a tagline containing 'football'.,Pathfinding Queries,movies
+Which persons have reviewed the most movies with a rating over 75?,Pathfinding Queries,movies
+List the roles of any person in movies with a title containing 'Matrix'.,Pathfinding Queries,movies
+What is the average rating of movies reviewed by persons born after 1970?,Pathfinding Queries,movies
+Show the first 3 movies with the most complex role lists in the 'ACTED_IN' relationship.,Pathfinding Queries,movies
+Who are the followers of persons who have directed more than 3 movies?,Pathfinding Queries,movies
+List the top 5 movies by number of roles in the 'ACTED_IN' relationship.,Pathfinding Queries,movies
+Which movies have been reviewed with a rating exactly at 75?,Pathfinding Queries,movies
+List the first 3 movies released in the 21st century that Laurence Fishburne produced.,Pathfinding Queries,movies
+What are the roles of persons acting in movies with a tagline mentioning 'end'?,Pathfinding Queries,movies
+"Who has produced, directed, and acted in the most movies?",Pathfinding Queries,movies
+List all persons who have directed a movie with a released year divisible by 20.,Pathfinding Queries,movies
+What are the first 3 movies directed by persons with the most followers?,Pathfinding Queries,movies
+Which movies have taglines that include the word 'compelling'?,Pathfinding Queries,movies
+List the roles of any person in movies released after 2010.,Pathfinding Queries,movies
+Who has the most directed movies in the database?,Pathfinding Queries,movies
+List movies where the reviewer gave a rating less than 50.,Pathfinding Queries,movies
+Who are the top 3 oldest persons who have reviewed a movie?,Pathfinding Queries,movies
+What are the roles of Keanu Reeves in movies with a released year divisible by 5?,Pathfinding Queries,movies
+List all movies produced by persons who have also directed a movie with the same title.,Pathfinding Queries,movies
+What are the top 3 shortest role lists in movies reviewed by persons born before 1960?,Pathfinding Queries,movies
+Which movie has the most roles in the 'ACTED_IN' relationship and what are those roles?,Pathfinding Queries,movies
+List the movies that have been both directed and produced by the same person.,Pathfinding Queries,movies
+Which persons have directed a movie and followed more than 5 persons?,Pathfinding Queries,movies
+List all movies that have been reviewed with a summary including 'amazing journey'.,Pathfinding Queries,movies
+Who are the top 3 persons with the most roles in movies they have acted in?,Pathfinding Queries,movies
+Which actors were born after 1970?,Complex Aggregation Queries,movies
+List top 3 movies released before 1980.,Complex Aggregation Queries,movies
+What are the titles of movies that have more than 1000 votes?,Complex Aggregation Queries,movies
+Name 3 movies reviewed with a rating over 90.,Complex Aggregation Queries,movies
+Which person has both acted in and directed the same movie?,Complex Aggregation Queries,movies
+Find movies with the tagline 'Welcome to the Real World'.,Complex Aggregation Queries,movies
+Who directed the movie 'The Matrix'?,Complex Aggregation Queries,movies
+List all the movies produced by Joel Silver.,Complex Aggregation Queries,movies
+What are the roles played by Keanu Reeves in 'The Matrix'?,Complex Aggregation Queries,movies
+Top 5 movies by number of votes.,Complex Aggregation Queries,movies
+Who are the actors that have acted in both 'The Matrix' and 'Speed Racer'?,Complex Aggregation Queries,movies
+Show the first 3 people who have reviewed more than one movie.,Complex Aggregation Queries,movies
+Which movies have been both produced and directed by the same person?,Complex Aggregation Queries,movies
+List all persons born before 1950.,Complex Aggregation Queries,movies
+What are the most common roles in the movie 'The Matrix Revolutions'?,Complex Aggregation Queries,movies
+Find movies that were released between 1990 and 2000.,Complex Aggregation Queries,movies
+Who followed the most people born after 1980?,Complex Aggregation Queries,movies
+What are the summaries of reviews for 'Speed Racer'?,Complex Aggregation Queries,movies
+List top 5 actors by number of movies acted in.,Complex Aggregation Queries,movies
+Who wrote and acted in the same movie?,Complex Aggregation Queries,movies
+What is the average rating of movies reviewed by people born before 1970?,Complex Aggregation Queries,movies
+Which movies have a vote count less than 50?,Complex Aggregation Queries,movies
+List the people who have produced more than three movies.,Complex Aggregation Queries,movies
+What are the distinct roles played by Laurence Fishburne across all movies?,Complex Aggregation Queries,movies
+Who are the top 3 followers by number of people they follow?,Complex Aggregation Queries,movies
+List the movies with taglines that start with 'Everything'.,Complex Aggregation Queries,movies
+Who has the most roles in a single movie?,Complex Aggregation Queries,movies
+What are the movies directed by Lana Wachowski?,Complex Aggregation Queries,movies
+List the actors born after 1980 who have acted in more than one movie.,Complex Aggregation Queries,movies
+Which person has reviewed the most movies?,Complex Aggregation Queries,movies
+Name 3 movies with the lowest ratings in reviews.,Complex Aggregation Queries,movies
+What is the average number of votes for movies released in the 2000s?,Complex Aggregation Queries,movies
+List the movies where the tagline contains the word 'limits'.,Complex Aggregation Queries,movies
+Who are the people that have both written and produced the same movie?,Complex Aggregation Queries,movies
+Name the people who have directed more than two movies.,Complex Aggregation Queries,movies
+What are the top 5 reviewed movies by summary 'An amazing journey'?,Complex Aggregation Queries,movies
+"Which movies have been reviewed with a summary stating 'Dark, but compelling'?",Complex Aggregation Queries,movies
+List the movies that were both acted in and produced by the same person.,Complex Aggregation Queries,movies
+Who are the top 3 actors in terms of the diversity of roles played?,Complex Aggregation Queries,movies
+Find the people who have followed someone with the same birth year.,Complex Aggregation Queries,movies
+"List movies that have exactly one person who acted, directed, and wrote the movie.",Complex Aggregation Queries,movies
+What are the movies released in 1999?,Complex Aggregation Queries,movies
+Name the people who have produced movies with less than 100 votes.,Complex Aggregation Queries,movies
+What is the average release year of movies reviewed with a rating above 80?,Complex Aggregation Queries,movies
+List the movies that have been followed by someone born in 1990.,Complex Aggregation Queries,movies
+Who has acted in the highest number of unique movies?,Complex Aggregation Queries,movies
+What are the first 3 movies with the most roles listed?,Complex Aggregation Queries,movies
+List the people born in the 1960s who have directed a movie.,Complex Aggregation Queries,movies
+Which person has the most followers?,Complex Aggregation Queries,movies
+Name the top 5 movies with the most diverse cast in terms of roles.,Complex Aggregation Queries,movies
+What are the roles of actors in 'Speed Racer'?,Complex Aggregation Queries,movies
+List the movies where Joel Silver has a production role.,Complex Aggregation Queries,movies
+Who are the top 3 reviewers by average rating given?,Complex Aggregation Queries,movies
+Name the movies that have been both reviewed and produced by the same person.,Complex Aggregation Queries,movies
+List the first 3 persons who were born after 1950 and have directed a movie.,Complex Aggregation Queries,movies
+What are the top 5 movies with ratings between 70 and 85?,Complex Aggregation Queries,movies
+Which movies have more than 3 actors listed?,Complex Aggregation Queries,movies
+Name the people who have followed more than 5 persons.,Complex Aggregation Queries,movies
+What is the average number of followers for people born in the 1980s?,Complex Aggregation Queries,movies
+List the movies directed by people born before 1970.,Complex Aggregation Queries,movies
+Who are the top 3 producers by number of movies produced?,Complex Aggregation Queries,movies
+"Name the first 3 movies reviewed with a summary 'Fun, but a little far fetched'.",Complex Aggregation Queries,movies
+Which movies have been acted in by persons born after 1980?,Complex Aggregation Queries,movies
+List the people who have written and reviewed the same movie.,Complex Aggregation Queries,movies
+Who are the first 3 actors by the number of different movies acted in?,Complex Aggregation Queries,movies
+What are the distinct summaries of reviews for movies released after 2000?,Complex Aggregation Queries,movies
+List the first 3 movies with a tagline containing the word 'journey'.,Complex Aggregation Queries,movies
+Who has the most production credits in movies released in the 1990s?,Complex Aggregation Queries,movies
+Name the people who have the role of both actor and director in the most movies.,Complex Aggregation Queries,movies
+What are the top 5 movies with the least votes?,Complex Aggregation Queries,movies
+Which movies have been directed by someone who has also acted in them?,Complex Aggregation Queries,movies
+List the actors who have roles in movies released after 2000.,Complex Aggregation Queries,movies
+Who reviewed the movie with the highest rating?,Complex Aggregation Queries,movies
+Name the first 3 people who have produced and acted in the same movie.,Complex Aggregation Queries,movies
+What is the average number of roles per actor in 'The Matrix'?,Complex Aggregation Queries,movies
+List the movies produced by a person born in the 1950s.,Complex Aggregation Queries,movies
+Who are the top 3 actors by number of followers?,Complex Aggregation Queries,movies
+"Name the movies that have a review summary 'Silly, but fun'.",Complex Aggregation Queries,movies
+Which movies have been reviewed by more than 3 different people?,Complex Aggregation Queries,movies
+List the first 3 directors born after 1960.,Complex Aggregation Queries,movies
+Who has the highest average review rating?,Complex Aggregation Queries,movies
+Name the movies acted in by the oldest actor in the database.,Complex Aggregation Queries,movies
+What are the first 3 movies with the most diverse taglines?,Complex Aggregation Queries,movies
+List the people who have directed and reviewed the same movie.,Complex Aggregation Queries,movies
+Who are the top 3 actors in terms of movies acted in from 1990 to 2000?,Complex Aggregation Queries,movies
+Name the first 3 movies with a released year divisible by 10.,Complex Aggregation Queries,movies
+Who are the first three actors born after 1970 who acted in a movie released before 1990?,Verbose query,movies
+What are the top five movies with a vote count greater than 500?,Verbose query,movies
+List the first three people who directed a movie with a tagline containing the word 'real'.,Verbose query,movies
+Find the first three movies reviewed with a rating above 90.,Verbose query,movies
+Who are the top five people born before 1960 who produced more than one movie?,Verbose query,movies
+Which three people have reviewed a movie and also acted in a movie with a tagline containing 'no limits'?,Verbose query,movies
+Retrieve the top five movies released in the 2000s that were either directed or produced by the same person.,Verbose query,movies
+List the first three people who follow more than three other people.,Verbose query,movies
+What are the top five movies that received the highest number of votes and were released after 2000?,Verbose query,movies
+Who are the first three people who wrote a movie and were born in the 1950s?,Verbose query,movies
+Find the first three movies with a tagline that includes the word 'journey' and were released before the year 2000.,Verbose query,movies
+Which top five movies have been both produced and directed by the same person?,Verbose query,movies
+List the first three actors who acted in a movie released after 2010 and have a born year after 1980.,Verbose query,movies
+"Retrieve the first three movies that were reviewed with the summary 'Dark, but compelling'.",Verbose query,movies
+"Who are the top five actors with the most diverse range of roles, having acted in at least five different movies?",Verbose query,movies
+Find the first three people who produced a movie and have a name starting with 'J'.,Verbose query,movies
+What are the top five movies that were directed by someone born before 1960 and have a vote count less than 100?,Verbose query,movies
+List the first three movies that were produced by someone with a name ending in 'son' and released after 2000.,Verbose query,movies
+Retrieve the top five people who have reviewed a movie with a rating less than 50.,Verbose query,movies
+Who are the first three people who have directed and reviewed the same movie?,Verbose query,movies
+What are the top five movies where the person who directed the movie was born in the 1940s?,Verbose query,movies
+"Find the first three movies that have been reviewed with the summary 'Silly, but fun' and were released in the 1990s.",Verbose query,movies
+List the first three people who wrote a movie and also acted in a different movie.,Verbose query,movies
+Retrieve the top five oldest directors of movies released after 1990.,Verbose query,movies
+Who are the first three actors who acted in more than three movies with a tagline containing the word 'limit'?,Verbose query,movies
+What are the top five movies that have been both written and reviewed by the same person?,Verbose query,movies
+Find the first three movies with a tagline including 'speed' and a vote count over 500.,Verbose query,movies
+List the first three people who followed someone at least 20 years their junior.,Verbose query,movies
+Retrieve the top five movies released before 1985 that were reviewed with a rating above 85.,Verbose query,movies
+Who are the first three people who have produced a movie and followed more than two other people?,Verbose query,movies
+List the first 5 movies with a budget over 20 million dollars.,Simple Retrieval Queries,neoflix
+Which 3 movies have the highest average vote above 8.0?,Simple Retrieval Queries,neoflix
+Find the top 5 genres by the number of movies associated.,Simple Retrieval Queries,neoflix
+What are the names of the top 3 most popular movies released before 2000?,Simple Retrieval Queries,neoflix
+Who are the first 3 actors cast in the movie 'Toy Story'?,Simple Retrieval Queries,neoflix
+What are the first 5 production companies producing films in the 'Animation' genre?,Simple Retrieval Queries,neoflix
+List the first 3 countries where movies with a revenue greater than 100 million dollars were produced.,Simple Retrieval Queries,neoflix
+Which 3 languages are most common among movies with a popularity score above 10?,Simple Retrieval Queries,neoflix
+What are the top 5 keywords associated with the movie 'Waiting to Exhale'?,Simple Retrieval Queries,neoflix
+Which 3 collections contain the most movies with a budget over 50 million dollars?,Simple Retrieval Queries,neoflix
+Name the top 3 directors who have worked on movies with an average vote greater than 7.5.,Simple Retrieval Queries,neoflix
+List the 5 most recent movies that have been added to the 'Toy Story Collection'.,Simple Retrieval Queries,neoflix
+What are the top 3 highest-grossing movies directed by a person named 'Tom Hanks'?,Simple Retrieval Queries,neoflix
+Which 3 users have rated the most movies?,Simple Retrieval Queries,neoflix
+List the top 5 movies that have been tagged with the keyword 'jealousy'.,Simple Retrieval Queries,neoflix
+What are the first 3 genres associated with the movie 'Jonah: A VeggieTales Movie'?,Simple Retrieval Queries,neoflix
+Name the top 5 movies with the most keywords associated.,Simple Retrieval Queries,neoflix
+Which 3 countries have produced the most movies with a runtime longer than 120 minutes?,Simple Retrieval Queries,neoflix
+Find the first 5 movies with a tagline containing the word 'love'.,Simple Retrieval Queries,neoflix
+List the top 3 languages spoken in the highest-grossing movies.,Simple Retrieval Queries,neoflix
+What are the first 5 actors who have starred in both a movie and an adult film?,Simple Retrieval Queries,neoflix
+Which 3 production companies have the highest total revenues from their movies?,Simple Retrieval Queries,neoflix
+List the top 3 most popular videos with a runtime under 90 minutes.,Simple Retrieval Queries,neoflix
+Name the first 5 movies that have a poster path ending in '.jpg'.,Simple Retrieval Queries,neoflix
+What are the top 3 genres in which 'Pixar Animation Studios' has produced movies?,Simple Retrieval Queries,neoflix
+Which 3 movies have the highest revenue and were released in the 'United States of America'?,Simple Retrieval Queries,neoflix
+List the first 5 movies that are part of a collection and have a revenue greater than 100 million dollars.,Simple Retrieval Queries,neoflix
+What are the top 3 languages for movies produced by 'Pixar Animation Studios'?,Simple Retrieval Queries,neoflix
+Name the first 3 adult films with the highest average vote.,Simple Retrieval Queries,neoflix
+Which 3 keywords are most commonly associated with movies that have a budget less than 1 million dollars?,Simple Retrieval Queries,neoflix
+List the top 5 movies that have been rated by users more than 1000 times.,Simple Retrieval Queries,neoflix
+What are the first 3 production companies that have produced movies in more than one language?,Simple Retrieval Queries,neoflix
+Which 3 movies have the longest runtime and were released after 2000?,Simple Retrieval Queries,neoflix
+List the top 5 highest rated movies by users.,Simple Retrieval Queries,neoflix
+Name the first 5 genres associated with the movie 'Toy Story'.,Simple Retrieval Queries,neoflix
+What are the 3 most popular movies in the genre 'Animation'?,Simple Retrieval Queries,neoflix
+Which 3 production companies have produced films with a budget over 100 million dollars?,Simple Retrieval Queries,neoflix
+List the first 5 movies that were produced in the country 'United States of America' and have a revenue over 50 million dollars.,Simple Retrieval Queries,neoflix
+"What are the top 3 languages spoken in the videos with a budget greater than 500,000 dollars?",Simple Retrieval Queries,neoflix
+Name the first 3 movies that were produced by 'Pixar Animation Studios' and have a budget above 50 million dollars.,Simple Retrieval Queries,neoflix
+Which 3 keywords are most common in movies with an average vote below 5?,Simple Retrieval Queries,neoflix
+List the top 5 movies that have a runtime longer than 150 minutes and were released before 2010.,Simple Retrieval Queries,neoflix
+What are the first 3 genres associated with the movie 'Father of the Bride Part II'?,Simple Retrieval Queries,neoflix
+Which 3 movies have the highest popularity and were released in the last 5 years?,Simple Retrieval Queries,neoflix
+List the top 5 adult films with the most keywords associated.,Simple Retrieval Queries,neoflix
+Name the first 5 movies that have a homepage URL associated.,Simple Retrieval Queries,neoflix
+What are the 3 most popular movies in the genre 'Comedy'?,Simple Retrieval Queries,neoflix
+Which 3 production companies have produced the most movies in the genre 'Drama'?,Simple Retrieval Queries,neoflix
+List the first 5 movies that have a tagline and were released after 2010.,Simple Retrieval Queries,neoflix
+What are the top 3 languages spoken in movies that have a status of 'Released'?,Simple Retrieval Queries,neoflix
+Name the first 3 adult films that were produced in the country 'Italy'.,Simple Retrieval Queries,neoflix
+Which 3 keywords are most commonly associated with videos that have a budget over 1 million dollars?,Simple Retrieval Queries,neoflix
+List the top 5 highest revenue generating movies of all time.,Simple Retrieval Queries,neoflix
+What are the first 3 genres associated with the video 'Jonah: A VeggieTales Movie'?,Simple Retrieval Queries,neoflix
+Which 3 movies have the lowest average vote and were released before 2000?,Simple Retrieval Queries,neoflix
+List the top 5 movies with the longest runtime.,Simple Retrieval Queries,neoflix
+Name the first 5 movies that have been rated by at least 50 users.,Simple Retrieval Queries,neoflix
+What are the 3 most popular movies that have been released since 2015?,Simple Retrieval Queries,neoflix
+Which 3 production companies have produced films with a runtime longer than 180 minutes?,Simple Retrieval Queries,neoflix
+List the first 5 videos that have a runtime under 60 minutes.,Simple Retrieval Queries,neoflix
+"What are the top 3 languages spoken in the adult films with a budget greater than 100,000 dollars?",Simple Retrieval Queries,neoflix
+Name the first 3 movies that have a poster path ending in '/pQFoyx7rp09CJTAb932F2g8Nlho.jpg'.,Simple Retrieval Queries,neoflix
+Which 3 keywords are most commonly associated with movies that have a revenue over 200 million dollars?,Simple Retrieval Queries,neoflix
+List the top 5 movies that have been part of at least one collection.,Simple Retrieval Queries,neoflix
+What are the first 3 genres associated with the movie 'Alex & Emma'?,Simple Retrieval Queries,neoflix
+Which 3 movies have the highest vote count?,Simple Retrieval Queries,neoflix
+List the top 5 adult films with the highest popularity.,Simple Retrieval Queries,neoflix
+Name the first 5 movies that have a release date before 1990.,Simple Retrieval Queries,neoflix
+What are the 3 most popular movies in the genre 'Thriller'?,Simple Retrieval Queries,neoflix
+Which 3 production companies have the highest total budgets for their movies?,Simple Retrieval Queries,neoflix
+List the first 5 videos that were produced by 'Pixar Animation Studios'.,Simple Retrieval Queries,neoflix
+What are the top 3 languages spoken in adult films with a vote count over 10?,Simple Retrieval Queries,neoflix
+Name the first 3 adult films that have a runtime longer than 90 minutes.,Simple Retrieval Queries,neoflix
+Which 3 keywords are most commonly associated with movies that have an original language of 'en'?,Simple Retrieval Queries,neoflix
+List the top 5 movies that have been rated by users with an average rating below 4.0.,Simple Retrieval Queries,neoflix
+What are the first 3 genres associated with the movie 'Nil Battey Sannata'?,Simple Retrieval Queries,neoflix
+Which 3 movies have the highest revenue and were released in the 'United Kingdom'?,Simple Retrieval Queries,neoflix
+Which movies have a revenue greater than 50 million USD?,Complex Retrieval Queries,neoflix
+List all movies where Tom Hanks acted in.,Complex Retrieval Queries,neoflix
+What are the top 5 most popular movies?,Complex Retrieval Queries,neoflix
+Which movies are part of the 'Toy Story Collection'?,Complex Retrieval Queries,neoflix
+List all movies produced by 'Pixar Animation Studios'.,Complex Retrieval Queries,neoflix
+What are the names of genres associated with movies having a budget over 100 million USD?,Complex Retrieval Queries,neoflix
+Which movies have been rated by user with ID 1?,Complex Retrieval Queries,neoflix
+What are the most recent three movies added to the database?,Complex Retrieval Queries,neoflix
+List the movies that have a runtime longer than 120 minutes.,Complex Retrieval Queries,neoflix
+Which movies have been tagged with the keyword 'jealousy'?,Complex Retrieval Queries,neoflix
+Find all movies released before 2000 with an average vote greater than 8.,Complex Retrieval Queries,neoflix
+List all languages spoken in the movie 'Toy Story'.,Complex Retrieval Queries,neoflix
+What are the original titles of movies that have been translated into Spanish?,Complex Retrieval Queries,neoflix
+Which countries have produced movies with a budget exceeding 10 million USD?,Complex Retrieval Queries,neoflix
+List the names of all production companies involved with movies that grossed over 200 million USD.,Complex Retrieval Queries,neoflix
+Which genres are associated with movies directed by 'Steven Spielberg'?,Complex Retrieval Queries,neoflix
+List all the movies where the character 'Woody' appears.,Complex Retrieval Queries,neoflix
+What are the top 3 most voted movies in the database?,Complex Retrieval Queries,neoflix
+Which movies have a poster path containing '/rhIRbceoE9lR4veEXuwCC2wARtG.jpg'?,Complex Retrieval Queries,neoflix
+What are the names of people who have directed movies with a budget over 50 million USD?,Complex Retrieval Queries,neoflix
+List the movies that have won awards and have an original language of Italian.,Complex Retrieval Queries,neoflix
+Which movies feature a runtime less than 85 minutes and have been released after 2010?,Complex Retrieval Queries,neoflix
+What are the movies in which 'Pixar Animation Studios' served as a production company and have a popularity score above 20?,Complex Retrieval Queries,neoflix
+List all movies that are part of any collection and have a revenue less than 1 million USD.,Complex Retrieval Queries,neoflix
+What are the names of all genres represented in the 'Toy Story Collection'?,Complex Retrieval Queries,neoflix
+Which movies have an IMDb ID of 'tt0114709'?,Complex Retrieval Queries,neoflix
+What are the top 5 movies by revenue in descending order?,Complex Retrieval Queries,neoflix
+List the movies with a tagline that includes 'excitement'.,Complex Retrieval Queries,neoflix
+Which movies have been produced in the 'United States of America' and have an adult rating?,Complex Retrieval Queries,neoflix
+List all movies that have a homepage URL defined.,Complex Retrieval Queries,neoflix
+Which movies have been released with a status of 'In Production'?,Complex Retrieval Queries,neoflix
+Which movies have a runtime that is exactly 90 minutes?,Complex Retrieval Queries,neoflix
+Find all actors who have appeared in more than 10 movies.,Complex Retrieval Queries,neoflix
+List the movies that have a budget of zero.,Complex Retrieval Queries,neoflix
+Which movies have been most frequently rated by users?,Complex Retrieval Queries,neoflix
+List the top 3 highest-grossing movies of 1995.,Complex Retrieval Queries,neoflix
+What are the movies with a vote count greater than 5000?,Complex Retrieval Queries,neoflix
+Which movies are associated with the keyword 'family' and have a release date in the last 5 years?,Complex Retrieval Queries,neoflix
+List the production companies that have produced movies with an original language of Spanish.,Complex Retrieval Queries,neoflix
+Which movies have a popularity less than 5 and more than 2?,Complex Retrieval Queries,neoflix
+List the movies where the spoken language is 'Gaeilge'.,Complex Retrieval Queries,neoflix
+Which movies have a backdrop path of '/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg'?,Complex Retrieval Queries,neoflix
+What are the three oldest movies in the database?,Complex Retrieval Queries,neoflix
+List movies that are part of a genre with ID 10770.,Complex Retrieval Queries,neoflix
+Which movies have a status of 'Released' and a budget greater than 25 million USD?,Complex Retrieval Queries,neoflix
+List all movies that have an average vote of exactly 7.7.,Complex Retrieval Queries,neoflix
+What are the movies with a poster path that ends with 'T4B.jpg'?,Complex Retrieval Queries,neoflix
+Which movies have been produced by companies based in 'France'?,Complex Retrieval Queries,neoflix
+List the movies that have been rated exactly 5.0.,Complex Retrieval Queries,neoflix
+What are the movies directed by 'Christopher Nolan'?,Complex Retrieval Queries,neoflix
+Which movies have a runtime longer than the average runtime of all movies?,Complex Retrieval Queries,neoflix
+List the movies that have been produced in more than three countries.,Complex Retrieval Queries,neoflix
+Which movies have a budget less than 1 million USD and have won an award?,Complex Retrieval Queries,neoflix
+List all movies that have a revenue of zero but have been highly rated.,Complex Retrieval Queries,neoflix
+Which movies have been associated with the keyword 'high school' and have an average vote above 6?,Complex Retrieval Queries,neoflix
+What are the top 5 longest movies in the database?,Complex Retrieval Queries,neoflix
+List all movies where the spoken language includes both English and Spanish.,Complex Retrieval Queries,neoflix
+Which movies have been produced by 'Warner Bros.' and have a revenue over 500 million USD?,Complex Retrieval Queries,neoflix
+What are the three most recent movies that have a tagline?,Complex Retrieval Queries,neoflix
+List all movies that have an average_vote less than 3.,Complex Retrieval Queries,neoflix
+Which movies have been involved in a collection with a backdrop path containing '/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg'?,Complex Retrieval Queries,neoflix
+List the movies that have a revenue greater than their budget.,Complex Retrieval Queries,neoflix
+Which movies have been spoken in 'Kiswahili'?,Complex Retrieval Queries,neoflix
+What are the movies where 'Brad Pitt' has acted?,Complex Retrieval Queries,neoflix
+Which movies have an overview that includes the word 'adventure'?,Complex Retrieval Queries,neoflix
+List the movies with a release date on '1995-10-30'.,Complex Retrieval Queries,neoflix
+Which movies have a title that starts with 'The'?,Complex Retrieval Queries,neoflix
+What are the movies with a vote count less than 50?,Complex Retrieval Queries,neoflix
+List the movies where the original language is not English.,Complex Retrieval Queries,neoflix
+Which movies have a popularity score above 15?,Complex Retrieval Queries,neoflix
+What are the top 5 movies with the smallest budget?,Complex Retrieval Queries,neoflix
+List all movies that have a runtime greater than 150 minutes.,Complex Retrieval Queries,neoflix
+Which movies have been tagged with the keyword 'romance'?,Complex Retrieval Queries,neoflix
+What are the movies that have been produced in 'China'?,Complex Retrieval Queries,neoflix
+List the movies with a revenue exceeding 100 million USD and a popularity below 10.,Complex Retrieval Queries,neoflix
+Which movies have a status of 'Released' and an average vote less than 4?,Complex Retrieval Queries,neoflix
+List the movies that have been rated 10 by any user.,Complex Retrieval Queries,neoflix
+What are the movies with a revenue exactly 76578911.0 USD?,Complex Retrieval Queries,neoflix
+List the movies that have an average vote of 7.1.,Complex Retrieval Queries,neoflix
+Which movies have a tagline that includes 'surprise'?,Complex Retrieval Queries,neoflix
+What are the movies directed by a female from the 'Production' department?,Complex Retrieval Queries,neoflix
+List all directors for the movie with an ID of 862.,Complex Retrieval Queries,neoflix
+Which movies have a runtime less than 80 minutes and a budget over 20 million USD?,Complex Retrieval Queries,neoflix
+What are the top 3 movies by average vote in the database?,Complex Retrieval Queries,neoflix
+List the movies that have a release date in January 1995.,Complex Retrieval Queries,neoflix
+Which movies have a poster path containing '/eoWvKD60lT95Ss1MYNgVExpo5iU.jpg'?,Complex Retrieval Queries,neoflix
+List all movies that have a budget greater than 100 million USD and were released after 2000.,Complex Retrieval Queries,neoflix
+Which movies have an IMDb ID that starts with 'tt00'?,Complex Retrieval Queries,neoflix
+What are the movies with a runtime exactly equal to the runtime of 'Toy Story'?,Complex Retrieval Queries,neoflix
+List the movies that have been tagged with the keyword 'explosive'.,Complex Retrieval Queries,neoflix
+Which movies have a release date on a leap year?,Complex Retrieval Queries,neoflix
+List the movies that have a backdrop path of '/iWahPsY3hsKOizZHgzQcAxv4O3B.jpg'.,Complex Retrieval Queries,neoflix
+What are the three highest budget movies produced by 'Disney'?,Complex Retrieval Queries,neoflix
+What are the top 5 movies by revenue?,Simple Aggregation Queries,neoflix
+List 3 movies that have a runtime greater than 120 minutes.,Simple Aggregation Queries,neoflix
+Which 5 movies were released after 2010 and have a vote count over 1000?,Simple Aggregation Queries,neoflix
+Find 3 movies that have 'Toy Story' in their title.,Simple Aggregation Queries,neoflix
+What are the top 5 highest budget movies?,Simple Aggregation Queries,neoflix
+List the first 3 languages that have been used as original languages in more than 10 movies.,Simple Aggregation Queries,neoflix
+Which 3 countries have produced more than 50 movies?,Simple Aggregation Queries,neoflix
+What are the top 5 genres by the number of movies associated with them?,Simple Aggregation Queries,neoflix
+Which 3 production companies have produced the most movies with a budget over $50 million?,Simple Aggregation Queries,neoflix
+List the 3 most recent movies in the 'Toy Story Collection'.,Simple Aggregation Queries,neoflix
+Who are the top 5 actors by the number of movies they have appeared in?,Simple Aggregation Queries,neoflix
+What are the first 3 keywords associated with the movie 'Toy Story'?,Simple Aggregation Queries,neoflix
+Which 3 users have rated the most movies?,Simple Aggregation Queries,neoflix
+List the top 5 most popular movies according to their popularity score.,Simple Aggregation Queries,neoflix
+What are the 3 longest movies in terms of runtime?,Simple Aggregation Queries,neoflix
+Which 3 movies have the highest average vote and more than 1000 votes?,Simple Aggregation Queries,neoflix
+List the first 3 movies that have a poster path starting with '/r'.,Simple Aggregation Queries,neoflix
+Which 5 movies have been tagged with the keyword 'jealousy'?,Simple Aggregation Queries,neoflix
+What are the 3 latest movies rated by user with id 1?,Simple Aggregation Queries,neoflix
+Which 3 genres are most frequently found in movies with a revenue greater than $100 million?,Simple Aggregation Queries,neoflix
+List the top 5 production companies by the number of videos they have produced.,Simple Aggregation Queries,neoflix
+Which 3 languages are most frequently spoken in videos?,Simple Aggregation Queries,neoflix
+What are the first 3 collections that contain more than 5 movies?,Simple Aggregation Queries,neoflix
+List the top 5 adult films by average vote.,Simple Aggregation Queries,neoflix
+Which 3 adult films have the highest budget?,Simple Aggregation Queries,neoflix
+What are the top 5 countries where adult films have been produced?,Simple Aggregation Queries,neoflix
+List the first 3 users who rated the adult film titled 'Standoff'.,Simple Aggregation Queries,neoflix
+Which 3 genres are most common in adult films?,Simple Aggregation Queries,neoflix
+What are the top 5 keywords found in videos?,Simple Aggregation Queries,neoflix
+List the first 3 video titles that have been produced by 'Pixar Animation Studios'.,Simple Aggregation Queries,neoflix
+Which 3 videos have the highest popularity score?,Simple Aggregation Queries,neoflix
+What are the 3 longest videos in terms of runtime?,Simple Aggregation Queries,neoflix
+List the top 5 genres associated with the highest-grossing videos.,Simple Aggregation Queries,neoflix
+Which 3 collections include videos with an average vote above 7?,Simple Aggregation Queries,neoflix
+What are the top 5 languages in which the most adult films are originally made?,Simple Aggregation Queries,neoflix
+List the first 3 packages that offer access to the 'Animation' genre.,Simple Aggregation Queries,neoflix
+Which 3 subscriptions will expire the soonest?,Simple Aggregation Queries,neoflix
+What are the top 5 most expensive packages by price?,Simple Aggregation Queries,neoflix
+List the first 3 genres that are accessed by the 'Ultimate' package.,Simple Aggregation Queries,neoflix
+"Which 3 production companies are associated with the most number of genres across movies, videos, and adult films?",Simple Aggregation Queries,neoflix
+What are the top 5 countries by the number of genres produced there?,Simple Aggregation Queries,neoflix
+List the first 3 movies that have no revenue reported.,Simple Aggregation Queries,neoflix
+Which 3 videos have a poster path ending with 'jpg'?,Simple Aggregation Queries,neoflix
+What are the top 5 movies with the most extended release dates range within a collection?,Simple Aggregation Queries,neoflix
+List the first 3 adult films with a tagline containing the word 'sex'.,Simple Aggregation Queries,neoflix
+Which 3 genres have the least movies associated with them?,Simple Aggregation Queries,neoflix
+What are the top 5 languages spoken in the highest-grossing movies?,Simple Aggregation Queries,neoflix
+List the first 3 people who have a profile path starting with '/p'.,Simple Aggregation Queries,neoflix
+Which 3 keywords are most frequently associated with movies having a budget over $200 million?,Simple Aggregation Queries,neoflix
+What are the top 5 original titles of movies with an original language of 'en'?,Simple Aggregation Queries,neoflix
+List the first 3 movies directed by a person named 'John Doe'.,Simple Aggregation Queries,neoflix
+Which 3 movies have the most significant difference between budget and revenue?,Simple Aggregation Queries,neoflix
+What are the top 5 movies with the longest taglines?,Simple Aggregation Queries,neoflix
+List the first 3 movies that were rated exactly 5 stars by any user.,Simple Aggregation Queries,neoflix
+Which 3 people have acted in the most number of videos?,Simple Aggregation Queries,neoflix
+What are the top 5 movies with the smallest runtime?,Simple Aggregation Queries,neoflix
+List the first 3 genres that have movies with no keywords associated.,Simple Aggregation Queries,neoflix
+Which 3 production companies have produced movies in more than 3 different languages?,Simple Aggregation Queries,neoflix
+What are the top 5 most frequently used keywords in adult films?,Simple Aggregation Queries,neoflix
+List the first 3 adult films that have a revenue of 0.,Simple Aggregation Queries,neoflix
+Which 3 videos have the most keywords associated with them?,Simple Aggregation Queries,neoflix
+What are the top 5 countries by the number of videos produced there?,Simple Aggregation Queries,neoflix
+List the first 3 movies in which 'Tom Hanks' has acted.,Simple Aggregation Queries,neoflix
+Which 3 genres are most common among movies released before 2000?,Simple Aggregation Queries,neoflix
+What are the top 5 most popular adult films?,Simple Aggregation Queries,neoflix
+List the first 3 keywords associated with the video titled 'Jonah: A VeggieTales Movie'.,Simple Aggregation Queries,neoflix
+Which 3 movies have been rated highest by users?,Simple Aggregation Queries,neoflix
+What are the top 5 oldest movies in the database?,Simple Aggregation Queries,neoflix
+List the first 3 movies with taglines containing the word 'adventure'.,Simple Aggregation Queries,neoflix
+Which 3 adult films have the lowest average vote?,Simple Aggregation Queries,neoflix
+What are the top 5 longest taglines in adult films?,Simple Aggregation Queries,neoflix
+List the first 3 countries that have produced the most adult films.,Simple Aggregation Queries,neoflix
+Which 3 genres have the highest average votes in movies?,Simple Aggregation Queries,neoflix
+What are the top 5 movies with the most keywords associated?,Simple Aggregation Queries,neoflix
+List the first 3 videos that have been produced in more than one country.,Simple Aggregation Queries,neoflix
+Which 3 movies have the most extensive poster paths?,Simple Aggregation Queries,neoflix
+What are the top 5 most frequently spoken languages in videos?,Simple Aggregation Queries,neoflix
+List the first 3 movies that were part of more than one collection.,Simple Aggregation Queries,neoflix
+Which 3 movies have the most significant number of cast members?,Simple Aggregation Queries,neoflix
+What are the top 5 videos by vote count?,Simple Aggregation Queries,neoflix
+List the first 3 movies that have been both highly rated and have high revenue.,Simple Aggregation Queries,neoflix
+Which 3 people have the highest number of crew credits in movies?,Simple Aggregation Queries,neoflix
+What are the top 5 adult films by vote count?,Simple Aggregation Queries,neoflix
+List the first 3 adult films that have been produced in the 'United States of America'.,Simple Aggregation Queries,neoflix
+Which 3 genres are most popular according to the popularity scores in movies?,Simple Aggregation Queries,neoflix
+What are the top 5 languages used in the original language of adult films?,Simple Aggregation Queries,neoflix
+List the first 3 movies that were produced by 'Pixar Animation Studios' and have a budget over $100 million.,Simple Aggregation Queries,neoflix
+Which 3 movies have the smallest difference between their original and final titles?,Simple Aggregation Queries,neoflix
+What are the top 5 most popular genres based on movie data?,Simple Aggregation Queries,neoflix
+List the first 3 adult films with a runtime longer than 60 minutes.,Simple Aggregation Queries,neoflix
+Which 3 movies have the highest number of spoken languages?,Simple Aggregation Queries,neoflix
+What are the top 5 longest running movies in the database?,Simple Aggregation Queries,neoflix
+List the first 3 videos with no budget reported.,Simple Aggregation Queries,neoflix
+Which 3 movies have the highest number of production companies associated?,Simple Aggregation Queries,neoflix
+What are the top 5 genres associated with the highest average votes in videos?,Simple Aggregation Queries,neoflix
+List the first 3 packages that provide access to the 'Drama' genre.,Simple Aggregation Queries,neoflix
+Which 3 countries have produced the most videos?,Simple Aggregation Queries,neoflix
+What are the top 5 most popular packages based on duration?,Simple Aggregation Queries,neoflix
+List the first 3 movies that have a homepage listed.,Simple Aggregation Queries,neoflix
+Which 3 adult films have been rated by the most users?,Simple Aggregation Queries,neoflix
+What are the top 5 movies by revenue?,Pathfinding Queries,neoflix
+List the first 3 movies where the budget was over 50 million USD.,Pathfinding Queries,neoflix
+Which 5 movies have the highest average vote and have been released?,Pathfinding Queries,neoflix
+Find the top 3 movies that have a runtime longer than 120 minutes.,Pathfinding Queries,neoflix
+What are the first 5 most popular movies with a popularity score above 20?,Pathfinding Queries,neoflix
+List the top 3 movies that were released before the year 2000 and have an 'original_language' of 'en'.,Pathfinding Queries,neoflix
+Which 3 movies have the most keywords associated with them?,Pathfinding Queries,neoflix
+List the first 3 movies with the highest number of votes.,Pathfinding Queries,neoflix
+What are the top 5 movies with the lowest revenue and are still in 'Released' status?,Pathfinding Queries,neoflix
+Which 3 movies have the longest runtime and are in the 'Released' status?,Pathfinding Queries,neoflix
+List the top 3 movies with the largest budgets that have been released.,Pathfinding Queries,neoflix
+What are the first 5 movies that are part of a collection and have a budget greater than 10000000?,Pathfinding Queries,neoflix
+Which 3 movies have the highest popularity but the lowest revenue?,Pathfinding Queries,neoflix
+List the top 3 movies which are in the genre 'Animation' and have been released.,Pathfinding Queries,neoflix
+What are the first 5 movies directed by a specific director named 'John Doe'?,Pathfinding Queries,neoflix
+List the first 3 movies that have the tagline 'Roll the dice and unleash the excitement!',Pathfinding Queries,neoflix
+Which 5 movies have been rated by the most users?,Pathfinding Queries,neoflix
+Find the top 3 movies with a specific actor named 'Tom Hanks' in the cast.,Pathfinding Queries,neoflix
+What are the top 5 movies that were produced by 'Pixar Animation Studios'?,Pathfinding Queries,neoflix
+List the first 3 movies that have been translated into the language 'Kiswahili'.,Pathfinding Queries,neoflix
+Which 3 movies are most commonly spoken in 'Gaeilge'?,Pathfinding Queries,neoflix
+List the top 3 movies that have been produced in the country 'United States of America'.,Pathfinding Queries,neoflix
+What are the first 5 movies in the 'Toy Story Collection'?,Pathfinding Queries,neoflix
+Which 3 movies have the most expensive poster paths registered?,Pathfinding Queries,neoflix
+List the top 3 movies where the homepage URL includes 'disney'.,Pathfinding Queries,neoflix
+What are the top 5 movies with a release date on or after '2000-01-01'?,Pathfinding Queries,neoflix
+List the first 3 movies that have an 'average_vote' greater than 8.,Pathfinding Queries,neoflix
+Which 5 movies have the shortest runtime and are in the 'Released' status?,Pathfinding Queries,neoflix
+List the top 3 movies with the tagline 'What price would you put on your health?',Pathfinding Queries,neoflix
+What are the first 5 movies that have a main character named 'Charlie Wilson'?,Pathfinding Queries,neoflix
+List the top 3 movies that were produced by 'Pixar Animation Studios' and have a runtime longer than 90 minutes.,Pathfinding Queries,neoflix
+Which 3 movies have been rated 5.0 by users and have a 'Released' status?,Pathfinding Queries,neoflix
+List the first 3 movies that have a 'status' of 'In Production'.,Pathfinding Queries,neoflix
+What are the top 5 movies that have a genre of 'Comedy' and are rated above 6?,Pathfinding Queries,neoflix
+List the first 3 videos that have a poster path ending in '.jpg'.,Pathfinding Queries,neoflix
+Which 5 videos have the highest average vote and are in the 'Released' status?,Pathfinding Queries,neoflix
+List the first 3 videos with a budget greater than 100000 USD.,Pathfinding Queries,neoflix
+What are the top 5 videos produced in 'United States of America'?,Pathfinding Queries,neoflix
+List the top 3 videos that have the most votes.,Pathfinding Queries,neoflix
+Which 3 videos have the longest runtime and are in the 'Released' status?,Pathfinding Queries,neoflix
+List the first 5 videos that have been translated into the language 'Azərbaycan'.,Pathfinding Queries,neoflix
+What are the first 3 videos with a 'status' of 'In Production'?,Pathfinding Queries,neoflix
+List the top 5 videos that have a genre of 'Horror' and are rated above 5.,Pathfinding Queries,neoflix
+Which 3 adult films have the highest average vote?,Pathfinding Queries,neoflix
+List the first 3 adult films with a budget less than 50000 USD.,Pathfinding Queries,neoflix
+What are the top 5 adult films produced in 'Italy'?,Pathfinding Queries,neoflix
+List the top 3 adult films that have been tagged with the keyword 'jealousy'.,Pathfinding Queries,neoflix
+Which 3 adult films have the longest runtime and are in the 'Released' status?,Pathfinding Queries,neoflix
+List the first 5 adult films that have a homepage URL.,Pathfinding Queries,neoflix
+What are the top 3 genres that have the most movies associated with them?,Pathfinding Queries,neoflix
+List the first 3 production companies that have produced the most movies.,Pathfinding Queries,neoflix
+Which 3 countries have the most movies produced in them?,Pathfinding Queries,neoflix
+List the first 5 languages that are most frequently used as the original language in movies.,Pathfinding Queries,neoflix
+What are the top 3 collections with the most movies included?,Pathfinding Queries,neoflix
+List the first 3 genres that are most frequently targeted by packages.,Pathfinding Queries,neoflix
+Which 3 packages have the highest price?,Pathfinding Queries,neoflix
+List the top 5 packages by the duration they provide access.,Pathfinding Queries,neoflix
+What are the first 3 subscriptions that are about to expire?,Pathfinding Queries,neoflix
+List the first 3 languages that have been spoken in the most adult films.,Pathfinding Queries,neoflix
+Which 3 genres are most commonly associated with videos that have a budget over 100000 USD?,Pathfinding Queries,neoflix
+List the top 3 countries where the most videos have been produced.,Pathfinding Queries,neoflix
+What are the first 5 keywords most associated with movies that have a revenue above 1 million USD?,Pathfinding Queries,neoflix
+List the first 3 genres that have the highest average rating across all movies.,Pathfinding Queries,neoflix
+Which 3 production companies have produced the most adult films?,Pathfinding Queries,neoflix
+List the top 3 people who have acted the most in released movies.,Pathfinding Queries,neoflix
+What are the top 5 users who have rated the most movies?,Pathfinding Queries,neoflix
+List the first 3 movies with the highest number of associated keywords and a budget above 50000 USD.,Pathfinding Queries,neoflix
+Which 3 movies have the longest gap between their release date and the current date?,Pathfinding Queries,neoflix
+List the first 3 movies that have a specific keyword 'adventure' and are in the 'Released' status.,Pathfinding Queries,neoflix
+What are the top 5 movies with the most complex taglines?,Pathfinding Queries,neoflix
+List the first 3 movies that are part of a collection and have a runtime less than 90 minutes.,Pathfinding Queries,neoflix
+Which 3 adult films have the most provocative taglines?,Pathfinding Queries,neoflix
+List the first 3 videos that have a specific keyword 'action' and are in the 'Released' status.,Pathfinding Queries,neoflix
+What are the top 5 adult films with the lowest vote count and are still in the 'Released' status?,Pathfinding Queries,neoflix
+List the first 3 movies that have an original language of 'es' and are in the 'Released' status.,Pathfinding Queries,neoflix
+Which 3 videos have the most detailed overviews?,Pathfinding Queries,neoflix
+List the top 3 adult films that have been rated exactly 3 times.,Pathfinding Queries,neoflix
+What are the first 5 packages that provide access to the genre 'Drama'?,Pathfinding Queries,neoflix
+List the first 3 subscriptions that were initiated in 2020.,Pathfinding Queries,neoflix
+Which 3 movies have the most cast members named 'Tom Hanks'?,Pathfinding Queries,neoflix
+List the top 3 videos that have been produced by 'Pixar Animation Studios' and have a runtime shorter than 50 minutes.,Pathfinding Queries,neoflix
+What are the top 5 movies with an original title different from their title?,Pathfinding Queries,neoflix
+List the first 3 adult films with a tagline 'Humiliation. Rape. Murder. You know the drill.',Pathfinding Queries,neoflix
+Which 3 languages are most frequently used in videos with a runtime over 100 minutes?,Pathfinding Queries,neoflix
+List the first 3 packages that provide the longest duration of access to movies.,Pathfinding Queries,neoflix
+What are the first 5 movies that have a poster path ending in '.jpg'?,Pathfinding Queries,neoflix
+List the top 3 people who have the most credits as a producer.,Pathfinding Queries,neoflix
+Which 3 movies have the most distinct languages spoken?,Pathfinding Queries,neoflix
+List the first 3 movies that have been rated exactly 10 times and have a budget greater than 100000 USD.,Pathfinding Queries,neoflix
+What are the top 5 movies with a specific keyword 'space' and have been released?,Pathfinding Queries,neoflix
+"List the first 3 movies that have a release date on a specific day, say '1995-12-22'.",Pathfinding Queries,neoflix
+What are the top 5 movies with the highest revenue?,Complex Aggregation Queries,neoflix
+List the first 3 genres most commonly associated with movies that have a budget over $50 million.,Complex Aggregation Queries,neoflix
+Which 3 movies have the most number of keywords associated with them?,Complex Aggregation Queries,neoflix
+Who are the top 5 directors with the most films produced in the United States?,Complex Aggregation Queries,neoflix
+What are the top 3 languages spoken in movies that have a revenue greater than $100 million?,Complex Aggregation Queries,neoflix
+List the first 3 countries where movies with an average vote above 8 were produced.,Complex Aggregation Queries,neoflix
+Which 3 production companies have produced the most movies with a runtime longer than 120 minutes?,Complex Aggregation Queries,neoflix
+What are the top 5 most popular movies released before 2000?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors by number of roles in movies with a status of 'Released'?,Complex Aggregation Queries,neoflix
+Which 3 users have rated the most number of movies?,Complex Aggregation Queries,neoflix
+What are the top 5 countries with the most movies produced?,Complex Aggregation Queries,neoflix
+List the first 3 genres associated with the highest average movie budget.,Complex Aggregation Queries,neoflix
+What are the top 3 collections with the most movies included?,Complex Aggregation Queries,neoflix
+Which 3 directors have worked on the highest-grossing movies?,Complex Aggregation Queries,neoflix
+List the first 3 actors who have starred in the most movies within a single genre.,Complex Aggregation Queries,neoflix
+What are the top 5 languages in which the most highly rated movies were originally made?,Complex Aggregation Queries,neoflix
+Which 3 production companies have the highest average revenue per movie?,Complex Aggregation Queries,neoflix
+List the first 3 movies that have been rated by the highest number of users.,Complex Aggregation Queries,neoflix
+What are the top 5 genres with the most movies having a runtime of less than 90 minutes?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors to appear in movies from at least two different genres?,Complex Aggregation Queries,neoflix
+Which 3 languages are most commonly found in movies with a poster path featuring '/9'?,Complex Aggregation Queries,neoflix
+List the top 5 movies with the most extensive taglines.,Complex Aggregation Queries,neoflix
+What are the top 3 highest budget movies that have a poster path ending in 'jpg'?,Complex Aggregation Queries,neoflix
+Which 3 directors have the most movies with an average vote higher than 7?,Complex Aggregation Queries,neoflix
+List the first 3 countries where the most English language movies are produced.,Complex Aggregation Queries,neoflix
+What are the top 5 production companies by the number of movies with a runtime longer than 100 minutes?,Complex Aggregation Queries,neoflix
+List the first 3 actors who have played in movies with at least three different taglines.,Complex Aggregation Queries,neoflix
+Which 3 genres have the most videos associated with them?,Complex Aggregation Queries,neoflix
+List the first 3 countries with the most videos produced.,Complex Aggregation Queries,neoflix
+What are the top 5 movies with the longest runtime and released after 2010?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors by number of roles in adult films?,Complex Aggregation Queries,neoflix
+What are the top 5 genres of movies produced by Pixar Animation Studios?,Complex Aggregation Queries,neoflix
+List the first 3 movies with the most revenue that were released after the year 2000.,Complex Aggregation Queries,neoflix
+Who are the first 3 directors to have movies in more than one collection?,Complex Aggregation Queries,neoflix
+What are the top 5 languages in which the most adult films were originally made?,Complex Aggregation Queries,neoflix
+Which 3 production companies have produced the most adult films?,Complex Aggregation Queries,neoflix
+List the top 5 keywords associated with movies that have a runtime over 150 minutes.,Complex Aggregation Queries,neoflix
+What are the top 3 countries producing the most adult films with a runtime over 60 minutes?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors with roles in both movies and adult films?,Complex Aggregation Queries,neoflix
+List the first 3 actors with roles in both movies and videos.,Complex Aggregation Queries,neoflix
+What are the top 5 movies with the most complex taglines?,Complex Aggregation Queries,neoflix
+Which 3 production companies have produced movies with the highest average popularity?,Complex Aggregation Queries,neoflix
+List the first 3 movies with the lowest revenue and released before 1990.,Complex Aggregation Queries,neoflix
+What are the top 5 most popular genres based on average movie popularity?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors to star in movies from both the horror and comedy genres?,Complex Aggregation Queries,neoflix
+Which 3 languages are most common in movies with a budget over $30 million?,Complex Aggregation Queries,neoflix
+List the first 3 genres of movies with the highest average vote count.,Complex Aggregation Queries,neoflix
+What are the top 5 movies with the highest budget that were released in the 1990s?,Complex Aggregation Queries,neoflix
+Who are the first 3 directors with movies that have a runtime of over 180 minutes?,Complex Aggregation Queries,neoflix
+Which 3 production companies have the most movies with a vote count over 1000?,Complex Aggregation Queries,neoflix
+List the top 5 adult films with the highest average votes.,Complex Aggregation Queries,neoflix
+What are the top 3 languages spoken in videos that have a revenue greater than $0?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors by number of roles in videos with a status of 'Released'?,Complex Aggregation Queries,neoflix
+List the first 3 genres with the most adult films associated.,Complex Aggregation Queries,neoflix
+What are the top 5 movies with the most number of spoken languages?,Complex Aggregation Queries,neoflix
+Which 3 directors have worked on movies with the longest total runtime?,Complex Aggregation Queries,neoflix
+List the first 3 countries where the most non-English language movies are produced.,Complex Aggregation Queries,neoflix
+What are the top 5 most popular videos based on their popularity score?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors to have starred in at least 3 movies from the 'Toy Story Collection'?,Complex Aggregation Queries,neoflix
+Which 3 languages are spoken most commonly in movies with a runtime longer than 120 minutes?,Complex Aggregation Queries,neoflix
+List the first 3 genres that have the most movies featuring Tom Hanks.,Complex Aggregation Queries,neoflix
+What are the top 5 production companies by the number of comedy films produced?,Complex Aggregation Queries,neoflix
+List the first 3 movies with the most extensive homepages.,Complex Aggregation Queries,neoflix
+What are the top 3 highest revenue adult films?,Complex Aggregation Queries,neoflix
+Who are the first 3 directors who have worked on both movies and adult films?,Complex Aggregation Queries,neoflix
+Which 3 production companies have the most films with an original language of 'en'?,Complex Aggregation Queries,neoflix
+List the top 5 keywords associated with the most commercially successful movies.,Complex Aggregation Queries,neoflix
+What are the top 3 countries producing the most comedies?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors who have starred in both comedies and dramas?,Complex Aggregation Queries,neoflix
+Which 3 languages are spoken in the most films with a poster featuring '/rh'?,Complex Aggregation Queries,neoflix
+List the first 3 genres of movies with the lowest average revenue.,Complex Aggregation Queries,neoflix
+What are the top 5 movies with a tagline that includes the word 'adventure'?,Complex Aggregation Queries,neoflix
+Who are the first 3 directors of movies with a budget less than $5 million?,Complex Aggregation Queries,neoflix
+Which 3 production companies have produced the most films with a release date before 1980?,Complex Aggregation Queries,neoflix
+List the top 5 movies with the longest taglines.,Complex Aggregation Queries,neoflix
+"What are the top 3 countries where the most videos with a budget over $500,000 are produced?",Complex Aggregation Queries,neoflix
+Who are the first 3 actors with the most roles in videos released after 2010?,Complex Aggregation Queries,neoflix
+List the first 3 genres with the most movies released in the 21st century.,Complex Aggregation Queries,neoflix
+What are the top 5 movies with the most keywords?,Complex Aggregation Queries,neoflix
+Which 3 directors have the highest average vote for their movies?,Complex Aggregation Queries,neoflix
+List the first 3 movies with the most unique spoken languages.,Complex Aggregation Queries,neoflix
+What are the top 5 countries with the most movies featuring an average vote over 7.5?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors to have roles in movies with at least five different production companies?,Complex Aggregation Queries,neoflix
+Which 3 languages are most commonly found in movies with a status of 'In Production'?,Complex Aggregation Queries,neoflix
+List the top 5 adult films based on the number of different languages spoken.,Complex Aggregation Queries,neoflix
+What are the top 3 countries producing the most movies with an average vote below 5?,Complex Aggregation Queries,neoflix
+Who are the first 3 directors with movies in at least three different genres?,Complex Aggregation Queries,neoflix
+Which 3 production companies have produced the most movies with a popularity over 20?,Complex Aggregation Queries,neoflix
+List the first 3 movies that have a homepage and were released after 2010.,Complex Aggregation Queries,neoflix
+What are the top 5 genres with the least number of movies made?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors who starred in movies that won at least one Oscar?,Complex Aggregation Queries,neoflix
+Which 3 languages are most commonly spoken in movies with an average vote below 4?,Complex Aggregation Queries,neoflix
+List the first 3 movies with the highest number of directors.,Complex Aggregation Queries,neoflix
+What are the top 5 production companies with the most movies featuring a runtime over 150 minutes?,Complex Aggregation Queries,neoflix
+Who are the first 3 directors who have worked on movies with an average vote below 5?,Complex Aggregation Queries,neoflix
+What are the top 5 countries producing the most movies with a tagline that includes the word 'love'?,Complex Aggregation Queries,neoflix
+Which 3 production companies have the most movies with a runtime under 80 minutes?,Complex Aggregation Queries,neoflix
+List the first 3 actors who have appeared in at least three movies with different original languages.,Complex Aggregation Queries,neoflix
+What are the top 5 genres with the most movies having a poster path that starts with '/rh'?,Complex Aggregation Queries,neoflix
+Who are the first 3 directors to have made both adult films and videos?,Complex Aggregation Queries,neoflix
+Which 3 languages are most common in movies with a revenue over $200 million?,Complex Aggregation Queries,neoflix
+List the top 5 movies with the most production companies involved.,Complex Aggregation Queries,neoflix
+What are the top 3 countries producing the most videos with a budget over $1 million?,Complex Aggregation Queries,neoflix
+Who are the first 3 actors to have appeared in movies from more than five different countries?,Complex Aggregation Queries,neoflix
+List the first 3 genres with the most movies featuring a runtime over 200 minutes.,Complex Aggregation Queries,neoflix
+What are the top 5 movies with the most spoken languages and released after 2015?,Complex Aggregation Queries,neoflix
+Which 3 directors have the most films with a status of 'Released'?,Complex Aggregation Queries,neoflix
+What are the top 5 movies by revenue that have a runtime greater than 120 minutes?,Verbose query,neoflix
+List the first 3 languages spoken in movies released after 2010.,Verbose query,neoflix
+Which 5 movies have the highest average vote and were released before 2000?,Verbose query,neoflix
+Name the top 3 production companies by the number of movies produced with a budget over 100 million USD.,Verbose query,neoflix
+What are the first 3 genres associated with movies that have a popularity greater than 20?,Verbose query,neoflix
+List the 5 countries where movies with a revenue greater than 500 million USD were produced.,Verbose query,neoflix
+Which 3 movies have the most keywords associated with them?,Verbose query,neoflix
+List the top 5 actors by the number of movies they have cast in.,Verbose query,neoflix
+What are the first 3 collections that include movies with a budget over 50 million USD?,Verbose query,neoflix
+Which 5 users have rated the highest number of movies?,Verbose query,neoflix
+Name the top 3 genres in videos that have a runtime less than 30 minutes.,Verbose query,neoflix
+List the first 5 production companies that produced videos with zero revenue.,Verbose query,neoflix
+What are the top 3 countries where adult films are produced the most?,Verbose query,neoflix
+"Which 5 keywords are most common in adult films with a budget less than 500,000 USD?",Verbose query,neoflix
+List the top 3 movies with the highest revenue that are part of a collection.,Verbose query,neoflix
+"Name the first 5 movies that were rated by users on a specific date, e.g., '2020-01-01'.",Verbose query,neoflix
+What are the top 3 actors who have played in the most number of adult films?,Verbose query,neoflix
+"List the first 5 movies that have been tagged with a specific keyword, e.g., 'adventure'.",Verbose query,neoflix
+Which 3 languages are most frequently listed as the original language in videos?,Verbose query,neoflix
+"List the top 5 movies that have been produced by a specific company, e.g., 'Pixar Animation Studios'.",Verbose query,neoflix
+What are the first 3 genres associated with the highest-grossing movies?,Verbose query,neoflix
+Name the top 5 directors who have worked on the most films.,Verbose query,neoflix
+List the first 3 movies that have the tagline 'Roll the dice and unleash the excitement!'.,Verbose query,neoflix
+Which 5 movies have the most cast members?,Verbose query,neoflix
+List the top 3 countries by the number of videos produced.,Verbose query,neoflix
+Name the first 5 genres that videos with a popularity rating above 5 belong to.,Verbose query,neoflix
+What are the top 3 adult films with the highest average vote?,Verbose query,neoflix
+List the first 5 adult films released after 2010.,Verbose query,neoflix
+Which 3 users have given the highest ratings to movies?,Verbose query,neoflix
+List the top 5 actors based on the number of leading roles they have had in movies.,Verbose query,neoflix
+What are the first 3 movies that were produced in the United States and have a vote count greater than 5000?,Verbose query,neoflix
+Name the top 5 production companies that have produced movies with a runtime longer than 150 minutes.,Verbose query,neoflix
+List the first 3 keywords associated with movies that have a poster path ending in '.jpg'.,Verbose query,neoflix
+Which 5 genres are most common among movies with a budget over 200 million USD?,Verbose query,neoflix
+List the top 3 actors who have appeared in both movies and videos.,Verbose query,neoflix
+Name the first 5 movies that have a homepage listed.,Verbose query,neoflix
+What are the top 3 movies based on popularity that were released in the 1990s?,Verbose query,neoflix
+List the first 5 languages used in the original language of adult films.,Verbose query,neoflix
+Which 3 movies have the highest budget to revenue ratio?,Verbose query,neoflix
+"List the top 5 movies with the most diverse cast, measured by the number of different countries actors come from.",Verbose query,neoflix
+What are the first 3 collections that include videos?,Verbose query,neoflix
+Name the top 5 movies with the most detailed overviews (measured by word count).,Verbose query,neoflix
+"List the first 3 adult films with a specific tagline, e.g., 'Trust Will Get You Killed'.",Verbose query,neoflix
+Which 5 countries have produced the most adult films?,Verbose query,neoflix
+List the top 3 movies with a budget over 100 million USD and an average vote above 7.,Verbose query,neoflix
+"Name the first 5 movies that were produced by a specific country, e.g., 'France'.",Verbose query,neoflix
+What are the top 3 genres associated with videos that have a runtime over 100 minutes?,Verbose query,neoflix
+List the first 5 production companies that have produced the most adult films.,Verbose query,neoflix
+Which 3 movies have the longest runtime and were released before 2000?,Verbose query,neoflix
+List the top 5 actors by the number of movies they have cast in with a budget over 50 million USD.,Verbose query,neoflix
+What are the first 3 languages spoken in the most popular movies (popularity > 20)?,Verbose query,neoflix
+"Name the top 5 movies that have been produced in a specific genre, e.g., 'Animation'.",Verbose query,neoflix
+What are the names of the top 3 routers in DataCenter 'DC1'?,Simple Retrieval Queries,network
+List the first 3 software dependencies for the software named 'RHEL'.,Simple Retrieval Queries,network
+Which 3 machines are running the application named 'webserver' in DataCenter 'DC1'?,Simple Retrieval Queries,network
+Name the first 3 types of machines held in Rack 'DC1-RCK-1-1'.,Simple Retrieval Queries,network
+What are the top 5 IP addresses of interfaces connected to the router 'DC1-R-1'?,Simple Retrieval Queries,network
+List the first 3 networks connected to the interface with IP '10.0.0.254'.,Simple Retrieval Queries,network
+Which 3 processes are running on the machine named 'DC1-RCK-1-1-M-1'?,Simple Retrieval Queries,network
+What are the first 3 previous versions of the software named '7.1'?,Simple Retrieval Queries,network
+Which 3 versions of software does the OS named 'RHEL' have instances of?,Simple Retrieval Queries,network
+What are the top 3 ports listened to by the application 'webserver'?,Simple Retrieval Queries,network
+Which 3 services are instances of the software 'RHEL'?,Simple Retrieval Queries,network
+Name the first 3 applications that depend on the service named 'java'.,Simple Retrieval Queries,network
+What are the top 3 zones by IP address in DataCenter 'DC1'?,Simple Retrieval Queries,network
+List the first 3 racks contained in DataCenter 'DC1'.,Simple Retrieval Queries,network
+Which 3 switches are held in Rack 'DC1-RCK-1-1'?,Simple Retrieval Queries,network
+Name the first 3 interfaces exposed by Port 80.,Simple Retrieval Queries,network
+What are the top 3 applications running on machines in zone 4?,Simple Retrieval Queries,network
+List the first 3 processes dependent on the service named 'java'.,Simple Retrieval Queries,network
+Which 3 machines in DataCenter 'DC1' are of type 'm-4/16/25'?,Simple Retrieval Queries,network
+What are the first 3 ports that the process with PID 8966 listens to?,Simple Retrieval Queries,network
+Which 3 interfaces are connected to each other in zone 1?,Simple Retrieval Queries,network
+Name the top 3 egress routes from DataCenter 'DC1'.,Simple Retrieval Queries,network
+List the first 3 machines that route to the interface with IP '10.1.1'.,Simple Retrieval Queries,network
+Which 3 applications are instances of the software 'webapp'?,Simple Retrieval Queries,network
+What are the top 3 services that depend on the process named '8966'?,Simple Retrieval Queries,network
+Name the first 3 types of machines in Rack 'DC1-RCK-1-1'.,Simple Retrieval Queries,network
+What are the top 3 applications that depend on the process '8966'?,Simple Retrieval Queries,network
+List the first 3 dependencies of the application 'webserver'.,Simple Retrieval Queries,network
+Which 3 machines run OS named 'RHEL' in DataCenter 'DC1'?,Simple Retrieval Queries,network
+What are the first 3 services running on machine 'DC1-RCK-1-1-M-1'?,Simple Retrieval Queries,network
+Which 3 racks in DataCenter 'DC1' contain switches of type 's-2/4/5'?,Simple Retrieval Queries,network
+Name the first 3 interfaces that connect to the network with IP '10.2'.,Simple Retrieval Queries,network
+What are the top 3 ports listened to by the process with PID 8966?,Simple Retrieval Queries,network
+List the first 3 previous versions of version '7.1'.,Simple Retrieval Queries,network
+Which 3 applications are instances of the application 'crm'?,Simple Retrieval Queries,network
+What are the first 3 services that depend on the version '7.1'?,Simple Retrieval Queries,network
+Name the top 3 processes that are instances of the software 'RHEL'.,Simple Retrieval Queries,network
+List the first 3 machines that run services in zone 2.,Simple Retrieval Queries,network
+Which 3 ports are exposed by interfaces in zone 3?,Simple Retrieval Queries,network
+What are the first 3 racks that hold machines of type 'xl-16/256/625'?,Simple Retrieval Queries,network
+Which 3 services listen to port 80 in DataCenter 'DC1'?,Simple Retrieval Queries,network
+Name the first 3 ports connected to the interface with IP '10.1.0.254'.,Simple Retrieval Queries,network
+What are the top 3 types of software required by the application 'logstash'?,Simple Retrieval Queries,network
+List the first 3 dependencies of the service named 'java'.,Simple Retrieval Queries,network
+Which 3 machines in DataCenter 'DC1' are connected to the interface with IP '10.3'?,Simple Retrieval Queries,network
+What are the first 3 applications that depend on the service 'java'?,Simple Retrieval Queries,network
+Name the top 3 processes that depend on the version '7.1'.,Simple Retrieval Queries,network
+List the first 3 previous versions that the version '7.1' depends on.,Simple Retrieval Queries,network
+Which 3 types of machines are held in the racks of zone 2?,Simple Retrieval Queries,network
+What are the first 3 interfaces that connect to the network with IP '10.4'?,Simple Retrieval Queries,network
+Which 3 racks in DataCenter 'DC1' contain switches of type 'm-4/16/25'?,Simple Retrieval Queries,network
+Name the first 3 processes that are instances of the application 'cms'.,Simple Retrieval Queries,network
+What are the top 3 services that depend on the application 'webapp'?,Simple Retrieval Queries,network
+List the first 3 ports listened to by the service named 'java'.,Simple Retrieval Queries,network
+Which 3 applications are instances of the software 'webapp'?,Simple Retrieval Queries,network
+What are the first 3 processes that are instances of the process '8966'?,Simple Retrieval Queries,network
+"What are the names of all DataCenters located in 'Iceland, Rekjavik'?",Complex Retrieval Queries,network
+List the routers in 'DC1' DataCenter.,Complex Retrieval Queries,network
+How many zones are there in the 'DC1' DataCenter?,Complex Retrieval Queries,network
+What are the IP addresses for interfaces connected to 'DC1-R-1' router?,Complex Retrieval Queries,network
+Which ports are exposed by the interface with IP '10.0.0.254'?,Complex Retrieval Queries,network
+Name the routers that are in zone 1 within 'DC1' DataCenter.,Complex Retrieval Queries,network
+Which egress routers are available in the 'DC1' DataCenter?,Complex Retrieval Queries,network
+List all racks contained within the 'DC1' DataCenter.,Complex Retrieval Queries,network
+Which type of machines are held in rack 'DC1-RCK-1-1'?,Complex Retrieval Queries,network
+What software versions are available for 'RHEL'?,Complex Retrieval Queries,network
+What are the dependencies for the software named 'RHEL'?,Complex Retrieval Queries,network
+Which applications are running on the machine named 'DC1-RCK-1-1-M-1'?,Complex Retrieval Queries,network
+List the services running on machines in rack 'DC1-RCK-1-10'.,Complex Retrieval Queries,network
+Which switches are located in rack with name 'DC1-RCK-2-3'?,Complex Retrieval Queries,network
+How many interfaces are connected to the network with IP '10.3'?,Complex Retrieval Queries,network
+What are the IP addresses of zones in zone 4?,Complex Retrieval Queries,network
+Identify all applications that listen on port 80.,Complex Retrieval Queries,network
+Which processes are running on machines that run the 'webserver' application?,Complex Retrieval Queries,network
+What operating systems are installed on machines in zone 3?,Complex Retrieval Queries,network
+List all software that depends on version '7.1'.,Complex Retrieval Queries,network
+What previous versions are linked to version '7.1'?,Complex Retrieval Queries,network
+Which services listen to port 443 and are instances of 'java'?,Complex Retrieval Queries,network
+How many machines are in the 'DC1' DataCenter's zone 2?,Complex Retrieval Queries,network
+What types of machines are in zone 3 and have more than 16 GB RAM?,Complex Retrieval Queries,network
+List the first 5 network IPs in zone 1.,Complex Retrieval Queries,network
+Which racks contain switches with IP starting with '10.1'?,Complex Retrieval Queries,network
+How many applications depend on the 'crm' service?,Complex Retrieval Queries,network
+What is the total number of dependencies for the 'logstash' application?,Complex Retrieval Queries,network
+Identify machines that run an OS started at or after timestamp 1606165629748.,Complex Retrieval Queries,network
+What are the names of all services started on machines in zone 1?,Complex Retrieval Queries,network
+List all machines that have a type 'xl' in the 'DC1' DataCenter.,Complex Retrieval Queries,network
+Which ports are used by processes on the machine 'DC1-RCK-1-1-M-1'?,Complex Retrieval Queries,network
+What are the applications that depend on the 'webapp' software?,Complex Retrieval Queries,network
+Which services are instances of the 'cms' application?,Complex Retrieval Queries,network
+List all processes that are instances of the 'RHEL' OS.,Complex Retrieval Queries,network
+What are the start times for applications named 'webserver' in zone 3?,Complex Retrieval Queries,network
+Which versions of software are dependencies for the 'webapp' application in zone 2?,Complex Retrieval Queries,network
+Identify all machines with a disk size greater than 256 GB in zone 4.,Complex Retrieval Queries,network
+What are the IP addresses for switches in zone 2's rack 3?,Complex Retrieval Queries,network
+Which applications are instances of software named 'RHEL' and run on machines in zone 1?,Complex Retrieval Queries,network
+List all types of machines that have a CPU count of at least 8.,Complex Retrieval Queries,network
+Which machines are running services that started after timestamp 1606597376483?,Complex Retrieval Queries,network
+What are the previous versions of the software running on 'DC1-RCK-1-1-M-1'?,Complex Retrieval Queries,network
+Identify the top 3 processes by PID that depend on the 'java' service.,Complex Retrieval Queries,network
+Which interfaces connect networks in zone 2 with those in zone 3?,Complex Retrieval Queries,network
+How many different types of software are running on machines in zone 4?,Complex Retrieval Queries,network
+List the software versions installed on machines that have type 'm'.,Complex Retrieval Queries,network
+Which applications are listening on ports greater than 1024?,Complex Retrieval Queries,network
+What are the dependencies for the process named '8966'?,Complex Retrieval Queries,network
+List all the services and their start times on machines in rack 'DC1-RCK-1-10'.,Complex Retrieval Queries,network
+Which DataCenters contain the Router named 'DC1-RE'?,Simple Aggregation Queries,network
+List the first 3 Routers contained in DataCenter 'DC1'.,Simple Aggregation Queries,network
+What are the names of all Racks in zone 1 of DataCenter 'DC1'?,Simple Aggregation Queries,network
+Identify the first 3 Interfaces connected by the Router named 'DC1-R-1'.,Simple Aggregation Queries,network
+What are the IP addresses of Interfaces routed by Network '10.1'?,Simple Aggregation Queries,network
+Name the first 3 Machines held in Rack 'DC1-RCK-1-1'.,Simple Aggregation Queries,network
+Which type of Machines are located in Rack 'DC1-RCK-1-1'?,Simple Aggregation Queries,network
+List all Switches in racks with zone 3.,Simple Aggregation Queries,network
+What are the IPs of the top 3 Interfaces exposed to Port 80?,Simple Aggregation Queries,network
+Identify the first 3 Applications running on Machine 'DC1-RCK-1-1-M-1'.,Simple Aggregation Queries,network
+Which OS instances are running on the Machines in Rack 'DC1-RCK-1-1'?,Simple Aggregation Queries,network
+Name the first 3 Processes run by Machine 'DC1-RCK-1-1-M-1'.,Simple Aggregation Queries,network
+What are the dependencies of the Software 'RHEL'?,Simple Aggregation Queries,network
+List the first 3 Services running on Machine 'DC1-RCK-1-1-M-1'.,Simple Aggregation Queries,network
+Which Applications listen on Port 8080?,Simple Aggregation Queries,network
+Identify the first 3 Applications dependent on the Service 'java'.,Simple Aggregation Queries,network
+Which versions of Software 'RHEL' are currently used in DataCenter 'DC1'?,Simple Aggregation Queries,network
+Name the first 3 Software instances that depend on version '7.1'.,Simple Aggregation Queries,network
+What are the first 3 previous versions of Version '7.1'?,Simple Aggregation Queries,network
+List the top 5 processes dependent on Service 'java'.,Simple Aggregation Queries,network
+Which Machines in DataCenter 'DC1' are running an Application named 'webserver'?,Simple Aggregation Queries,network
+Identify the first 3 Services listening on Port 443.,Simple Aggregation Queries,network
+What are the first 3 Processes that listen on Port 25 and their start times?,Simple Aggregation Queries,network
+Which Processes in DataCenter 'DC1' depend on the Process named '8966'?,Simple Aggregation Queries,network
+List the top 3 Machines that route Interfaces to Network '10.4'.,Simple Aggregation Queries,network
+What are the IPs of Interfaces connected to each other within zone 4?,Simple Aggregation Queries,network
+Identify the first 3 Ports exposed by Interface with IP '10.1.1.1'.,Simple Aggregation Queries,network
+Which Machines are running OS named 'RHEL' in DataCenter 'DC1'?,Simple Aggregation Queries,network
+List the first 3 Services instance of Application 'webapp'.,Simple Aggregation Queries,network
+Name the top 3 Applications that depend on Process '8966'.,Simple Aggregation Queries,network
+What are the IPs of Switches located in Rack 'DC1-RCK-1-1'?,Simple Aggregation Queries,network
+List the first 3 Interfaces routed by Egress 'DC1-RE'.,Simple Aggregation Queries,network
+Which Racks are in zone 2 of DataCenter 'DC1'?,Simple Aggregation Queries,network
+Identify the top 3 Types of Machines in terms of RAM capacity in DataCenter 'DC1'.,Simple Aggregation Queries,network
+What are the IP addresses of Interfaces connected by Router 'DC1-R-2'?,Simple Aggregation Queries,network
+Name the first 3 Machines that run version '7.1' of any Software.,Simple Aggregation Queries,network
+"What DataCenters are located in Iceland, Reykjavik?",Pathfinding Queries,network
+Which Routers are located in zone 1?,Pathfinding Queries,network
+List the first 3 Racks in zone 2.,Pathfinding Queries,network
+What is the IP of the Interface connected to the Egress 'DC1-RE'?,Pathfinding Queries,network
+Which Network routes through the Interface with IP '10.4.8.254'?,Pathfinding Queries,network
+Name the top 5 Machines held in Rack 'DC1-RCK-1-1'.,Pathfinding Queries,network
+What type of Machines are in Rack 'DC1-RCK-1-1' and have more than 16 GB RAM?,Pathfinding Queries,network
+Which Applications are running on the Machine named 'DC1-RCK-1-1-M-1'?,Pathfinding Queries,network
+List all Processes running on Machines within zone 3.,Pathfinding Queries,network
+What Software versions are available for 'RHEL'?,Pathfinding Queries,network
+Which Ports are exposed by the Interface with IP '10.0.0.254'?,Pathfinding Queries,network
+Name the top 3 Services listening on Port 80.,Pathfinding Queries,network
+What are the names of the first 3 Applications that depend on the Service named 'java'?,Pathfinding Queries,network
+Which Versions are marked as previous to '7.1'?,Pathfinding Queries,network
+What are the dependencies of the Software 'RHEL'?,Pathfinding Queries,network
+List the first 5 Switches in Rack 1.,Pathfinding Queries,network
+Which Switches route to the Interface with IP '10.1.1'?,Pathfinding Queries,network
+Name the Machines that run the OS 'RHEL'.,Pathfinding Queries,network
+List the top 5 Processes depending on the Service with PID 8966.,Pathfinding Queries,network
+Which Process instances are linked to Version '7.1'?,Pathfinding Queries,network
+Name the Applications that listen on port 443.,Pathfinding Queries,network
+What are the first 5 Services that started after timestamp 1606165629748?,Pathfinding Queries,network
+Which Type of machine has the highest CPU allocation?,Pathfinding Queries,network
+List the Machines of type 'xl' that have a disk size greater than 256.,Pathfinding Queries,network
+Which Routers are connected to Interfaces in zone 4?,Pathfinding Queries,network
+What are the IPs of the Networks in zone 2?,Pathfinding Queries,network
+Identify the first 3 Services that are instances of 'java'.,Pathfinding Queries,network
+Which Applications depend on the 'webserver' application?,Pathfinding Queries,network
+What Ports are listened to by the 'crm' application?,Pathfinding Queries,network
+Find the top 3 Processes that depend on themselves.,Pathfinding Queries,network
+What are the names of the first 3 Types with a RAM size less than 64?,Pathfinding Queries,network
+Which Software requires version '7.1' to function?,Pathfinding Queries,network
+List the top 3 DataCenters that contain more than 5 Routers.,Pathfinding Queries,network
+Which Zone routes to Interface with IP '10.2.8.254'?,Pathfinding Queries,network
+Name the first 3 Machines that are of type 'm' and are located in zone 3.,Pathfinding Queries,network
+List the first 5 Applications that depend on the Process with PID 8966.,Pathfinding Queries,network
+What are the IPs of the Ports exposed by the Interface connected to Router 'DC1-R-1'?,Pathfinding Queries,network
+Which Machine types are used in DataCenter 'DC1'?,Pathfinding Queries,network
+Name the Egress points from the DataCenter 'DC1'.,Pathfinding Queries,network
+What are the dependencies of the application 'webapp'?,Pathfinding Queries,network
+Which Routers have a connection to Interface with IP '10.3.8.253'?,Pathfinding Queries,network
+List the first 3 Zones that have a size of 16.,Pathfinding Queries,network
+Which Switches are connected to Interfaces routing through network '10.2'?,Pathfinding Queries,network
+What is the IP of the Interface in Rack 'DC1-RCK-1-1'?,Pathfinding Queries,network
+Which Interfaces are directly connected to 'DC1-RE'?,Pathfinding Queries,network
+What are the first 3 Machines that run the OS starting after 1605733619064?,Pathfinding Queries,network
+List the top 3 Versions used by the Software 'RHEL'.,Pathfinding Queries,network
+Name the Applications running on Machines in Zone 4.,Pathfinding Queries,network
+Which Processes are instances of the Software 'RHEL'?,Pathfinding Queries,network
+What are the Versions dependent on the Software 'RHEL'?,Pathfinding Queries,network
+Which Zones have Networks with the IP '10.3'?,Pathfinding Queries,network
+List the first 5 Ports listened to by the Service with name 'java'.,Pathfinding Queries,network
+Name the Racks in Zone 1 that hold more than 3 Machines.,Pathfinding Queries,network
+Which Machine Interfaces are connected to Network '10.1'?,Pathfinding Queries,network
+What are the IPs of the first 5 Interfaces connected to Zone 4?,Pathfinding Queries,network
+Which DataCenter contains the router named 'DC1-R-1'?,Complex Aggregation Queries,network
+What are the top 3 types of machines held in rack 'DC1-RCK-1-1'?,Complex Aggregation Queries,network
+List the top 5 routers located in zone 2.,Complex Aggregation Queries,network
+Which software versions are dependent on the software named 'RHEL'?,Complex Aggregation Queries,network
+What are the top 3 applications running on the machine named 'DC1-RCK-1-1-M-1'?,Complex Aggregation Queries,network
+Which zone has the most networks routed through it?,Complex Aggregation Queries,network
+What are the first 3 processes running on machines within 'DC1-RCK-4-9'?,Complex Aggregation Queries,network
+List the top 5 ports exposed by the interface with IP '10.0.0.254'.,Complex Aggregation Queries,network
+Which application listens on port 80?,Complex Aggregation Queries,network
+How many machines in rack 'DC1-RCK-1-1' run the OS 'RHEL'?,Complex Aggregation Queries,network
+What are the top 3 egress routes from DataCenter 'DC1'?,Complex Aggregation Queries,network
+List all routers connected to interfaces in zone 3.,Complex Aggregation Queries,network
+Which software has the most dependencies in the schema?,Complex Aggregation Queries,network
+List the first 3 services that started on applications named 'webserver'.,Complex Aggregation Queries,network
+Which network has the smallest size and what is its IP?,Complex Aggregation Queries,network
+How many interfaces are connected to 'DC1-R-2'?,Complex Aggregation Queries,network
+What is the type of the machine that runs the most applications in DataCenter 'DC1'?,Complex Aggregation Queries,network
+Which switch is located in the highest rack number within DataCenter 'DC1'?,Complex Aggregation Queries,network
+List the first 3 processes that depend on the version '7.1'.,Complex Aggregation Queries,network
+What is the total RAM of all types of machines grouped by their type in the DataCenter 'DC1'?,Complex Aggregation Queries,network
+Which zones have switches with IP starting with '10.1'?,Complex Aggregation Queries,network
+What are the top 5 latest services started in DataCenter 'DC1'?,Complex Aggregation Queries,network
+How many racks contain switches in zone 4 of DataCenter 'DC1'?,Complex Aggregation Queries,network
+What are the dependencies of the software named 'RHEL' and their versions?,Complex Aggregation Queries,network
+What are the top 3 previous versions of the version '7.1' in the schema?,Complex Aggregation Queries,network
+Which applications are dependent on the service named 'java'?,Complex Aggregation Queries,network
+What are the first 3 applications that depend on processes within zone 3?,Complex Aggregation Queries,network
+List the first 3 machines that run a service instance named 'java'.,Complex Aggregation Queries,network
+Which process listens on the highest port number in the schema?,Complex Aggregation Queries,network
+What is the total number of interfaces that expose port 80 in the schema?,Complex Aggregation Queries,network
+List the first 3 services that started after timestamp 1606165629748.,Complex Aggregation Queries,network
+What are the top 3 earliest starting processes in DataCenter 'DC1'?,Complex Aggregation Queries,network
+Which type of machine has the highest average CPU in the schema?,Complex Aggregation Queries,network
+List the first 3 machines in zone 4 that run an application named 'logstash'.,Complex Aggregation Queries,network
+What are the total dependencies of the application 'crm' including indirect dependencies?,Complex Aggregation Queries,network
+Which rack holds the most switches in DataCenter 'DC1'?,Complex Aggregation Queries,network
+What are the first 3 services that a machine named 'DC1-RCK-4-9-M-103' runs?,Complex Aggregation Queries,network
+Which ports are listened by all instances of the application 'webserver'?,Complex Aggregation Queries,network
+List the first 3 networks that route through interfaces in zone 2.,Complex Aggregation Queries,network
+What are the first 3 processes that depend on version '7.1' in DataCenter 'DC1'?,Complex Aggregation Queries,network
+Which racks in zone 1 contain more than one type of machine?,Complex Aggregation Queries,network
+List the top 5 switches by IP in zone 4.,Complex Aggregation Queries,network
+What is the name of the router that routes the most networks in DataCenter 'DC1'?,Complex Aggregation Queries,network
+Which services started the earliest in application 'webapp'?,Complex Aggregation Queries,network
+List the top 3 processes that listen on port 80.,Complex Aggregation Queries,network
+What are the total CPU resources allocated to machines in rack 'DC1-RCK-1-1'?,Complex Aggregation Queries,network
+Which interface connects the most networks in DataCenter 'DC1'?,Complex Aggregation Queries,network
+List the first 3 applications that depend on the service named 'logstash'.,Complex Aggregation Queries,network
+What are the direct and indirect dependencies of the process named '8966'?,Complex Aggregation Queries,network
+Which applications are running on machines that type 'l'?,Complex Aggregation Queries,network
+List the first 3 machines that run the latest version of the software 'RHEL'.,Complex Aggregation Queries,network
+What are the names of the first 3 routers located in zone 1 in the data center?,Verbose query,network
+List the top 5 IP addresses of interfaces connected to the router named 'DC1-R-1'.,Verbose query,network
+Which 3 networks are routed to the interface with the IP '10.0.0.254'?,Verbose query,network
+Name the first 3 applications running on the machine located in rack 'DC1-RCK-1-1'.,Verbose query,network
+What are the names of the first 3 racks contained within the data center 'DC1'?,Verbose query,network
+Identify the top 5 machines held in rack 'DC1-RCK-1-10' and their types.,Verbose query,network
+List the first 3 software versions used by the software named 'RHEL'.,Verbose query,network
+Which 3 ports are exposed by the interface with IP '10.1.1'?,Verbose query,network
+What are the names of the first 3 services running on the machine named 'DC1-RCK-1-1-M-1'?,Verbose query,network
+Name the top 5 processes running on the machine with the name 'DC1-RCK-1-1-M-1'.,Verbose query,network
+What are the names and IPs of the first 3 interfaces routed by the network with IP '10.2'?,Verbose query,network
+List the first 3 applications that depend on the service named 'java'.,Verbose query,network
+Identify the first 3 versions of the software running on the application 'webserver'.,Verbose query,network
+What are the top 5 types of machines in terms of RAM and CPU available in the data center?,Verbose query,network
+Which 3 zones have a size of 16 and are connected via interface IP '10.3.10.254'?,Verbose query,network
+Name the first 3 services that listen to port 80.,Verbose query,network
+Which 3 applications are instances of the software named 'RHEL' and their start times?,Verbose query,network
+What are the names of the first 3 processes that depend on the service named 'java'?,Verbose query,network
+List the first 3 previous versions of the version named '7.1'.,Verbose query,network
+Which 3 machines in rack 'DC1-RCK-1-10' run the OS named 'RHEL'?,Verbose query,network
+What are the first 3 products with a reorder level above 20?,Simple Retrieval Queries,northwind
+List the top 5 products that have been discontinued.,Simple Retrieval Queries,northwind
+Which 3 suppliers provide products in the 'Beverages' category?,Simple Retrieval Queries,northwind
+Find the top 5 customers based in Germany.,Simple Retrieval Queries,northwind
+Which 3 products have the highest units in stock?,Simple Retrieval Queries,northwind
+List the first 3 orders shipped to France.,Simple Retrieval Queries,northwind
+What are the top 5 most expensive products supplied by 'Exotic Liquids'?,Simple Retrieval Queries,northwind
+Which 3 products have been ordered the most times?,Simple Retrieval Queries,northwind
+List the first 5 categories that have products supplied by 'Exotic Liquids'.,Simple Retrieval Queries,northwind
+Which 3 customers have purchased the most orders?,Simple Retrieval Queries,northwind
+Find the top 5 suppliers with the most products in the 'Dairy Products' category.,Simple Retrieval Queries,northwind
+Which 3 products have the lowest units on order and are not discontinued?,Simple Retrieval Queries,northwind
+List the first 5 orders with the highest freight charges.,Simple Retrieval Queries,northwind
+Which 3 categories contain products with a unit price over $50?,Simple Retrieval Queries,northwind
+Find the top 5 products with the least quantity per unit in stock.,Simple Retrieval Queries,northwind
+Which 3 suppliers are located in the UK?,Simple Retrieval Queries,northwind
+List the first 5 customers who have ordered more than once.,Simple Retrieval Queries,northwind
+Which 3 orders had a required date in 1996?,Simple Retrieval Queries,northwind
+Find the top 5 products that are part of the 'Confections' category.,Simple Retrieval Queries,northwind
+Which 3 suppliers supply the most products with a unit price over $20?,Simple Retrieval Queries,northwind
+List the first 5 products with reorder levels set at 30.,Simple Retrieval Queries,northwind
+Which 3 customers have the most unique products ordered?,Simple Retrieval Queries,northwind
+Find the top 5 orders with the most units ordered.,Simple Retrieval Queries,northwind
+Which 3 products have the most quantity per unit?,Simple Retrieval Queries,northwind
+List the first 5 categories with products that have a reorder level below 10.,Simple Retrieval Queries,northwind
+Which 3 suppliers do not have a fax number?,Simple Retrieval Queries,northwind
+Find the top 5 customers who have ordered products where the discount was not applied.,Simple Retrieval Queries,northwind
+Which 3 products have the shortest lead time between order date and shipped date?,Simple Retrieval Queries,northwind
+List the first 5 orders shipped by 'shipVia' 1.,Simple Retrieval Queries,northwind
+Which 3 customers have a contact title of 'Sales Representative'?,Simple Retrieval Queries,northwind
+Find the top 5 products ordered during the month of July 1996.,Simple Retrieval Queries,northwind
+Which 3 categories have the least number of products supplied by 'Exotic Liquids'?,Simple Retrieval Queries,northwind
+List the first 5 suppliers based in 'London'.,Simple Retrieval Queries,northwind
+Which 3 products have the highest units on order?,Simple Retrieval Queries,northwind
+Find the top 5 customers who have ordered the product 'Chai'.,Simple Retrieval Queries,northwind
+Which 3 categories are most frequently associated with discontinued products?,Simple Retrieval Queries,northwind
+List the first 5 suppliers that have provided products to more than three different customers.,Simple Retrieval Queries,northwind
+Which 3 products have the most discounts applied in orders?,Simple Retrieval Queries,northwind
+Find the top 5 orders with the longest shipping time from order date to shipped date.,Simple Retrieval Queries,northwind
+Which 3 suppliers supply products with a unit price less than $10?,Simple Retrieval Queries,northwind
+List the first 5 products that have a unit price less than the average unit price of all products.,Simple Retrieval Queries,northwind
+Which 3 categories have the most products with units in stock over 50?,Simple Retrieval Queries,northwind
+Find the top 5 customers from the 'USA'.,Simple Retrieval Queries,northwind
+Which 3 orders include the most number of products?,Simple Retrieval Queries,northwind
+List the first 5 products that are part of the 'Meat/Poultry' category and have been discontinued.,Simple Retrieval Queries,northwind
+Which 3 customers have ordered products from the most categories?,Simple Retrieval Queries,northwind
+Find the top 5 orders that were required in the year 1997.,Simple Retrieval Queries,northwind
+Which 3 suppliers have the most products in the 'Grains/Cereals' category?,Simple Retrieval Queries,northwind
+List the first 5 products that have been ordered by customers in 'Berlin'.,Simple Retrieval Queries,northwind
+Which 3 products have the lowest reorder level?,Simple Retrieval Queries,northwind
+Find the top 5 customers who have ordered the product with the highest unit price.,Simple Retrieval Queries,northwind
+Which 3 orders have the highest number of units ordered per product?,Simple Retrieval Queries,northwind
+List the first 5 products that have been ordered in the year 1998.,Simple Retrieval Queries,northwind
+Which 3 suppliers have the least number of products listed?,Simple Retrieval Queries,northwind
+Find the top 5 categories with the most expensive products on average.,Simple Retrieval Queries,northwind
+Which 3 orders were shipped to the same city as the customer's address?,Simple Retrieval Queries,northwind
+List the first 5 products that have a 'unitPrice' between $10 and $20.,Simple Retrieval Queries,northwind
+Which 3 customers have their phone numbers starting with '030'?,Simple Retrieval Queries,northwind
+Find the top 5 orders that were shipped via 'shipVia' 2.,Simple Retrieval Queries,northwind
+Which 3 suppliers are located in 'NULL' region?,Simple Retrieval Queries,northwind
+List the first 5 products that have been ordered with a quantity greater than 50.,Simple Retrieval Queries,northwind
+Which 3 customers have ordered the least number of products?,Simple Retrieval Queries,northwind
+Find the top 5 orders with the lowest freight charges.,Simple Retrieval Queries,northwind
+Which 3 products have a 'quantityPerUnit' specification involving 'bags'?,Simple Retrieval Queries,northwind
+List the first 5 categories that do not have any discontinued products.,Simple Retrieval Queries,northwind
+Which 3 suppliers have the most diverse range of product categories?,Simple Retrieval Queries,northwind
+Find the top 5 orders placed by customers from the 'UK'.,Simple Retrieval Queries,northwind
+Which 3 products are most frequently reordered (reorder level at maximum)?,Simple Retrieval Queries,northwind
+List the first 5 suppliers whose products have never been out of stock.,Simple Retrieval Queries,northwind
+Which 3 customers have ordered products with the highest average unit price?,Simple Retrieval Queries,northwind
+Find the top 5 products with the most orders during the last quarter of 1997.,Simple Retrieval Queries,northwind
+Which 3 categories have the fewest products with units on order?,Simple Retrieval Queries,northwind
+List the first 5 products that have a 'unitsInStock' of exactly 50.,Simple Retrieval Queries,northwind
+Which 3 customers have a 'fax' number listed?,Simple Retrieval Queries,northwind
+Find the top 5 products that have been supplied by more than one supplier.,Simple Retrieval Queries,northwind
+Which 3 orders had the highest discount applied?,Simple Retrieval Queries,northwind
+List the first 5 categories where the average 'unitPrice' of products is above $30.,Simple Retrieval Queries,northwind
+Which 3 suppliers have the most products with a 'unitsOnOrder' above 10?,Simple Retrieval Queries,northwind
+Find the top 5 customers with the most orders for the 'Dairy Products' category.,Simple Retrieval Queries,northwind
+Which 3 products have the lowest 'unitPrice' in the 'Beverages' category?,Simple Retrieval Queries,northwind
+List the first 5 orders that included products from at least three different categories.,Simple Retrieval Queries,northwind
+Which 3 suppliers provide products to the most number of unique cities?,Simple Retrieval Queries,northwind
+Find the top 5 products with the longest names.,Simple Retrieval Queries,northwind
+Which 3 categories have the most suppliers?,Simple Retrieval Queries,northwind
+List the first 5 suppliers with a 'homePage' listed.,Simple Retrieval Queries,northwind
+Which 3 products have never been ordered?,Simple Retrieval Queries,northwind
+Find the top 5 customers who have ordered the same product multiple times.,Simple Retrieval Queries,northwind
+Which 3 categories have the shortest average shipping time for orders?,Simple Retrieval Queries,northwind
+List the first 5 orders that included a product from the 'Seafood' category.,Simple Retrieval Queries,northwind
+Which 3 suppliers have the most orders for their products?,Simple Retrieval Queries,northwind
+Find the top 5 orders with the most different products included.,Simple Retrieval Queries,northwind
+Which 3 suppliers have the largest coverage in terms of countries?,Simple Retrieval Queries,northwind
+List the first 5 products that were part of an order with a 'freight' cost over $250.,Simple Retrieval Queries,northwind
+Which 3 categories have the most products with a reorder level of 0?,Simple Retrieval Queries,northwind
+Which products are part of the 'Beverages' category?,Complex Retrieval Queries,northwind
+List the top 5 suppliers based in the UK.,Complex Retrieval Queries,northwind
+Which products have a reorder level greater than 20?,Complex Retrieval Queries,northwind
+Find the first 3 customers located in Berlin.,Complex Retrieval Queries,northwind
+What are the discontinued products?,Complex Retrieval Queries,northwind
+Identify products with units on order greater than 50.,Complex Retrieval Queries,northwind
+Who are the customers that purchased orders shipped to France?,Complex Retrieval Queries,northwind
+List all orders shipped via ship method '1'.,Complex Retrieval Queries,northwind
+Which products are supplied by 'Exotic Liquids'?,Complex Retrieval Queries,northwind
+What are the top 3 most expensive products in the 'Dairy Products' category?,Complex Retrieval Queries,northwind
+Which categories contain more than 5 products?,Complex Retrieval Queries,northwind
+List the products with a unit price greater than $50.,Complex Retrieval Queries,northwind
+Identify suppliers who do not have a home page listed.,Complex Retrieval Queries,northwind
+Find the first 3 orders that required shipping after '1997-01-01'.,Complex Retrieval Queries,northwind
+Who are the employees that processed orders for 'Rattlesnake Canyon Grocery'?,Complex Retrieval Queries,northwind
+What are the products in the order with ID '10248'?,Complex Retrieval Queries,northwind
+Which orders contain the product 'Chai'?,Complex Retrieval Queries,northwind
+Identify the products that have been ordered more than 100 times.,Complex Retrieval Queries,northwind
+Which suppliers supply products to more than one category?,Complex Retrieval Queries,northwind
+List orders that have a discount of 0.,Complex Retrieval Queries,northwind
+What are the names of the products that are out of stock?,Complex Retrieval Queries,northwind
+Identify the top 3 suppliers by number of products supplied.,Complex Retrieval Queries,northwind
+Which customers have a contact title of 'Sales Representative'?,Complex Retrieval Queries,northwind
+List the first 3 products with '0' units on order and a reorder level of 10.,Complex Retrieval Queries,northwind
+What are the product names and prices for products that have been discontinued but are still in stock?,Complex Retrieval Queries,northwind
+Which orders were shipped to the regions not specified (NULL region)?,Complex Retrieval Queries,northwind
+List the orders that were shipped by 'Vins et alcools Chevalier'.,Complex Retrieval Queries,northwind
+Identify products that are part of the 'Meat/Poultry' category and have more than 30 units in stock.,Complex Retrieval Queries,northwind
+Which suppliers are located in 'London'?,Complex Retrieval Queries,northwind
+List the products with quantities per unit described as 'boxes'.,Complex Retrieval Queries,northwind
+What are the category descriptions for categories supplying 'Spegesild'?,Complex Retrieval Queries,northwind
+Which customers ordered more than 10 different products?,Complex Retrieval Queries,northwind
+List the first 3 customers from 'Germany' who ordered 'Beverages'.,Complex Retrieval Queries,northwind
+What are the details of orders that have a freight cost more than $50?,Complex Retrieval Queries,northwind
+Identify the top 5 most frequently ordered products.,Complex Retrieval Queries,northwind
+Which suppliers have supplied products that are currently discontinued?,Complex Retrieval Queries,northwind
+List the categories of products that have never been reordered (reorder level is 0).,Complex Retrieval Queries,northwind
+Which orders were placed by customers in the 'NULL' region?,Complex Retrieval Queries,northwind
+Identify the products supplied by suppliers with no listed phone number.,Complex Retrieval Queries,northwind
+Find the first 5 orders made in 1996.,Complex Retrieval Queries,northwind
+Which products have a unitsInStock value between 50 and 100?,Complex Retrieval Queries,northwind
+List all the products ordered in the 'Confections' category.,Complex Retrieval Queries,northwind
+Which suppliers provide products to both 'Beverages' and 'Seafood' categories?,Complex Retrieval Queries,northwind
+Find the top 3 most ordered products in terms of quantity from orders.,Complex Retrieval Queries,northwind
+Who are the suppliers for the product with ID '3'?,Complex Retrieval Queries,northwind
+What are the ship countries for orders containing the product 'Aniseed Syrup'?,Complex Retrieval Queries,northwind
+Identify the products that have a reorder level of 25 and are not discontinued.,Complex Retrieval Queries,northwind
+List the first 5 customers who have placed orders with a total quantity greater than 200.,Complex Retrieval Queries,northwind
+Which categories have products with a unit price less than $10?,Complex Retrieval Queries,northwind
+Identify suppliers that have a contact title of 'Purchasing Manager'.,Complex Retrieval Queries,northwind
+Find the first 3 orders that were shipped within Germany.,Complex Retrieval Queries,northwind
+Which products are associated with categories that have a description including 'sauces'?,Complex Retrieval Queries,northwind
+List all orders with a shipVia of '2' and shipped to the 'USA'.,Complex Retrieval Queries,northwind
+Which products have both more than 70 units on order and a reorder level above 15?,Complex Retrieval Queries,northwind
+Who are the suppliers for the 'Grains/Cereals' category?,Complex Retrieval Queries,northwind
+List the first 3 products that are part of the 'Dairy Products' category and have more than 20 units on order.,Complex Retrieval Queries,northwind
+Identify the categories associated with products supplied by 'Mayumi's'.,Complex Retrieval Queries,northwind
+What are the order IDs for orders containing products from more than three different categories?,Complex Retrieval Queries,northwind
+List the top 5 discontinued products with the highest unit prices.,Complex Retrieval Queries,northwind
+Which customers have ordered the product 'Spegesild'?,Complex Retrieval Queries,northwind
+Find the first 3 products with a quantity per unit specification involving 'bottles'.,Complex Retrieval Queries,northwind
+Identify the products that are part of orders that were required to be shipped before '1997-01-01'.,Complex Retrieval Queries,northwind
+List the suppliers who are based in non-UK European countries.,Complex Retrieval Queries,northwind
+Which suppliers have products with a minimum unitsInStock of 50?,Complex Retrieval Queries,northwind
+Find the first 5 products from the 'Condiments' category that have been ordered in 1998.,Complex Retrieval Queries,northwind
+Who are the customers with orders that have a shipVia of '3'?,Complex Retrieval Queries,northwind
+List the first 3 orders that were placed in 1997 and required a freight charge over $25.,Complex Retrieval Queries,northwind
+Identify the orders that include products from the 'Seafood' category and were shipped to France.,Complex Retrieval Queries,northwind
+Which products have been ordered with a quantity of 100 or more in a single order?,Complex Retrieval Queries,northwind
+List the products that are in the 'Produce' category and have a discontinued status.,Complex Retrieval Queries,northwind
+Identify the suppliers whose products are all in the 'Beverages' category.,Complex Retrieval Queries,northwind
+What are the product IDs of products that have been marked as discontinued but have a reorder level of 10?,Complex Retrieval Queries,northwind
+Find the first 3 orders that were shipped to 'Portland'.,Complex Retrieval Queries,northwind
+Which categories have at least one product with a unit price over $100?,Complex Retrieval Queries,northwind
+List the orders placed by customers in 'Berlin' that have a shipped date in 1997.,Complex Retrieval Queries,northwind
+Identify the products with a reorder level less than 5 and a unit price less than $15.,Complex Retrieval Queries,northwind
+What are the ship cities for orders that included the product 'Chai'?,Complex Retrieval Queries,northwind
+List the suppliers that have a fax number listed.,Complex Retrieval Queries,northwind
+Which orders have a required date in 1998 and a freight cost less than $5?,Complex Retrieval Queries,northwind
+Identify the products supplied by suppliers with a phone number starting with '(171)'.,Complex Retrieval Queries,northwind
+List the first 3 categories that have products with unitsOnOrder above 30.,Complex Retrieval Queries,northwind
+What are the details of products that are part of the 'Grains/Cereals' category and have been ordered more than 50 times?,Complex Retrieval Queries,northwind
+Identify the customers who have ordered products with a total discount of 0.,Complex Retrieval Queries,northwind
+List the top 5 orders in terms of quantity for the 'Dairy Products' category.,Complex Retrieval Queries,northwind
+Which products have been reordered (reorder level not 0) and are supplied by suppliers in 'Germany'?,Complex Retrieval Queries,northwind
+Find the first 3 orders with a shipVia of '1' and a ship country of 'USA'.,Complex Retrieval Queries,northwind
+Who are the suppliers for products in the 'Confections' category?,Complex Retrieval Queries,northwind
+List the products that have a unitsInStock of zero and are not discontinued.,Complex Retrieval Queries,northwind
+Identify the orders placed for products from the 'Meat/Poultry' category with a shipVia of '2'.,Complex Retrieval Queries,northwind
+What are the supplierIDs for suppliers who have provided products to more than three different cities?,Complex Retrieval Queries,northwind
+List the first 3 products that have been supplied by 'Plutzer'.,Complex Retrieval Queries,northwind
+Which products have a unitsInStock value between 10 and 20?,Simple Aggregation Queries,northwind
+List the top 5 most expensive products based on unitPrice.,Simple Aggregation Queries,northwind
+What are the names of the products supplied by 'Exotic Liquids'?,Simple Aggregation Queries,northwind
+How many products are there in each category?,Simple Aggregation Queries,northwind
+Which suppliers provide products that are not discontinued?,Simple Aggregation Queries,northwind
+Name three customers from Berlin.,Simple Aggregation Queries,northwind
+"What are the three most recent orders, based on orderDate?",Simple Aggregation Queries,northwind
+Which products have a reorderLevel of 25 or higher?,Simple Aggregation Queries,northwind
+List the products with unitsOnOrder greater than 30.,Simple Aggregation Queries,northwind
+What is the average unitPrice of products in the 'Beverages' category?,Simple Aggregation Queries,northwind
+Which categories include products that have been discontinued?,Simple Aggregation Queries,northwind
+What are the three most common product categories based on the number of products?,Simple Aggregation Queries,northwind
+Which suppliers have a contactTitle of 'Purchasing Manager'?,Simple Aggregation Queries,northwind
+List three customers who have purchased orders shipped to France.,Simple Aggregation Queries,northwind
+What are the top 5 products by quantity ordered in the most recent orders?,Simple Aggregation Queries,northwind
+Which category has the least number of products on order?,Simple Aggregation Queries,northwind
+What are the names of suppliers based in the UK?,Simple Aggregation Queries,northwind
+Which products have a discount of 0 in their orders?,Simple Aggregation Queries,northwind
+How many products are supplied by each supplier?,Simple Aggregation Queries,northwind
+Which customers have a contactTitle of 'Sales Representative'?,Simple Aggregation Queries,northwind
+What are the three highest freight values in orders?,Simple Aggregation Queries,northwind
+List the products that are part of the 'Dairy Products' category.,Simple Aggregation Queries,northwind
+Which orders were required by '1998-06-02'?,Simple Aggregation Queries,northwind
+What is the average discount given across all orders?,Simple Aggregation Queries,northwind
+Which products have been ordered more than 100 times?,Simple Aggregation Queries,northwind
+What are the names of the products that have a quantityPerUnit of '10 boxes x 20 bags'?,Simple Aggregation Queries,northwind
+Name the top three most frequently ordered products.,Simple Aggregation Queries,northwind
+Which suppliers do not have a homePage listed?,Simple Aggregation Queries,northwind
+What is the maximum unitsOnOrder for products within the 'Confections' category?,Simple Aggregation Queries,northwind
+Which suppliers supply more than five different products?,Simple Aggregation Queries,northwind
+List the names of three customers who ordered products shipped via '3'.,Simple Aggregation Queries,northwind
+What are the names of suppliers who supply products to orders with a shipCountry of 'Denmark'?,Simple Aggregation Queries,northwind
+Which products have the lowest unitsInStock in the 'Grains/Cereals' category?,Simple Aggregation Queries,northwind
+How many different categories of products do we have?,Simple Aggregation Queries,northwind
+What is the minimum reorder level for products in the 'Seafood' category?,Simple Aggregation Queries,northwind
+List the products with a unitsInStock less than 15.,Simple Aggregation Queries,northwind
+Which orders have a shipVia of '1' and were shipped to 'France'?,Simple Aggregation Queries,northwind
+What are the names of products that have been ordered with a quantity greater than 50?,Simple Aggregation Queries,northwind
+What is the total number of units ordered for products by 'Vins et alcools Chevalier'?,Simple Aggregation Queries,northwind
+Which categories have products with a unitPrice greater than 50?,Simple Aggregation Queries,northwind
+Which suppliers are located in cities starting with 'L'?,Simple Aggregation Queries,northwind
+List the top three categories by average unitPrice of products.,Simple Aggregation Queries,northwind
+Which products have been reordered (unitsOnOrder greater than 0) but not discontinued?,Simple Aggregation Queries,northwind
+What are the names of customers who have ordered products in the 'Beverages' category?,Simple Aggregation Queries,northwind
+What are the three least expensive products in terms of unitPrice?,Simple Aggregation Queries,northwind
+Which products have a unitsOnOrder of zero and are discontinued?,Simple Aggregation Queries,northwind
+Name three suppliers from Germany.,Simple Aggregation Queries,northwind
+List the products supplied by suppliers with a phone number starting with '(171)'.,Simple Aggregation Queries,northwind
+What are the top 5 categories by total unitsInStock?,Simple Aggregation Queries,northwind
+Which orders were placed before '1997-01-01' and have a freight greater than 100?,Simple Aggregation Queries,northwind
+What are the top 5 products with the highest units on order?,Pathfinding Queries,northwind
+Which 3 suppliers supply products with more than 50 units in stock?,Pathfinding Queries,northwind
+List the top 5 most expensive products that are not discontinued.,Pathfinding Queries,northwind
+Which 3 categories have the most products with a reorder level above 15?,Pathfinding Queries,northwind
+List the first 3 orders with a freight cost greater than $100.,Pathfinding Queries,northwind
+What are the top 5 products ordered by customers from Germany?,Pathfinding Queries,northwind
+Which 3 customers have purchased the most products by quantity?,Pathfinding Queries,northwind
+List the top 5 suppliers located in the UK.,Pathfinding Queries,northwind
+Which 3 products have the lowest unit price in the category 'Beverages'?,Pathfinding Queries,northwind
+List the first 3 customers who have purchased 'Chef Anton's Cajun Seasoning'.,Pathfinding Queries,northwind
+Which 3 products are supplied by 'Exotic Liquids'?,Pathfinding Queries,northwind
+List the first 3 orders shipped to 'France' with a ship via code '1'.,Pathfinding Queries,northwind
+What are the top 5 products with the most units in stock in the category 'Dairy Products'?,Pathfinding Queries,northwind
+Which 3 suppliers have the most products with a reorder level of 0?,Pathfinding Queries,northwind
+List the top 5 customers based in London.,Pathfinding Queries,northwind
+Which 3 categories contain products with no units on order?,Pathfinding Queries,northwind
+List the first 3 orders that were required after '1997-01-01'.,Pathfinding Queries,northwind
+What are the top 5 products with a reorder level above 20?,Pathfinding Queries,northwind
+Which 3 customers ordered products on '1996-07-04'?,Pathfinding Queries,northwind
+List the top 5 orders with the highest freight costs.,Pathfinding Queries,northwind
+Which 3 products have been reordered the most times?,Pathfinding Queries,northwind
+List the first 3 suppliers of products in the 'Confections' category.,Pathfinding Queries,northwind
+What are the top 5 products with the shortest names?,Pathfinding Queries,northwind
+Which 3 suppliers supply products to more than one category?,Pathfinding Queries,northwind
+List the top 5 most frequently ordered products.,Pathfinding Queries,northwind
+Which 3 products have the most discounts applied in orders?,Pathfinding Queries,northwind
+List the first 3 customers who have never ordered a discontinued product.,Pathfinding Queries,northwind
+What are the top 5 suppliers with the most products listed?,Pathfinding Queries,northwind
+Which 3 orders have the largest quantity of a single product ordered?,Pathfinding Queries,northwind
+List the first 3 products that are supplied exclusively by 'Mayumi's'.,Pathfinding Queries,northwind
+Which 3 categories have products that are all discontinued?,Pathfinding Queries,northwind
+List the top 5 products from 'Exotic Liquids' by units in stock.,Pathfinding Queries,northwind
+What are the top 5 most frequently purchased categories by customers in the USA?,Pathfinding Queries,northwind
+Which 3 products have the highest units on order in the 'Meat/Poultry' category?,Pathfinding Queries,northwind
+List the top 5 customers who have ordered the most units of a single product.,Pathfinding Queries,northwind
+Which 3 products have the most variations in unit price among orders?,Pathfinding Queries,northwind
+List the top 5 orders placed by customers in 'Berlin'.,Pathfinding Queries,northwind
+Which 3 categories have the highest average unit price per product?,Pathfinding Queries,northwind
+List the first 3 products that have never been reordered (reorder level = 0).,Pathfinding Queries,northwind
+What are the top 5 most frequently shipped products to 'France'?,Pathfinding Queries,northwind
+Which 3 customers have ordered the most diverse range of product categories?,Pathfinding Queries,northwind
+List the top 5 products with the lowest units in stock.,Pathfinding Queries,northwind
+Which 3 suppliers have products listed in both 'Beverages' and 'Condiments' categories?,Pathfinding Queries,northwind
+List the top 5 products with discontinued status and a reorder level above 5.,Pathfinding Queries,northwind
+What are the top 5 categories based on the average reorder level of their products?,Pathfinding Queries,northwind
+Which 3 customers have the longest company names?,Pathfinding Queries,northwind
+List the first 3 orders where the shipped date is before the required date.,Pathfinding Queries,northwind
+What are the top 5 products with the lowest unit price in the 'Seafood' category?,Pathfinding Queries,northwind
+Which 3 suppliers have the most products with zero units on order?,Pathfinding Queries,northwind
+List the top 5 products by quantity per unit ordered in '1996'.,Pathfinding Queries,northwind
+Which 3 products have been purchased the most times in the 'Dairy Products' category?,Pathfinding Queries,northwind
+List the first 3 products from suppliers in 'Germany'.,Pathfinding Queries,northwind
+What are the top 5 customers based on the total freight cost of their orders?,Pathfinding Queries,northwind
+Which 3 categories contain the most products with a unit price over $50?,Pathfinding Queries,northwind
+List the top 5 suppliers with products in more than three categories.,Pathfinding Queries,northwind
+Which 3 products have been ordered in the highest quantities?,Pathfinding Queries,northwind
+List the first 3 suppliers who have supplied products with a unit price over $100.,Pathfinding Queries,northwind
+What are the top 5 discontinued products by units in stock?,Pathfinding Queries,northwind
+Which 3 orders have the highest number of distinct products ordered?,Pathfinding Queries,northwind
+List the top 5 products with a unit price between $10 and $50.,Pathfinding Queries,northwind
+What are the top 5 most frequently ordered products to 'Berlin'?,Pathfinding Queries,northwind
+Which 3 suppliers have the highest average unit price across their products?,Pathfinding Queries,northwind
+List the first 3 products that have been ordered with a discount of more than 5%.,Pathfinding Queries,northwind
+Which 3 categories have the least discontinued products?,Pathfinding Queries,northwind
+List the top 5 most frequently ordered products by customers in 'London'.,Pathfinding Queries,northwind
+What are the top 5 products in the 'Grains/Cereals' category by units in stock?,Pathfinding Queries,northwind
+Which 3 customers have the most orders with a ship via code '3'?,Pathfinding Queries,northwind
+List the top 5 products that have the highest reorder levels.,Pathfinding Queries,northwind
+Which 3 suppliers have the most products discontinued?,Pathfinding Queries,northwind
+List the top 5 products that have been ordered more than 50 times.,Pathfinding Queries,northwind
+Which 3 products have the highest average discount in orders?,Pathfinding Queries,northwind
+List the top 5 customers who have ordered the most expensive products (by unit price).,Pathfinding Queries,northwind
+What are the top 5 products with the most units on order in the 'Condiments' category?,Pathfinding Queries,northwind
+Which 3 customers have ordered the most products in the 'Seafood' category?,Pathfinding Queries,northwind
+List the first 3 orders where the freight cost was less than $15.,Pathfinding Queries,northwind
+What are the top 5 most frequently ordered products in the 'Beverages' category?,Pathfinding Queries,northwind
+Which 3 suppliers have the most orders for their products?,Pathfinding Queries,northwind
+List the top 5 orders with the latest required dates.,Pathfinding Queries,northwind
+Which 3 products have the lowest reorder levels but are not discontinued?,Pathfinding Queries,northwind
+List the top 5 categories with the most products on order.,Pathfinding Queries,northwind
+What are the top 5 most frequently ordered products by customers from 'USA'?,Pathfinding Queries,northwind
+Which 3 suppliers have provided products to the most distinct categories?,Pathfinding Queries,northwind
+List the first 3 orders that included both 'Beverages' and 'Condiments' products.,Pathfinding Queries,northwind
+What are the top 5 most frequently ordered products in the 'Dairy Products' category?,Pathfinding Queries,northwind
+Which 3 customers have ordered the most distinct products?,Pathfinding Queries,northwind
+List the top 5 products with the highest units on order in the 'Produce' category.,Pathfinding Queries,northwind
+What are the top 5 products that have been reordered the least times?,Pathfinding Queries,northwind
+Which 3 suppliers have the highest average units in stock per product?,Pathfinding Queries,northwind
+List the first 3 products with a unit price less than $5.,Pathfinding Queries,northwind
+What are the top 5 most frequently ordered products in the 'Grains/Cereals' category?,Pathfinding Queries,northwind
+Which 3 categories have the most products with a unit price over $100?,Pathfinding Queries,northwind
+List the top 5 orders with the most products ordered in a single order.,Pathfinding Queries,northwind
+Which 3 products are most frequently ordered in the 'Confections' category?,Pathfinding Queries,northwind
+List the top 5 suppliers based on the average freight cost of orders for their products.,Pathfinding Queries,northwind
+What are the top 5 products with the highest reorder levels in the 'Meat/Poultry' category?,Pathfinding Queries,northwind
+Which 3 suppliers have the least discontinued products?,Pathfinding Queries,northwind
+List the first 3 products from suppliers in 'UK'.,Pathfinding Queries,northwind
+What are the top 5 most frequently ordered products in the 'Produce' category?,Pathfinding Queries,northwind
+Which 3 customers have the shortest company names?,Pathfinding Queries,northwind
+List the top 5 products by units on order in the 'Seafood' category.,Pathfinding Queries,northwind
+Which 3 products have been ordered by the most distinct customers?,Pathfinding Queries,northwind
+Which products are supplied by 'Exotic Liquids'?,Complex Aggregation Queries,northwind
+List all products that are part of the 'Beverages' category.,Complex Aggregation Queries,northwind
+What are the top 5 most expensive products supplied by 'Exotic Liquids'?,Complex Aggregation Queries,northwind
+Show the first 3 products that have been discontinued.,Complex Aggregation Queries,northwind
+Which suppliers provide products with a reorder level above 25?,Complex Aggregation Queries,northwind
+List all products that have more than 50 units on order.,Complex Aggregation Queries,northwind
+What are the top 5 most stocked products in the 'Dairy Products' category?,Complex Aggregation Queries,northwind
+Which products have been ordered by 'Alfreds Futterkiste'?,Complex Aggregation Queries,northwind
+List all customers who have purchased products with a unit price greater than 50.,Complex Aggregation Queries,northwind
+What are the first 3 most frequently ordered products?,Complex Aggregation Queries,northwind
+Which supplier supplies the most products to 'Alfreds Futterkiste'?,Complex Aggregation Queries,northwind
+List the first 3 products with the highest discount in orders.,Complex Aggregation Queries,northwind
+Which categories contain products that have never been reordered (reorder level is 0)?,Complex Aggregation Queries,northwind
+List the top 5 suppliers based on the number of products they supply.,Complex Aggregation Queries,northwind
+Which products are supplied by suppliers from the UK?,Complex Aggregation Queries,northwind
+Show all products that are in stock but have a reorder level above 20.,Complex Aggregation Queries,northwind
+Which customers have ordered 'Chai'?,Complex Aggregation Queries,northwind
+List the first 3 orders made by 'Alfreds Futterkiste' with a freight cost greater than 10.,Complex Aggregation Queries,northwind
+What are the top 5 most ordered products in terms of quantity?,Complex Aggregation Queries,northwind
+List all categories that have products with units in stock less than 10.,Complex Aggregation Queries,northwind
+Which suppliers have all their products with a unit price above 20?,Complex Aggregation Queries,northwind
+Show the first 3 products with the lowest units in stock in the 'Confections' category.,Complex Aggregation Queries,northwind
+Which products have been ordered more than 100 times?,Complex Aggregation Queries,northwind
+List all products that have been ordered in the month of July 1996.,Complex Aggregation Queries,northwind
+Which suppliers supply to more than one category?,Complex Aggregation Queries,northwind
+List the first 3 products that have been ordered by customers from France.,Complex Aggregation Queries,northwind
+Which categories have products with a unit price greater than 100?,Complex Aggregation Queries,northwind
+Show all products that are both in the 'Seafood' category and have been discontinued.,Complex Aggregation Queries,northwind
+List the top 5 customers based on the number of orders placed.,Complex Aggregation Queries,northwind
+Which suppliers provide products to the 'Meat/Poultry' category with a unit price less than 20?,Complex Aggregation Queries,northwind
+What are the first 3 products with the highest units on order in the 'Beverages' category?,Complex Aggregation Queries,northwind
+List all products supplied by 'Exotic Liquids' that have a unit price above 10.,Complex Aggregation Queries,northwind
+Which customers have ordered the product with productID '1'?,Complex Aggregation Queries,northwind
+Show the first 3 orders from 'Lonesome Pine Restaurant' with a freight cost less than 1.,Complex Aggregation Queries,northwind
+What are the top 5 products by quantity ordered in the 'Condiments' category?,Complex Aggregation Queries,northwind
+List all suppliers that provide products to the 'Dairy Products' category.,Complex Aggregation Queries,northwind
+Which products have been ordered by customers from Berlin?,Complex Aggregation Queries,northwind
+Show the first 3 products with the highest units on order.,Complex Aggregation Queries,northwind
+Which products have a discount greater than 0 in their orders?,Complex Aggregation Queries,northwind
+List the first 3 products from the 'Grains/Cereals' category that have been reordered (reorder level > 0).,Complex Aggregation Queries,northwind
+Which suppliers have products listed in more than three categories?,Complex Aggregation Queries,northwind
+Show all customers who have ordered the 'Aniseed Syrup' product.,Complex Aggregation Queries,northwind
+List the top 5 orders with the highest freight cost.,Complex Aggregation Queries,northwind
+Which products from 'Exotic Liquids' are part of the 'Beverages' category and have a unit price less than 20?,Complex Aggregation Queries,northwind
+List all products that have been ordered by customers from the USA.,Complex Aggregation Queries,northwind
+Which categories have products supplied by more than three different suppliers?,Complex Aggregation Queries,northwind
+Show the first 3 discontinued products from the 'Confections' category.,Complex Aggregation Queries,northwind
+What are the top 5 products by quantity per unit in the 'Produce' category?,Complex Aggregation Queries,northwind
+List all customers who have placed orders with a required date in 1998.,Complex Aggregation Queries,northwind
+Which suppliers supply products with a unitsInStock value above 80?,Complex Aggregation Queries,northwind
+List the first 3 products from the 'Seafood' category with a unitsOnOrder value above 20.,Complex Aggregation Queries,northwind
+Which products are supplied by suppliers from Germany?,Complex Aggregation Queries,northwind
+Show the first 3 orders for the product 'Chai'.,Complex Aggregation Queries,northwind
+What are the top 5 categories by number of products supplied?,Complex Aggregation Queries,northwind
+List all products that have been ordered by 'Vins et alcools Chevalier'.,Complex Aggregation Queries,northwind
+Which suppliers provide products to more than one region?,Complex Aggregation Queries,northwind
+Show the first 3 products from the 'Dairy Products' category that have been discontinued.,Complex Aggregation Queries,northwind
+What are the top 5 suppliers by number of different cities they supply to?,Complex Aggregation Queries,northwind
+"List all products that belong to the 'Desserts, candies, and sweet breads' category and have a reorder level above 15.",Complex Aggregation Queries,northwind
+Which suppliers have a contact title of 'Purchasing Manager' and supply products with a unit price above 50?,Complex Aggregation Queries,northwind
+List the top 5 products that have been discontinued.,Verbose query,northwind
+What are the top 3 most expensive products supplied by 'Exotic Liquids'?,Verbose query,northwind
+Identify 5 products that are part of the 'Beverages' category.,Verbose query,northwind
+Which 3 suppliers provide products in the 'Dairy Products' category?,Verbose query,northwind
+Find the top 5 orders with the highest freight charges.,Verbose query,northwind
+What are the first 3 customers who have purchased orders shipped to France?,Verbose query,northwind
+List the top 3 products with the highest units in stock in the 'Confections' category.,Verbose query,northwind
+Which 3 customers have ordered the most units of any product?,Verbose query,northwind
+Find the 5 most recent orders by ship date.,Verbose query,northwind
+What are the top 5 products that have a reorder level above 20?,Verbose query,northwind
+Identify the 3 customers with the most orders placed.,Verbose query,northwind
+List the 3 suppliers who supply the most products that have been discontinued.,Verbose query,northwind
+Which 5 products have the highest units on order and are still active (not discontinued)?,Verbose query,northwind
+Name the top 3 products with the lowest unit price in the 'Grains/Cereals' category.,Verbose query,northwind
+Find the 5 suppliers whose products have never been out of stock.,Verbose query,northwind
+What are the first 3 orders shipped via method '2' and have a discount?,Verbose query,northwind
+List the top 5 categories with the most products.,Verbose query,northwind
+Identify the 3 suppliers with the highest number of products supplied to the 'Meat/Poultry' category.,Verbose query,northwind
+Which 3 customers have purchased the most products from the 'Seafood' category?,Verbose query,northwind
+List the top 5 products ordered by 'Alfreds Futterkiste'.,Verbose query,northwind
+What are the first 3 orders that included more than 100 units of any product?,Verbose query,northwind
+Identify the 5 most common ship cities for orders.,Verbose query,northwind
+Which 3 products have been ordered the most frequently?,Verbose query,northwind
+List the top 5 customers based on the total freight charges of their orders.,Verbose query,northwind
+What are the 3 most frequently supplied products by 'Exotic Liquids'?,Verbose query,northwind
+Identify the top 5 products with the lowest reorder level.,Verbose query,northwind
+Which 5 categories contain products that are all actively being supplied (none discontinued)?,Verbose query,northwind
+List the 3 customers who have ordered products with the highest average unit price.,Verbose query,northwind
+What are the top 5 most common contact titles among suppliers?,Verbose query,northwind
+Identify the 3 suppliers from the city 'London' who supply the most products.,Verbose query,northwind
+Which 5 products have the most suppliers?,Verbose query,northwind
+List the top 3 products with the highest quantity per unit in the 'Dairy Products' category.,Verbose query,northwind
+What are the first 5 orders placed in the year 1996?,Verbose query,northwind
+Identify the 3 most common product names supplied by 'Exotic Liquids'.,Verbose query,northwind
+Which 5 customers have orders with the required date in the year 1997?,Verbose query,northwind
+List the 3 products with the highest units in stock supplied by 'Exotic Liquids'.,Verbose query,northwind
+What are the top 5 products with the lowest units on order and not discontinued?,Verbose query,northwind
+Identify the 3 categories with the least number of products.,Verbose query,northwind
+Which 5 orders have the most distinct products included?,Verbose query,northwind
+List the top 3 customers based on the number of orders placed.,Verbose query,northwind
+What are the first 5 products with a unit price greater than 50 supplied by 'Exotic Liquids'?,Verbose query,northwind
+Identify the 3 most frequent ship countries for orders from 'Alfreds Futterkiste'.,Verbose query,northwind
+Which 5 customers have the most discontinued products ordered?,Verbose query,northwind
+List the top 3 products with the highest discount given in any order.,Verbose query,northwind
+What are the first 5 products from the 'Condiments' category with the most units in stock?,Verbose query,northwind
+Identify the 3 most common ship addresses for orders.,Verbose query,northwind
+Which 5 products have been reordered the most times?,Verbose query,northwind
+List the top 3 suppliers with the most products in the 'Beverages' category.,Verbose query,northwind
+What are the first 3 customers who have ordered the product with productID '1'?,Verbose query,northwind
+Identify the 5 most recently shipped orders.,Verbose query,northwind
+Which 3 suppliers have the most diverse range of product categories supplied?,Verbose query,northwind
+List the top 5 orders with the highest quantity of a single product.,Verbose query,northwind
+What are the first 3 products in the 'Produce' category with the lowest unit price?,Verbose query,northwind
+Identify the 5 customers who have ordered the most distinct categories of products.,Verbose query,northwind
+Which 3 products from 'Exotic Liquids' have been ordered the most in terms of quantity?,Verbose query,northwind
+List the top 5 most recently added products to the database.,Verbose query,northwind
+What are the first 3 orders that were shipped to 'Reims'?,Verbose query,northwind
+Identify the 5 suppliers with the highest average unit price of products supplied.,Verbose query,northwind
+Which 3 categories have the most products with a reorder level above 15?,Verbose query,northwind
+List the top 5 products with the highest total sales quantity.,Verbose query,northwind
+What are the first 3 categories in which 'Exotic Liquids' supplies products?,Verbose query,northwind
+Identify the 5 customers with the longest shipping durations for their orders.,Verbose query,northwind
+Which 3 products have the largest quantity per unit in the 'Condiments' category?,Verbose query,northwind
+List the top 5 suppliers based on the number of cities they supply to.,Verbose query,northwind
+What are the top 3 most frequently reordered products?,Verbose query,northwind
+Identify the 5 most common employee IDs associated with orders.,Verbose query,northwind
+Which 3 products have the highest average discount applied in their orders?,Verbose query,northwind
+List the top 3 customers who have ordered the product 'Chai' the most times.,Verbose query,northwind
+What are the top 3 entities by incorporation date?,Simple Retrieval Queries,offshoreleaks
+Which entities have a status of 'Defaulted'?,Simple Retrieval Queries,offshoreleaks
+List the names of the top 5 officers from South Korea.,Simple Retrieval Queries,offshoreleaks
+Which intermediaries are connected to entities?,Simple Retrieval Queries,offshoreleaks
+Find entities that have a 'registered address' in Samoa.,Simple Retrieval Queries,offshoreleaks
+What are the names of entities struck off in February 2013?,Simple Retrieval Queries,offshoreleaks
+List the top 5 entities with the service provider 'Mossack Fonseca'.,Simple Retrieval Queries,offshoreleaks
+Who are the officers serving as intermediaries for more than one entity?,Simple Retrieval Queries,offshoreleaks
+Find all entities that share the same address as other entities.,Simple Retrieval Queries,offshoreleaks
+What are the top 3 entities by last edit timestamp?,Simple Retrieval Queries,offshoreleaks
+Which officers have a valid until date through 2015?,Simple Retrieval Queries,offshoreleaks
+Identify entities with a jurisdiction description of 'Samoa'.,Simple Retrieval Queries,offshoreleaks
+What addresses are registered to entities in Hong Kong?,Simple Retrieval Queries,offshoreleaks
+Find intermediaries that are similar to officers.,Simple Retrieval Queries,offshoreleaks
+"Which entities have the same name as 'TIANSHENG INDUSTRY AND TRADING CO., LTD.'?",Simple Retrieval Queries,offshoreleaks
+List the entities that have been inactivated on '18-FEB-2013'.,Simple Retrieval Queries,offshoreleaks
+What are the top 5 most recent addresses added to the database?,Simple Retrieval Queries,offshoreleaks
+Which officers are probably the same as other officers?,Simple Retrieval Queries,offshoreleaks
+Identify entities that have been closed and provide their closed date.,Simple Retrieval Queries,offshoreleaks
+Who are the top 3 officers with the most connections to entities?,Simple Retrieval Queries,offshoreleaks
+List the entities that have a company type of 'LIMITED LIABILITY COMPANY'.,Simple Retrieval Queries,offshoreleaks
+Which addresses are linked to more than one entity as their registered address?,Simple Retrieval Queries,offshoreleaks
+Identify the intermediaries with a status of 'ACTIVE'.,Simple Retrieval Queries,offshoreleaks
+List the entities that are connected to the 'Paradise Papers - Aruba corporate registry'.,Simple Retrieval Queries,offshoreleaks
+What are the most common country codes associated with the entities?,Simple Retrieval Queries,offshoreleaks
+Find the top 5 entities ordered by their internal ID.,Simple Retrieval Queries,offshoreleaks
+Which officers have been officers of entities for the longest period?,Simple Retrieval Queries,offshoreleaks
+Identify entities with the same ID as other entities.,Simple Retrieval Queries,offshoreleaks
+List the entities that have been struck off on '15-FEB-2013'.,Simple Retrieval Queries,offshoreleaks
+Which intermediaries have the same name as entities?,Simple Retrieval Queries,offshoreleaks
+Find officers who have the same name as other officers.,Simple Retrieval Queries,offshoreleaks
+What are the registered offices for the top 5 intermediaries?,Simple Retrieval Queries,offshoreleaks
+List the top 5 entities with the most recent inactivation dates.,Simple Retrieval Queries,offshoreleaks
+Which entities were incorporated in March 2006?,Simple Retrieval Queries,offshoreleaks
+Identify officers linked to entities with a 'shareholder of' relationship.,Simple Retrieval Queries,offshoreleaks
+What are the addresses of entities with a status of 'Defaulted'?,Simple Retrieval Queries,offshoreleaks
+List the entities with a note mentioning 'Closed date stands for Liquidation date.',Simple Retrieval Queries,offshoreleaks
+Which officers have a valid until date that matches 'The Panama Papers data is current through 2015'?,Simple Retrieval Queries,offshoreleaks
+Identify the entities with a former name and list them.,Simple Retrieval Queries,offshoreleaks
+List the top 5 officers by their last edit timestamp.,Simple Retrieval Queries,offshoreleaks
+Which entities have a company number and what are those numbers?,Simple Retrieval Queries,offshoreleaks
+Find entities that are of the type 'FOREIGN FORMED CORPORATION'.,Simple Retrieval Queries,offshoreleaks
+What are the jurisdictions of the top 5 entities?,Simple Retrieval Queries,offshoreleaks
+List the entities that have a tax description available.,Simple Retrieval Queries,offshoreleaks
+Identify officers that are connected to entities through the 'connected to' relationship.,Simple Retrieval Queries,offshoreleaks
+Which intermediaries serve as officers of entities?,Simple Retrieval Queries,offshoreleaks
+What are the most common addresses used by entities?,Simple Retrieval Queries,offshoreleaks
+List the entities with a 'same company as' relationship.,Simple Retrieval Queries,offshoreleaks
+Identify entities that have the same company type as 'SOLE OWNERSHIP'.,Simple Retrieval Queries,offshoreleaks
+Which entities have been closed on '28-NOV-2012'?,Simple Retrieval Queries,offshoreleaks
+Find the top 3 officers based on the number of entities they are connected to.,Simple Retrieval Queries,offshoreleaks
+What are the country codes for entities that have been struck off?,Simple Retrieval Queries,offshoreleaks
+List the entities with the most recent struck off dates.,Simple Retrieval Queries,offshoreleaks
+Identify intermediaries that share the same address with other intermediaries.,Simple Retrieval Queries,offshoreleaks
+Which officers serve as intermediaries of entities?,Simple Retrieval Queries,offshoreleaks
+Find the entities that have a similar name and address as other entities.,Simple Retrieval Queries,offshoreleaks
+What are the most common jurisdictions for entities?,Simple Retrieval Queries,offshoreleaks
+List the entities that have a dorm date available.,Simple Retrieval Queries,offshoreleaks
+"Identify entities with the same name as 'HOTFOCUS CO., LTD.'.",Simple Retrieval Queries,offshoreleaks
+Which intermediaries have a last edit timestamp through 2015?,Simple Retrieval Queries,offshoreleaks
+Find the top 5 addresses by the number of connections to entities.,Simple Retrieval Queries,offshoreleaks
+Who are the officers with the former name?,Simple Retrieval Queries,offshoreleaks
+List the top 3 entities based on their original name.,Simple Retrieval Queries,offshoreleaks
+Which entities have a struck off date and what are those dates?,Simple Retrieval Queries,offshoreleaks
+Find entities with incorporation dates in January 2006.,Simple Retrieval Queries,offshoreleaks
+What are the jurisdictions described for entities with a jurisdiction of 'SAM'?,Simple Retrieval Queries,offshoreleaks
+List entities that have a company type of 'FOREIGN FORMED CORPORATION' and their jurisdiction.,Simple Retrieval Queries,offshoreleaks
+"Identify the addresses connected to the entity 'TIANSHENG INDUSTRY AND TRADING CO., LTD.'.",Simple Retrieval Queries,offshoreleaks
+Which intermediaries have a source ID of 'Panama Papers'?,Simple Retrieval Queries,offshoreleaks
+List the entities that have a similar name and address as 'Top Games Holdings Inc.'.,Simple Retrieval Queries,offshoreleaks
+What are the top 5 officers linked to the most entities?,Simple Retrieval Queries,offshoreleaks
+Identify entities with a company number.,Simple Retrieval Queries,offshoreleaks
+Which officers are probably the same as 'KIM SOO IN'?,Simple Retrieval Queries,offshoreleaks
+Find the entities that are registered in the jurisdiction of 'Samoa'.,Simple Retrieval Queries,offshoreleaks
+What are the most recent entities added to the database based on their last edit timestamp?,Simple Retrieval Queries,offshoreleaks
+List the entities with a company type and their respective types.,Simple Retrieval Queries,offshoreleaks
+Identify the top 5 addresses used by intermediaries.,Simple Retrieval Queries,offshoreleaks
+Which officers have a similar name as 'KIM SOO IN'?,Simple Retrieval Queries,offshoreleaks
+Find the entities that have been incorporated on '23-MAR-2006'.,Simple Retrieval Queries,offshoreleaks
+What are the top 5 entities by node id?,Simple Retrieval Queries,offshoreleaks
+List the entities that have a note regarding their status.,Simple Retrieval Queries,offshoreleaks
+Identify intermediaries that are registered to the same address as entities.,Simple Retrieval Queries,offshoreleaks
+Which officers have been involved in a 'shareholder of' relationship the longest?,Simple Retrieval Queries,offshoreleaks
+Find the entities with the most recent dorm dates.,Simple Retrieval Queries,offshoreleaks
+What are the entities with a former name and their former names?,Simple Retrieval Queries,offshoreleaks
+List the entities connected to 'Paradise Papers - Appleby'.,Simple Retrieval Queries,offshoreleaks
+Identify the officers that have a country code of 'KOR'.,Simple Retrieval Queries,offshoreleaks
+Which entities have a closed date of '28-NOV-2012' and what are their names?,Simple Retrieval Queries,offshoreleaks
+Find the top 5 officers by the number of similar relationships with other officers.,Simple Retrieval Queries,offshoreleaks
+What are the country codes for entities that are registered in Samoa?,Simple Retrieval Queries,offshoreleaks
+List the entities associated with the 'Bahamas Leaks'.,Simple Retrieval Queries,offshoreleaks
+"Identify the intermediaries with the same name as 'MICHAEL PAPAGEORGE, MR.'.",Simple Retrieval Queries,offshoreleaks
+Which officers have addresses registered in 'Bahamas'?,Simple Retrieval Queries,offshoreleaks
+Find entities by their internal id '1001256'.,Simple Retrieval Queries,offshoreleaks
+What are the top 3 addresses based on their last edit timestamp?,Simple Retrieval Queries,offshoreleaks
+List the entities with a jurisdiction of 'SAM' and their jurisdiction descriptions.,Simple Retrieval Queries,offshoreleaks
+Identify entities and their corresponding service providers if their service provider is 'Mossack Fonseca'.,Simple Retrieval Queries,offshoreleaks
+Which entities have been incorporated in the year 2006?,Simple Retrieval Queries,offshoreleaks
+Find the entities with a tax status description available.,Simple Retrieval Queries,offshoreleaks
+Who are the officers with the most connections to addresses?,Simple Retrieval Queries,offshoreleaks
+List the entities with a closed date and their closed dates.,Simple Retrieval Queries,offshoreleaks
+Identify the officers linked to the entity with node id '12174285'.,Simple Retrieval Queries,offshoreleaks
+Which intermediaries are connected to more than one entity and list their names.,Simple Retrieval Queries,offshoreleaks
+What are the names of entities with the status 'Defaulted'?,Complex Retrieval Queries,offshoreleaks
+Can you list all entities incorporated on '23-MAR-2006'?,Complex Retrieval Queries,offshoreleaks
+What are the names of entities struck off on '15-FEB-2013'?,Complex Retrieval Queries,offshoreleaks
+Which entities have 'Mossack Fonseca' as their service provider?,Complex Retrieval Queries,offshoreleaks
+Show top 5 entities with addresses in 'Hong Kong'.,Complex Retrieval Queries,offshoreleaks
+What are the names of intermediaries located in 'South Africa'?,Complex Retrieval Queries,offshoreleaks
+Which intermediaries have 'ACTIVE' as their status?,Complex Retrieval Queries,offshoreleaks
+List all officers from 'South Korea'.,Complex Retrieval Queries,offshoreleaks
+"What entities are connected to the intermediary 'MICHAEL PAPAGEORGE, MR.'?",Complex Retrieval Queries,offshoreleaks
+Show entities with a 'same_as' relationship to other entities.,Complex Retrieval Queries,offshoreleaks
+Which entities are registered at addresses in 'Samoa'?,Complex Retrieval Queries,offshoreleaks
+List top 3 entities with the incorporation date '27-MAR-2006'.,Complex Retrieval Queries,offshoreleaks
+Find all the officers who are named 'KIM SOO IN'.,Complex Retrieval Queries,offshoreleaks
+What addresses are registered to entities in the 'Panama Papers'?,Complex Retrieval Queries,offshoreleaks
+Can you list all officers with a 'probably_same_officer_as' relationship?,Complex Retrieval Queries,offshoreleaks
+Which entities have an inactivation date of '18-FEB-2013'?,Complex Retrieval Queries,offshoreleaks
+List the intermediary names that are similar to any officers.,Complex Retrieval Queries,offshoreleaks
+"What are the country codes associated with the address 'ANNEX FREDERICK & SHIRLEY STS, P.O. BOX N-4805, NA'?",Complex Retrieval Queries,offshoreleaks
+Show all officers of the entity with node_id 12160432.,Complex Retrieval Queries,offshoreleaks
+What is the original name of the entity with ibcRUC '25221'?,Complex Retrieval Queries,offshoreleaks
+List all entities with a 'registered_address' relationship to the address node_id 14048584.,Complex Retrieval Queries,offshoreleaks
+Which entities share the same company as 'Top Games Holdings Inc.'?,Complex Retrieval Queries,offshoreleaks
+Can you show entities that have been struck off on '15-FEB-2014'?,Complex Retrieval Queries,offshoreleaks
+What are the former names of entities that have 'Defaulted' as their status?,Complex Retrieval Queries,offshoreleaks
+"List the entities that have 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.' as their original name.",Complex Retrieval Queries,offshoreleaks
+Find all officers connected to entities with a jurisdiction of 'SAM'.,Complex Retrieval Queries,offshoreleaks
+Which addresses are similar to 'ORION HOUSE SERVICES (HK) LIMITED ROOM 1401; 14/F.'?,Complex Retrieval Queries,offshoreleaks
+Show entities with a 'same_name_as' relationship to 'ANTAM ENTERPRISES N.V.'.,Complex Retrieval Queries,offshoreleaks
+"What are the countries associated with intermediaries named 'MICHAEL PAPAGEORGE, MR.'?",Complex Retrieval Queries,offshoreleaks
+List the types of companies found in the 'Other' node category.,Complex Retrieval Queries,offshoreleaks
+Which entities were inactivated on '27-FEB-2014'?,Complex Retrieval Queries,offshoreleaks
+Show the top 5 entities based on their last edit timestamp.,Complex Retrieval Queries,offshoreleaks
+What are the jurisdictions described for entities with country code 'HKG'?,Complex Retrieval Queries,offshoreleaks
+Which entities have a 'same_id_as' relationship?,Complex Retrieval Queries,offshoreleaks
+Can you list entities that have a note mentioning 'Closed date stands for Liquidation date.'?,Complex Retrieval Queries,offshoreleaks
+What are the node_ids of entities that were incorporated on '10-JAN-2006'?,Complex Retrieval Queries,offshoreleaks
+Show entities that are connected to 'ANTAM ENTERPRISES N.V.'.,Complex Retrieval Queries,offshoreleaks
+Which entities are intermediaries of 'Top Games Holdings Inc.'?,Complex Retrieval Queries,offshoreleaks
+List the former and current names of entities with a 'same_name_as' relationship.,Complex Retrieval Queries,offshoreleaks
+What is the address of the intermediary with internal_id '10001'?,Complex Retrieval Queries,offshoreleaks
+Find entities that were closed on '28-NOV-2012'.,Complex Retrieval Queries,offshoreleaks
+"List the countries associated with the entity 'HOTFOCUS CO., LTD.'.",Complex Retrieval Queries,offshoreleaks
+What are the company numbers for entities that have 'Defaulted' as their status?,Complex Retrieval Queries,offshoreleaks
+"Which entities have the same company type as 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.'?",Complex Retrieval Queries,offshoreleaks
+Show the first 5 officers with the sourceID 'Panama Papers'.,Complex Retrieval Queries,offshoreleaks
+What is the address linked to the 'registered_address' relationship for entity node_id 10000002?,Complex Retrieval Queries,offshoreleaks
+"Find all entities with a 'same_as' relationship to 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.'.",Complex Retrieval Queries,offshoreleaks
+Which entities are registered in Samoa and have been struck off as of 2013?,Simple Aggregation Queries,offshoreleaks
+List the entities that have 'Mossack Fonseca' as their service provider and are defaulted.,Simple Aggregation Queries,offshoreleaks
+Which officers are connected to entities registered in Samoa?,Simple Aggregation Queries,offshoreleaks
+Find entities that have changed their names and are currently active.,Simple Aggregation Queries,offshoreleaks
+Which entities were incorporated in March 2006 and are no longer active?,Simple Aggregation Queries,offshoreleaks
+Identify officers who have a registered address in Samoa.,Simple Aggregation Queries,offshoreleaks
+What are the names of intermediaries that are linked to entities with a status of 'Defaulted'?,Simple Aggregation Queries,offshoreleaks
+List entities that have an incorporation date and a struck-off date within the same year.,Simple Aggregation Queries,offshoreleaks
+Which entities are associated with the service provider 'Mossack Fonseca' and have a status of 'Active'?,Simple Aggregation Queries,offshoreleaks
+Identify all entities that were incorporated on '23-MAR-2006' and their current status.,Simple Aggregation Queries,offshoreleaks
+List entities that have addresses in Hong Kong but are registered under jurisdictions outside of Hong Kong.,Simple Aggregation Queries,offshoreleaks
+What are the last known statuses of entities that were incorporated in January 2006?,Simple Aggregation Queries,offshoreleaks
+List the officers that have a valid status up until 2015 and are linked to Samoa.,Simple Aggregation Queries,offshoreleaks
+Identify entities with more than one officer linked to them and have a status of 'Active'.,Simple Aggregation Queries,offshoreleaks
+Find officers linked to entities that were incorporated in 2007 and are still active.,Simple Aggregation Queries,offshoreleaks
+Which officers have a similar name or address to another officer?,Simple Aggregation Queries,offshoreleaks
+List the entities with a former name and their current name.,Simple Aggregation Queries,offshoreleaks
+Find entities that were both incorporated and struck off in 2013.,Simple Aggregation Queries,offshoreleaks
+What are the countries and jurisdictions for entities that are still active as per the latest update?,Simple Aggregation Queries,offshoreleaks
+List entities that have been inactive since February 2013 and their last known status.,Simple Aggregation Queries,offshoreleaks
+Identify entities and their corresponding officers that have been connected since 1999.,Simple Aggregation Queries,offshoreleaks
+What entities are linked to the address 'ORION HOUSE SERVICES (HK) LIMITED ROOM 1401; 14/F.'?,Simple Aggregation Queries,offshoreleaks
+How many entities have 'Hong Kong' listed both as their country and jurisdiction description?,Simple Aggregation Queries,offshoreleaks
+Identify entities with a struck-off date in February 2013 and their service providers.,Simple Aggregation Queries,offshoreleaks
+List the entities that were incorporated in 2006 and their current status.,Simple Aggregation Queries,offshoreleaks
+"Which officers are connected to entities with the original name 'TIANSHENG INDUSTRY AND TRADING CO., LTD.'?",Simple Aggregation Queries,offshoreleaks
+Find all intermediaries with an active status and their associated entities.,Simple Aggregation Queries,offshoreleaks
+What are the last known addresses of entities with a status 'Defaulted' in 2013?,Simple Aggregation Queries,offshoreleaks
+List entities registered in Samoa with a status of 'Active'.,Simple Aggregation Queries,offshoreleaks
+Which entities have a service provider of 'Mossack Fonseca' and were incorporated in 2006?,Simple Aggregation Queries,offshoreleaks
+Which entities are registered in Samoa and have a status of 'Defaulted'?,Pathfinding Queries,offshoreleaks
+List the first 5 entities that have been struck off as of 2013.,Pathfinding Queries,offshoreleaks
+What are the names of intermediaries located in South Africa?,Pathfinding Queries,offshoreleaks
+Identify three officers with addresses registered in the Bahamas.,Pathfinding Queries,offshoreleaks
+What are the common addresses between two or more entities?,Pathfinding Queries,offshoreleaks
+Which entities have a valid data period through 2015 and are associated with the service provider 'Mossack Fonseca'?,Pathfinding Queries,offshoreleaks
+"Can you find any officers linked to the entity 'TIANSHENG INDUSTRY AND TRADING CO., LTD.'?",Pathfinding Queries,offshoreleaks
+List top 3 intermediaries that have been linked as officers of entities.,Pathfinding Queries,offshoreleaks
+Which officers have a connection to entities registered in Samoa?,Pathfinding Queries,offshoreleaks
+Are there any addresses that are registered under multiple different nodes?,Pathfinding Queries,offshoreleaks
+"What are the names of entities that have changed their names, and what are their former names?",Pathfinding Queries,offshoreleaks
+Which entities have been inactive since February 2013?,Pathfinding Queries,offshoreleaks
+Display the first 5 officers who have addresses in South Korea.,Pathfinding Queries,offshoreleaks
+Identify entities that have a 'company_number' and are listed as 'Defaulted'.,Pathfinding Queries,offshoreleaks
+What addresses in Samoa are linked to more than one entity?,Pathfinding Queries,offshoreleaks
+Which officers are probably the same as other officers and share a similar name?,Pathfinding Queries,offshoreleaks
+List entities that are connected to officers named 'KIM SOO IN'.,Pathfinding Queries,offshoreleaks
+Which entities have a closed date listed and what are those dates?,Pathfinding Queries,offshoreleaks
+Find all entities that have been registered to the same address as 'ORION HOUSE SERVICES (HK) LIMITED'.,Pathfinding Queries,offshoreleaks
+What are the details of entities that have an incorporation date in 2006?,Pathfinding Queries,offshoreleaks
+"Identify entities that have a similar name and address as 'HOTFOCUS CO., LTD.'.",Pathfinding Queries,offshoreleaks
+What are the different types of companies listed under the 'Other' node category?,Pathfinding Queries,offshoreleaks
+Which entities have a tax status description available?,Pathfinding Queries,offshoreleaks
+List the intermediary names that have a registered address linked to them.,Pathfinding Queries,offshoreleaks
+Which officers are connected to entities through the 'officer_of' relationship and have a status listed?,Pathfinding Queries,offshoreleaks
+Identify the first 3 addresses that are shared by multiple entities or officers.,Pathfinding Queries,offshoreleaks
+What are the common jurisdictions described for entities registered under the jurisdiction code 'SAM'?,Pathfinding Queries,offshoreleaks
+"Which entities have the same company number as 'HOTFOCUS CO., LTD.'?",Pathfinding Queries,offshoreleaks
+List the entities that have a dorm date specified.,Pathfinding Queries,offshoreleaks
+"What are the registered office addresses for intermediaries named 'MICHAEL PAPAGEORGE, MR.'?",Pathfinding Queries,offshoreleaks
+Which channels were created by 'michael.neo'?,Simple Retrieval Queries,slack
+List all users who have edited a message in the 'neo4j-python' channel.,Simple Retrieval Queries,slack
+What are the names of the top 5 most recent channels created by Admins?,Simple Retrieval Queries,slack
+Identify 3 users who are members of the most channels.,Simple Retrieval Queries,slack
+Who are the primary owners of the channels created before 2016?,Simple Retrieval Queries,slack
+Which users have a status expiration set to 0 and are in the timezone 'Europe/Amsterdam'?,Simple Retrieval Queries,slack
+What are the first names of the 5 users who have the most reactions to messages?,Simple Retrieval Queries,slack
+List the last 3 messages posted by 'michael.neo' in any channel.,Simple Retrieval Queries,slack
+Which channels have a purpose related to 'Neo4j GraphQL'?,Simple Retrieval Queries,slack
+What are the names of the top 3 channels with the highest pagerank?,Simple Retrieval Queries,slack
+Which 5 users have their display name starting with 'm'?,Simple Retrieval Queries,slack
+List all Owners who are members of the 'neo4j-graphql' channel.,Simple Retrieval Queries,slack
+Which bots have posted messages in the 'neo4j-python' channel?,Simple Retrieval Queries,slack
+List the first names of 3 Deleted users.,Simple Retrieval Queries,slack
+Which users are in the timezone 'Europe/Amsterdam' and have edited a message in the past year?,Simple Retrieval Queries,slack
+What are the 3 most recent reactions made by 'michael.neo'?,Simple Retrieval Queries,slack
+Which channels have 'Google Drive' mentioned in the last 5 messages?,Simple Retrieval Queries,slack
+Identify the top 3 channels by creation date that have been archived.,Simple Retrieval Queries,slack
+Who are the top 5 users by the number of messages posted in the 'neo4j-graphql' channel?,Simple Retrieval Queries,slack
+List the titles of the top 3 attachments in messages posted in the 'neo4j-python' channel.,Simple Retrieval Queries,slack
+What are the first 5 emojis used in reactions to messages in the 'neo4j-graphql' channel?,Simple Retrieval Queries,slack
+Which users have posted threaded messages that mention 'michael.neo'?,Simple Retrieval Queries,slack
+List all channels where 'michael.neo' is a member and the channel is archived.,Simple Retrieval Queries,slack
+Which Admins have posted messages with attachments in the past month?,Simple Retrieval Queries,slack
+List the names of 3 bots that are members of any channel.,Simple Retrieval Queries,slack
+What are the titles of the last 5 threaded messages posted in the 'neo4j-graphql' channel?,Simple Retrieval Queries,slack
+Which users have a custom image and are part of the team 'T08J10GA2'?,Simple Retrieval Queries,slack
+Identify 3 channels where the most recent message was edited.,Simple Retrieval Queries,slack
+Which channels have a topic related to 'Python' and were created by 'michael.neo'?,Simple Retrieval Queries,slack
+List the names and titles of 5 Deleted users.,Simple Retrieval Queries,slack
+What are the top 3 channels by the number of messages posted in them?,Simple Retrieval Queries,slack
+Which users have reacted to messages with the ':python:' emoji?,Simple Retrieval Queries,slack
+What are the first names of the 3 PrimaryOwners who have created channels?,Simple Retrieval Queries,slack
+List the last names of all Admins who have edited messages in the 'neo4j-python' channel.,Simple Retrieval Queries,slack
+Which Deleted users have posted messages in channels that are currently archived?,Simple Retrieval Queries,slack
+Identify the 3 most recent messages that have a 'channel_join' subtype in the 'neo4j-graphql' channel.,Simple Retrieval Queries,slack
+What are the top 5 most mentioned users in messages across all channels?,Simple Retrieval Queries,slack
+Which channels have a topic that includes the word 'Graph'?,Simple Retrieval Queries,slack
+List the first 3 channels created by 'michael.neo' that have been archived.,Simple Retrieval Queries,slack
+What are the titles of the 5 most recent attachments in messages posted by Owners?,Simple Retrieval Queries,slack
+Which TimeZone has the most users associated with it?,Simple Retrieval Queries,slack
+What are the names of 3 Users who posted messages in the 'neo4j-graphql' channel last week?,Simple Retrieval Queries,slack
+List the names of all Bots that have a custom image.,Simple Retrieval Queries,slack
+Which channels have 'Michael Hunger' mentioned in the last 5 messages?,Simple Retrieval Queries,slack
+Identify the top 3 users by the number of threaded messages they have posted.,Simple Retrieval Queries,slack
+What are the 5 most recent emojis used in reactions by 'michael.neo'?,Simple Retrieval Queries,slack
+Which channels have a purpose related to 'Neo4j Ruby'?,Simple Retrieval Queries,slack
+List the first names of 5 users who have the most posts in the 'neo4j-python' channel.,Simple Retrieval Queries,slack
+Which Admins have a status text of ':neo4j:'?,Simple Retrieval Queries,slack
+What are the first names of the 3 most active Owners in terms of message postings?,Simple Retrieval Queries,slack
+List the names of all Users who are in the timezone 'Europe/Amsterdam' and have edited a threaded message.,Simple Retrieval Queries,slack
+Which Bots have posted messages with attachments in the 'neo4j-python' channel?,Simple Retrieval Queries,slack
+Identify the top 3 channels by the number of reactions to their messages.,Simple Retrieval Queries,slack
+What are the titles of the last 5 messages posted in the 'neo4j-graphql' channel by Admins?,Simple Retrieval Queries,slack
+Which users have a display name starting with 'm' and are part of the team 'T08J10GA2'?,Simple Retrieval Queries,slack
+List the names of 3 Users who reacted to messages with the ':neo4j:' emoji.,Simple Retrieval Queries,slack
+What are the first names of the top 5 most active Bots in terms of message postings?,Simple Retrieval Queries,slack
+Which channels have Michael mentioned in the last 5 messages?,Simple Retrieval Queries,slack
+List all the channels created by 'markneedham' that are currently archived.,Simple Retrieval Queries,slack
+What are the titles of the top 3 attachments in messages posted in channels created by 'michael.neo'?,Simple Retrieval Queries,slack
+Which users have posted the most threaded messages in the 'neo4j-graphql' channel?,Simple Retrieval Queries,slack
+What are the names of the top 3 channels by the number of members?,Simple Retrieval Queries,slack
+Which channels were created by the user with the ID 'U08J18KHB'?,Complex Retrieval Queries,slack
+List all the users who are members of the channel with the ID 'C08J10PT2'.,Complex Retrieval Queries,slack
+Which timezone is associated with the user named 'michael.neo'?,Complex Retrieval Queries,slack
+Find all messages posted by the user 'michael.neo'.,Complex Retrieval Queries,slack
+What are the names of channels where 'Michael Hunger' has posted a message?,Complex Retrieval Queries,slack
+Which users have reacted to the message with ID '1507313352.000514'?,Complex Retrieval Queries,slack
+What are the first names of all users who have edited a message in the channel with ID 'C08J10PT2'?,Complex Retrieval Queries,slack
+List all the attachments in messages posted in the channel 'random'.,Complex Retrieval Queries,slack
+Who are the primary owners of channels created before 2016?,Complex Retrieval Queries,slack
+Find all the emojis used in reactions to messages posted by 'Michael Hunger'.,Complex Retrieval Queries,slack
+Which bots are members of the channel named 'random'?,Complex Retrieval Queries,slack
+List all messages that mention the user with display name 'michael.neo'.,Complex Retrieval Queries,slack
+What is the purpose of the channel with the name 'neo4j-ruby'?,Complex Retrieval Queries,slack
+Who are the admins of the channel with the topic 'Technical Questions: '?,Complex Retrieval Queries,slack
+What are the real names of users who have the status emoji ':python:'?,Complex Retrieval Queries,slack
+Which channels have a 'pagerank' of 0.15 and are not archived?,Complex Retrieval Queries,slack
+List the top 5 users by the number of messages they have posted.,Complex Retrieval Queries,slack
+What is the title of the user with the ID 'U08J18KHB'?,Complex Retrieval Queries,slack
+Which channels have the user with avatar hash 'g522bc835d74' as a member?,Complex Retrieval Queries,slack
+Find all messages that have an attachment with a thumb_width greater than 1000.,Complex Retrieval Queries,slack
+What is the thumb_url of attachments in messages within the channel 'neo4j-graphql'?,Complex Retrieval Queries,slack
+List all the reactions to the message with ID '1581274875.020900'.,Complex Retrieval Queries,slack
+Who are the users mentioned in the threaded message with text containing 'preview release'?,Complex Retrieval Queries,slack
+What are the channels that have been created by deleted users?,Complex Retrieval Queries,slack
+List all the primary owners who are in the timezone 'Europe/Amsterdam'.,Complex Retrieval Queries,slack
+Which bots have a custom image and are members of any channel?,Complex Retrieval Queries,slack
+What titles do the bots have who are members of the channel with the ID 'C08J10PT2'?,Complex Retrieval Queries,slack
+Find all users who reacted with the emoji 'simple_smile' to any message.,Complex Retrieval Queries,slack
+Which users have an image_512 URL containing 'avatars.slack-edge'?,Complex Retrieval Queries,slack
+List all channels that have been mentioned in messages posted by 'Michael Hunger'.,Complex Retrieval Queries,slack
+What are the names of channels that have a topic containing 'Neo4j'?,Complex Retrieval Queries,slack
+Who are the users with the display name normalized as 'michael.neo' and are members of a channel?,Complex Retrieval Queries,slack
+Find all messages edited by the admin named 'Michael Hunger'.,Complex Retrieval Queries,slack
+What is the text of the last message posted in the channel named 'introduce-yourself'?,Complex Retrieval Queries,slack
+List the top 3 channels by the number of messages posted in them.,Complex Retrieval Queries,slack
+Who is the user with the skype ID 'technige'?,Complex Retrieval Queries,slack
+Which channels have a general purpose and are created by an admin?,Complex Retrieval Queries,slack
+List all the reactions made to messages in the channel with the ID 'C08J10PT2'.,Complex Retrieval Queries,slack
+What is the status text of the user with the highest pagerank in their channel?,Complex Retrieval Queries,slack
+Which channels have messages that include attachments with a title_link containing 'neo4j.com'?,Complex Retrieval Queries,slack
+List the first 5 messages that have been edited after their original posting date.,Complex Retrieval Queries,slack
+Find all channels where the primary owner has the title 'Caretaker General Community Neo4j'.,Complex Retrieval Queries,slack
+What are the display names of users who have the color '9f69e7'?,Complex Retrieval Queries,slack
+Which users are in the timezone 'Europe/Amsterdam' and have posted more than 5 messages?,Complex Retrieval Queries,slack
+List all the messages that have been posted by bots.,Complex Retrieval Queries,slack
+What are the topics of channels where the last message was posted before 2018?,Complex Retrieval Queries,slack
+Who are the owners of the channel named 'neo4j-graphql'?,Complex Retrieval Queries,slack
+Find all threaded messages that reply to the message with ID '1507313352.000514'.,Complex Retrieval Queries,slack
+What is the maximum thumb_height found in attachments of messages within any channel?,Complex Retrieval Queries,slack
+List the names of all emojis that have been used in reactions to messages by 'Michael Hunger'.,Complex Retrieval Queries,slack
+Which users have a status expiration of 0 and are members of the channel with the ID 'C08LLJF16'?,Complex Retrieval Queries,slack
+Find all messages that include a mention of the channel with the ID 'C08J10PT2'.,Complex Retrieval Queries,slack
+Which channels have more than one primary owner?,Complex Retrieval Queries,slack
+List the titles of all deleted users who have posted messages.,Complex Retrieval Queries,slack
+What are the first names of admins who are members of the channel with the ID 'C08J10PT2'?,Complex Retrieval Queries,slack
+Which bots have posted messages containing the word 'Google'?,Complex Retrieval Queries,slack
+List all the channels created by users with the last name 'Hunger'.,Complex Retrieval Queries,slack
+What is the color of the bot named 'archivebot'?,Complex Retrieval Queries,slack
+Find all users who have the title 'Caretaker General Community Neo4j' and have edited a message.,Complex Retrieval Queries,slack
+Which messages have a reaction of type 'simple_smile' and were posted in 2015?,Complex Retrieval Queries,slack
+List the channels where the primary owner's display name is 'michael.neo'.,Complex Retrieval Queries,slack
+What are the names of all channels that have been archived and were created by an admin?,Complex Retrieval Queries,slack
+Find all users who have a skype ID listed and are members of a channel.,Complex Retrieval Queries,slack
+Which messages have attachments with a thumb_url that includes 'neo4j' in the domain?,Complex Retrieval Queries,slack
+List the real names of all bots in the channel named 'random'.,Complex Retrieval Queries,slack
+Who are the primary owners with the status emoji ':palm_tree:'?,Complex Retrieval Queries,slack
+Find all users who have posted a message in the channel with the ID 'C08J10PT2' and have a status emoji ':python:'.,Complex Retrieval Queries,slack
+Which channels were created by the user with the display name 'michael.neo'?,Simple Aggregation Queries,slack
+List all messages posted by the user named 'lee.freeman'.,Simple Aggregation Queries,slack
+Show the top 5 channels with the highest pagerank.,Simple Aggregation Queries,slack
+What are the names of the users who are members of the channel named 'help-import'?,Simple Aggregation Queries,slack
+What is the creation date of the channel called 'neo4j-graphql'?,Simple Aggregation Queries,slack
+Who are the primary owners of the channels created before 2016?,Simple Aggregation Queries,slack
+Can you list all reactions made by the admin named 'michael.neo'?,Simple Aggregation Queries,slack
+Which users have edited messages in the channel 'organize-meetups'?,Simple Aggregation Queries,slack
+What are the names of the bots that have posted messages to the channel 'neo4j-graphql'?,Simple Aggregation Queries,slack
+Display the first names of all owners in the timezone 'Europe/Amsterdam'.,Simple Aggregation Queries,slack
+Which deleted users have posted messages in 2017?,Simple Aggregation Queries,slack
+List all the custom images used by app users.,Simple Aggregation Queries,slack
+What is the purpose of the channel 'help-import'?,Simple Aggregation Queries,slack
+Which channels have attachments in their messages?,Simple Aggregation Queries,slack
+What are the thumb widths of attachments in the channel 'neo4j-graphql'?,Simple Aggregation Queries,slack
+Show channels where the latest message was posted before 2020.,Simple Aggregation Queries,slack
+List all emojis used in reactions to messages from the channel 'help-import'.,Simple Aggregation Queries,slack
+Who reacted to the message with the text '<@U08J18KHB> has joined the channel'?,Simple Aggregation Queries,slack
+What are the names of the top 3 channels by number of messages posted?,Simple Aggregation Queries,slack
+Which user has the highest number of edits across all messages?,Simple Aggregation Queries,slack
+What is the display name of the bot with the first name 'Google'?,Simple Aggregation Queries,slack
+Which channels have the topic related to 'Neo4j GraphQL integration'?,Simple Aggregation Queries,slack
+List all users who have the status emoji ':python:'.,Simple Aggregation Queries,slack
+Which admin has the skype id 'technige'?,Simple Aggregation Queries,slack
+What is the title of the deleted user with the skype id 'tvpind'?,Simple Aggregation Queries,slack
+Show all messages that mention the user with the name 'michael.neo'.,Simple Aggregation Queries,slack
+What are the titles of the threaded messages in the channel 'neo4j-graphql'?,Simple Aggregation Queries,slack
+Which users are in the timezone labeled 'Central European Time'?,Simple Aggregation Queries,slack
+List all the statuses that expire in 2020.,Simple Aggregation Queries,slack
+What are the names of the channels where the primary owner has the display name 'michael.neo'?,Simple Aggregation Queries,slack
+Who are the users mentioned in the threaded message with id '1581274875.020900'?,Simple Aggregation Queries,slack
+Which messages have reactions of type 'simple_smile'?,Simple Aggregation Queries,slack
+Show all channels that have been archived.,Simple Aggregation Queries,slack
+What is the real name of the bot that posted a message in the channel 'neo4j-graphql'?,Simple Aggregation Queries,slack
+Show the profile pictures (image_512) of all admins.,Simple Aggregation Queries,slack
+What are the names of channels created by the user with the team id 'T08J10GA2'?,Simple Aggregation Queries,slack
+List the names of all users who have custom images.,Simple Aggregation Queries,slack
+Who is the owner with the last name 'Needham'?,Simple Aggregation Queries,slack
+Show the status texts of admins with the color '9f69e7'.,Simple Aggregation Queries,slack
+List all attachments with a thumb height greater than 3000.,Simple Aggregation Queries,slack
+What are the topics of channels where the primary owner's name is 'michael.neo'?,Simple Aggregation Queries,slack
+Which bots have a color of '3c8c69'?,Simple Aggregation Queries,slack
+Show the images (image_24) of users who have edited the most recent message in the 'help-import' channel.,Simple Aggregation Queries,slack
+List the reactions made to the message with id '1507313352.000514'.,Simple Aggregation Queries,slack
+What are the page ranks of all channels where Michael Hunger is an admin?,Simple Aggregation Queries,slack
+Show the top 5 users by number of messages they have posted.,Simple Aggregation Queries,slack
+List all channels where the most recent message was edited by an admin.,Simple Aggregation Queries,slack
+What are the types of messages in the 'organize-meetups' channel?,Simple Aggregation Queries,slack
+Which users have posted messages in the timezone 'Europe/Amsterdam'?,Simple Aggregation Queries,slack
+Show the display names of all primary owners who are members of more than one channel.,Simple Aggregation Queries,slack
+List the real names of all bots that are members of the channel named 'neo4j-graphql'.,Simple Aggregation Queries,slack
+Which channels have a created date on or before '2017-01-01'?,Simple Aggregation Queries,slack
+Show all users who have a status emoji of ':neo4j:'.,Simple Aggregation Queries,slack
+What are the first names of all owners who have posted a message?,Simple Aggregation Queries,slack
+List the titles of all attachments in messages posted in 2018.,Simple Aggregation Queries,slack
+Which users have the title 'Caretaker General Community Neo4j'?,Simple Aggregation Queries,slack
+Show all channels that have been mentioned in messages.,Simple Aggregation Queries,slack
+What are the last names of the users who reacted to the threaded message with id '1581274875.020900'?,Simple Aggregation Queries,slack
+List all the channels that a user named 'ryguyrg.neo' is a member of.,Simple Aggregation Queries,slack
+What is the color of the bot named 'communitygraph'?,Simple Aggregation Queries,slack
+Show the images (image_512) of all deleted users.,Simple Aggregation Queries,slack
+Which channels are owned by admins with the first name 'Michael'?,Simple Aggregation Queries,slack
+List the display names of all bots in the timezone 'Europe/Amsterdam'.,Simple Aggregation Queries,slack
+What are the skype ids of all owners?,Simple Aggregation Queries,slack
+Show all the statuses of the admin with the id 'U08J18KHB'.,Simple Aggregation Queries,slack
+Which users have posted the most threaded messages?,Simple Aggregation Queries,slack
+List all the channels a user named 'lee.freeman' has edited.,Simple Aggregation Queries,slack
+What are the topics of all channels where the last message was posted in 2019?,Simple Aggregation Queries,slack
+Show the profile pictures (image_72) of all users named 'Michael'.,Simple Aggregation Queries,slack
+Which channels have a message type 'message' and subtype 'channel_join'?,Simple Aggregation Queries,slack
+List the titles of all bots that have posted messages.,Simple Aggregation Queries,slack
+What is the text of the latest message in the channel 'organize-meetups'?,Simple Aggregation Queries,slack
+Show all reactions to messages from the user with the display name 'michael.neo'.,Simple Aggregation Queries,slack
+Which messages in the 'neo4j-graphql' channel have attachments?,Simple Aggregation Queries,slack
+List the names of all users who have a color of '9f69e7'.,Simple Aggregation Queries,slack
+What are the names of all bots that have reacted to messages?,Simple Aggregation Queries,slack
+Show the image_original links of all app users.,Simple Aggregation Queries,slack
+Which channels have a topic related to 'import-export'?,Simple Aggregation Queries,slack
+List all messages that were edited by a user named 'michael.neo'.,Simple Aggregation Queries,slack
+What are the names of channels where the primary owner is not 'michael.neo'?,Simple Aggregation Queries,slack
+Show the images (image_1024) of admins.,Simple Aggregation Queries,slack
+Which channels have their purpose related to 'Neo4j GraphQL integration'?,Simple Aggregation Queries,slack
+List the reactions made by the primary owner named 'michael.neo' to the threaded message with id '1581274875.020900'.,Simple Aggregation Queries,slack
+What is the color of the app user named 'github'?,Simple Aggregation Queries,slack
+Show the skype ids of all users with the status text ':neo4j:'.,Simple Aggregation Queries,slack
+List all deleted users who have reacted to a message.,Simple Aggregation Queries,slack
+What are the display names of users who have edited a message in the 'help-import' channel?,Simple Aggregation Queries,slack
+Show all messages posted by bots in the channel 'neo4j-graphql'.,Simple Aggregation Queries,slack
+Which messages have an attachment with a thumb_url containing 'neo4j'?,Simple Aggregation Queries,slack
+List the real names of all bots in the channel 'neo4j-graphql'.,Simple Aggregation Queries,slack
+Show the first names of all primary owners with a status expiration of 0.,Simple Aggregation Queries,slack
+Which users have the skype id 'maxdemarzi'?,Simple Aggregation Queries,slack
+List the channels that have a message with the subtype 'channel_join'.,Simple Aggregation Queries,slack
+What are the last names of all users who have posted messages in 2020?,Simple Aggregation Queries,slack
+Show all users who have posted a threaded message with the type 'message'.,Simple Aggregation Queries,slack
+Which reactions are made to messages by the user with the skype id 'technige'?,Simple Aggregation Queries,slack
+List all attachments in messages posted by the primary owner named 'michael.neo'.,Simple Aggregation Queries,slack
+What are the names of all channels where a bot named 'communitygraph' is a member?,Simple Aggregation Queries,slack
+What are the names of the top 5 channels with the highest pagerank?,Pathfinding Queries,slack
+List the first 5 users who have a custom image set to true.,Pathfinding Queries,slack
+Which 3 channels were created most recently?,Pathfinding Queries,slack
+What are the names of the 5 most recently created channels by Michael Hunger?,Pathfinding Queries,slack
+Which 3 users have an avatar hash starting with 'g5'?,Pathfinding Queries,slack
+What are the top 3 most recent messages posted by Michael Hunger?,Pathfinding Queries,slack
+Find the names of the top 5 bots by the number of messages they have posted.,Pathfinding Queries,slack
+Who are the primary owners of the top 3 channels by pagerank?,Pathfinding Queries,slack
+What are the names of the 5 most recent threaded messages edited by any user?,Pathfinding Queries,slack
+List the first 5 reactions to messages posted by Michael Hunger.,Pathfinding Queries,slack
+What are the names of 3 users who reacted to the 'simple_smile' emoji?,Pathfinding Queries,slack
+Which 3 users have posted messages in the 'neo4j-ruby' channel?,Pathfinding Queries,slack
+List the first 5 channels that have been archived.,Pathfinding Queries,slack
+Who are the 3 users with the most recent status expiration date?,Pathfinding Queries,slack
+What are the names of the 5 users in the 'Europe/Amsterdam' timezone?,Pathfinding Queries,slack
+Which 3 users have posted the most messages?,Pathfinding Queries,slack
+List the top 5 channels by the number of reactions received.,Pathfinding Queries,slack
+What are the names of 3 channels where the 'neo4j' status emoji was used?,Pathfinding Queries,slack
+Which 5 users have changed their status text most recently?,Pathfinding Queries,slack
+What are the titles of the top 3 attachments with the smallest thumb width?,Pathfinding Queries,slack
+List the 5 most recent emojis used in reactions.,Pathfinding Queries,slack
+What are the names of the 5 most recent messages that mention the 'random' channel?,Pathfinding Queries,slack
+Which 3 users have the 'python' status emoji set?,Pathfinding Queries,slack
+List the top 5 messages by Michael Hunger with attachments.,Pathfinding Queries,slack
+Who are the first 3 users who edited their messages the most recently?,Pathfinding Queries,slack
+What are the names of the top 5 channels where the 'community-graph' bot is a member?,Pathfinding Queries,slack
+Which 3 owners are part of the 'neo4j-graphql' channel?,Pathfinding Queries,slack
+List the first 5 messages in reply to the initial message in the 'neo4j-ruby' channel.,Pathfinding Queries,slack
+What are the names of 3 bots that are part of the 'T08J10GA2' team?,Pathfinding Queries,slack
+Which 5 users have the most reactions to their messages?,Pathfinding Queries,slack
+List the first 3 deleted users who have posted messages.,Pathfinding Queries,slack
+What are the names of the top 5 users by the number of channels they have created?,Pathfinding Queries,slack
+Which 3 admins have edited messages in the 'neo4j-graphql' channel?,Pathfinding Queries,slack
+List the first 5 primary owners who have posted threaded messages.,Pathfinding Queries,slack
+What are the names of 3 bots that posted messages in the 'neo4j-ruby' channel?,Pathfinding Queries,slack
+Which 5 users have the 'graphaware' status emoji set?,Pathfinding Queries,slack
+List the first 3 messages with the 'channel_join' subtype.,Pathfinding Queries,slack
+What are the names of the top 5 channels mentioned in messages?,Pathfinding Queries,slack
+Which 3 users have the most attachments in their messages?,Pathfinding Queries,slack
+List the first 5 deleted users by the date they posted their last message.,Pathfinding Queries,slack
+What are the names of the 3 most recent threaded messages mentioning Michael Hunger?,Pathfinding Queries,slack
+Which 5 users have the most threaded messages posted?,Pathfinding Queries,slack
+List the first 5 channels with the most mentions in messages.,Pathfinding Queries,slack
+What are the names of 3 channels with the most threaded messages posted in them?,Pathfinding Queries,slack
+Which 5 users have posted the most reactions to messages?,Pathfinding Queries,slack
+List the first 3 channels created by admins that are not archived.,Pathfinding Queries,slack
+What are the names of the top 5 users who have posted messages in the 'random' channel?,Pathfinding Queries,slack
+Which 3 primary owners have the most edited messages?,Pathfinding Queries,slack
+List the first 5 messages with reactions to the 'simple_smile' emoji.,Pathfinding Queries,slack
+What are the names of the 3 most recent bots that joined the 'neo4j-graphql' channel?,Pathfinding Queries,slack
+Which 5 users have the most mentions in messages?,Pathfinding Queries,slack
+List the first 3 channels with the most reactions to messages.,Pathfinding Queries,slack
+What are the names of the 3 most recent messages posted by bots?,Pathfinding Queries,slack
+Which 5 users have the most threaded messages mentioning them?,Pathfinding Queries,slack
+List the first 5 channels where 'Michael Hunger' is a primary owner.,Pathfinding Queries,slack
+What are the names of 3 users with the most recent profile image updates?,Pathfinding Queries,slack
+Which 5 channels have the most users as members?,Pathfinding Queries,slack
+List the first 3 messages that mention the 'neo4j-ruby' channel.,Pathfinding Queries,slack
+What are the names of the 5 most recent users who joined the 'random' channel?,Pathfinding Queries,slack
+Which 3 channels have the most edited messages?,Pathfinding Queries,slack
+List the first 5 emojis used in reactions to messages in the 'neo4j-graphql' channel.,Pathfinding Queries,slack
+What are the names of the 3 most recent messages with the 'message' type?,Pathfinding Queries,slack
+Which 5 users have the most reactions of type 'simple_smile'?,Pathfinding Queries,slack
+List the first 3 channels with the longest text in their purpose descriptions.,Pathfinding Queries,slack
+What are the names of the 5 most recent users who have changed their status emoji to ':neo4j:'?,Pathfinding Queries,slack
+Which 3 channels have been mentioned the most in messages?,Pathfinding Queries,slack
+List the first 5 messages that have an attachment with a title containing 'Neo4j'.,Pathfinding Queries,slack
+What are the names of the 3 most recent users to post a threaded message?,Pathfinding Queries,slack
+Who are the top 5 users by number of channels created?,Complex Aggregation Queries,slack
+What are the top 3 channels by number of messages posted?,Complex Aggregation Queries,slack
+Which 5 users have edited the most messages?,Complex Aggregation Queries,slack
+List the top 5 channels by the number of unique users who have posted messages.,Complex Aggregation Queries,slack
+Who are the top 3 users based on the number of reactions they have given?,Complex Aggregation Queries,slack
+What are the top 3 most mentioned users in messages?,Complex Aggregation Queries,slack
+Which 5 channels have the highest number of archived messages?,Complex Aggregation Queries,slack
+List the top 5 users who have posted messages in the most number of unique channels.,Complex Aggregation Queries,slack
+Who are the top 3 users by number of threaded messages posted?,Complex Aggregation Queries,slack
+What are the top 5 most active bots based on message posting?,Complex Aggregation Queries,slack
+Which 3 channels have the most attachments added to their messages?,Complex Aggregation Queries,slack
+List the top 5 messages with the most reactions.,Complex Aggregation Queries,slack
+Which 5 users have the most mentions in other users' messages?,Complex Aggregation Queries,slack
+What are the top 3 channels with the most edited messages?,Complex Aggregation Queries,slack
+Who are the top 5 owners by number of channels they are members of?,Complex Aggregation Queries,slack
+List the top 3 channels with the most threaded messages.,Complex Aggregation Queries,slack
+Which 5 users have reacted to the most number of unique messages?,Complex Aggregation Queries,slack
+What are the top 3 channels with the highest page rank?,Complex Aggregation Queries,slack
+Which 5 users are in the most time zones?,Complex Aggregation Queries,slack
+List the top 5 deleted users who have posted the most messages.,Complex Aggregation Queries,slack
+Which 3 admins have created the most channels?,Complex Aggregation Queries,slack
+What are the top 5 emojis used in reactions?,Complex Aggregation Queries,slack
+List the top 3 users who have the most status updates.,Complex Aggregation Queries,slack
+Which 5 channels have the largest number of members?,Complex Aggregation Queries,slack
+What are the top 3 messages with the longest text?,Complex Aggregation Queries,slack
+List the top 5 users based on the number of messages they have edited.,Complex Aggregation Queries,slack
+Which 3 channels have the most mentions of other channels in their messages?,Complex Aggregation Queries,slack
+What are the top 5 channels by number of reactions received on their messages?,Complex Aggregation Queries,slack
+List the top 3 bots by number of channels they are members of.,Complex Aggregation Queries,slack
+Who are the top 5 users with the most custom images?,Complex Aggregation Queries,slack
+What are the top 3 time zones with the most users?,Complex Aggregation Queries,slack
+List the top 5 channels based on the diversity of user titles of members.,Complex Aggregation Queries,slack
+Which 3 channels have the most unique reactions to their messages?,Complex Aggregation Queries,slack
+What are the top 5 messages with the most attachments?,Complex Aggregation Queries,slack
+List the top 3 primary owners by number of channels created.,Complex Aggregation Queries,slack
+What are the names of the first three Channels created by the user with the display name 'michael.neo'?,Verbose query,slack
+List the names of the top five Users who are members of the Channel named 'help-cypher'.,Verbose query,slack
+Which three Owners have edited Messages in the 'neo4j-graphql' Channel?,Verbose query,slack
+Name the first three Bots that have posted Messages in any Channel.,Verbose query,slack
+What are the titles of the three most recent ThreadedMessages posted by the Admin named 'michael.neo'?,Verbose query,slack
+Which three Users reacted to the Message with the id '1507313352.000514'?,Verbose query,slack
+List the first names of the top five Users who are in the 'Europe/Amsterdam' TimeZone.,Verbose query,slack
+What are the names of the first three Channels where the PrimaryOwner with the real name 'Michael Hunger' is a member?,Verbose query,slack
+List the top five Channels with the most Messages posted in them.,Verbose query,slack
+What are the ids of the first three Deleted users who have posted a ThreadedMessage?,Verbose query,slack
+Which three Users have the highest pagerank and are members of the Channel named 'neo4j-sdn-ogm'?,Verbose query,slack
+List the names of the first three Emojis used in Reactions to Messages.,Verbose query,slack
+What are the text contents of the top five Attachments in Messages within the 'help-cypher' Channel?,Verbose query,slack
+Which three Users have a custom image and are members of the Channel named 'neo4j-graphql'?,Verbose query,slack
+List the top five Users by the number of Messages they have edited.,Verbose query,slack
+What are the names of the first three Channels created by any Admin?,Verbose query,slack
+Which three Owners have their TimeZone set to 'Europe/Amsterdam'?,Verbose query,slack
+List the real names of the first three PrimaryOwners who have posted a Message in any Channel.,Verbose query,slack
+Which three Bots are members of the most Channels?,Verbose query,slack
+List the top five Messages that mention the User with the display name 'michael.neo'.,Verbose query,slack
+What are the first names of the first three Deleted users who are members of the Channel named 'help-cypher'?,Verbose query,slack
+Which three Channels have the most Reactions associated with their Messages?,Verbose query,slack
+List the titles of the top five ThreadedMessages that have an Attachment.,Verbose query,slack
+What are the display names of the first three Users who reacted to the ThreadedMessage with the id '1581274875.020900'?,Verbose query,slack
+Which three Admins have edited Messages in the 'neo4j-graphql' Channel?,Verbose query,slack
+List the names of the first three Bots that have a status emoji set to ':python:'.,Verbose query,slack
+What are the top 5 most viewed questions?,Simple Retrieval Queries,stackoverflow2
+List the first 3 users by UUID.,Simple Retrieval Queries,stackoverflow2
+Which tags are used by more than 5 questions?,Simple Retrieval Queries,stackoverflow2
+Find the top 5 answers with the highest score.,Simple Retrieval Queries,stackoverflow2
+What are the first 3 comments with a score of 2 or higher?,Simple Retrieval Queries,stackoverflow2
+List all questions asked by the user with display name 'Adrien Lemaire'.,Simple Retrieval Queries,stackoverflow2
+Which 3 users have commented the most?,Simple Retrieval Queries,stackoverflow2
+List the top 5 questions with the most answers.,Simple Retrieval Queries,stackoverflow2
+Find the first 3 questions tagged with 'neo4j'.,Simple Retrieval Queries,stackoverflow2
+Which 3 users provided the most answers?,Simple Retrieval Queries,stackoverflow2
+List the first 3 accepted answers.,Simple Retrieval Queries,stackoverflow2
+What are the top 5 questions with the lowest view count?,Simple Retrieval Queries,stackoverflow2
+Which 3 answers have the lowest score?,Simple Retrieval Queries,stackoverflow2
+List the first 3 questions with no answers.,Simple Retrieval Queries,stackoverflow2
+Which users have asked questions with more than 100 views?,Simple Retrieval Queries,stackoverflow2
+What are the first 3 tags associated with the most questions?,Simple Retrieval Queries,stackoverflow2
+List all the answers provided by the user with UUID 16922964.,Simple Retrieval Queries,stackoverflow2
+Which 3 users have their name starting with 'A'?,Simple Retrieval Queries,stackoverflow2
+List the first 3 questions that have been both asked and commented on by the same user.,Simple Retrieval Queries,stackoverflow2
+What are the top 5 most recent questions?,Simple Retrieval Queries,stackoverflow2
+Which 3 questions have the highest answer count?,Simple Retrieval Queries,stackoverflow2
+List the first 3 comments made on the question with the highest view count.,Simple Retrieval Queries,stackoverflow2
+Which 3 tags appear in the least number of questions?,Simple Retrieval Queries,stackoverflow2
+List the first 3 answers that were not accepted.,Simple Retrieval Queries,stackoverflow2
+Which users have commented on more than 5 questions?,Simple Retrieval Queries,stackoverflow2
+What are the first 3 questions with exactly 2 answers?,Simple Retrieval Queries,stackoverflow2
+List the first 3 questions asked in 2021.,Simple Retrieval Queries,stackoverflow2
+Which 3 users have the longest display names?,Simple Retrieval Queries,stackoverflow2
+List the top 5 questions with creation dates before 1600000000.,Simple Retrieval Queries,stackoverflow2
+What are the first 3 tags used in questions asked by 'Adrien Lemaire'?,Simple Retrieval Queries,stackoverflow2
+List all the comments made by the user with the highest comment score.,Simple Retrieval Queries,stackoverflow2
+Which 3 answers are linked to the question with the most tags?,Simple Retrieval Queries,stackoverflow2
+List the first 3 questions with a title containing 'neo4j'.,Simple Retrieval Queries,stackoverflow2
+Which users have provided answers to more than 3 different questions?,Simple Retrieval Queries,stackoverflow2
+List the top 5 questions with an accepted answer ID.,Simple Retrieval Queries,stackoverflow2
+What are the first 3 questions tagged with 'cypher' and have more than 1 answer?,Simple Retrieval Queries,stackoverflow2
+List all the answers with a negative score.,Simple Retrieval Queries,stackoverflow2
+Which 3 users have commented on questions asked by 'schernichkin'?,Simple Retrieval Queries,stackoverflow2
+List the top 5 comments with a link containing 'neomodel'.,Simple Retrieval Queries,stackoverflow2
+What are the first 3 questions asked by users with a UUID less than 500000?,Simple Retrieval Queries,stackoverflow2
+List the first 3 tags that appear in questions with zero answers.,Simple Retrieval Queries,stackoverflow2
+Which users have asked the most questions in the last year?,Simple Retrieval Queries,stackoverflow2
+List the first 3 answers to questions that have at least 3 tags.,Simple Retrieval Queries,stackoverflow2
+What are the first 3 questions that have comments with a score of 3?,Simple Retrieval Queries,stackoverflow2
+List all the questions that have been tagged with both 'neo4j' and 'cypher'.,Simple Retrieval Queries,stackoverflow2
+Which 3 users have the most questions with accepted answers?,Simple Retrieval Queries,stackoverflow2
+List the first 3 questions with the most comments.,Simple Retrieval Queries,stackoverflow2
+What are the top 5 most recent comments?,Simple Retrieval Queries,stackoverflow2
+Which 3 answers are linked to questions asked by the most unique users?,Simple Retrieval Queries,stackoverflow2
+List the first 3 questions with a view count between 50 and 100.,Simple Retrieval Queries,stackoverflow2
+What are the top 5 most viewed questions tagged with 'neo4j'?,Complex Retrieval Queries,stackoverflow2
+List the first 3 users who have asked more than one question.,Complex Retrieval Queries,stackoverflow2
+Identify the top 5 highest scoring answers provided by the user 'Anu'.,Complex Retrieval Queries,stackoverflow2
+Which questions have more than two comments by a single user? Show only the first 3.,Complex Retrieval Queries,stackoverflow2
+"Show all the tags associated with questions that have over 100 views, limit to 5 tags.",Complex Retrieval Queries,stackoverflow2
+What are the titles of the top 3 questions that have accepted answers with a negative score?,Complex Retrieval Queries,stackoverflow2
+Can you list the first 3 users who have commented on questions related to 'neo4j' more than once?,Complex Retrieval Queries,stackoverflow2
+Which are the top 5 most recent questions asked by user 'Mohammed Faraz ali'?,Complex Retrieval Queries,stackoverflow2
+Display the first 3 questions that have no answers.,Complex Retrieval Queries,stackoverflow2
+Show the top 5 questions with the highest number of answers that have an accepted answer.,Complex Retrieval Queries,stackoverflow2
+What are the links to the answers that were accepted for questions with more than 80 views? Show only the first 3.,Complex Retrieval Queries,stackoverflow2
+List the names of the top 5 tags most frequently used in questions that have been commented on.,Complex Retrieval Queries,stackoverflow2
+What are the top 3 questions with the lowest view count that have been answered by 'Anu'?,Complex Retrieval Queries,stackoverflow2
+"Display all the questions asked in 2021, limiting the results to the first 5.",Complex Retrieval Queries,stackoverflow2
+Which users have commented on the question titled 'Create graph from recursive JSON data using apoc.load.json and use UNWIND and FOREACH for setting property'? Show only the top 3.,Complex Retrieval Queries,stackoverflow2
+Can you find the first 3 questions that were tagged 'neo4j' and have an answer count of zero?,Complex Retrieval Queries,stackoverflow2
+Identify the top 5 questions with the highest view count that do not have any answers.,Complex Retrieval Queries,stackoverflow2
+What are the 3 most recent comments on the question with the highest view count?,Complex Retrieval Queries,stackoverflow2
+List all the questions that have been provided answers by more than 3 different users. Limit to the first 5 questions.,Complex Retrieval Queries,stackoverflow2
+Which tags are associated with questions that have more than two answers? Show only the top 3 tags.,Complex Retrieval Queries,stackoverflow2
+What are the first 3 most recent questions asked about 'neo4j' that have an accepted answer?,Complex Retrieval Queries,stackoverflow2
+Show the top 5 users who have provided the most answers.,Complex Retrieval Queries,stackoverflow2
+List the first 3 questions that have been commented on by user 'Mohammed Faraz ali'.,Complex Retrieval Queries,stackoverflow2
+What are the most recent 3 questions that have been asked by users with a display name starting with 'A'?,Complex Retrieval Queries,stackoverflow2
+Identify the questions with the most comments. Limit the results to the first 5.,Complex Retrieval Queries,stackoverflow2
+What are the titles of the first 3 questions that have received an answer with the highest scores?,Complex Retrieval Queries,stackoverflow2
+Can you list the first 3 questions that have a view count between 50 and 100?,Complex Retrieval Queries,stackoverflow2
+Show the first 3 questions that have been tagged with 'neo4j' and have an answer with a score of 3 or higher.,Complex Retrieval Queries,stackoverflow2
+What are the titles of the top 5 questions with the lowest view counts?,Complex Retrieval Queries,stackoverflow2
+List the first 3 questions that have been provided answers by the user 'Anu' and have an accepted answer.,Complex Retrieval Queries,stackoverflow2
+What are the top 5 questions with the highest view count?,Simple Aggregation Queries,stackoverflow2
+List all tags associated with the top 3 most viewed questions.,Simple Aggregation Queries,stackoverflow2
+Who are the users who asked the top 3 questions with the most answers?,Simple Aggregation Queries,stackoverflow2
+Which users provided answers to the top 5 questions by view count?,Simple Aggregation Queries,stackoverflow2
+What are the top 3 comments with the highest score?,Simple Aggregation Queries,stackoverflow2
+List the top 5 answers with the highest score.,Simple Aggregation Queries,stackoverflow2
+"For the 3 questions with the most answers, list their associated tags.",Simple Aggregation Queries,stackoverflow2
+Identify the top 5 users by the number of questions they have asked.,Simple Aggregation Queries,stackoverflow2
+Which tags are most frequently associated with questions having more than one answer?,Simple Aggregation Queries,stackoverflow2
+List the top 3 most recent questions asked on the platform.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the lowest view counts but with accepted answers?,Simple Aggregation Queries,stackoverflow2
+Which users commented on the top 5 most viewed questions?,Simple Aggregation Queries,stackoverflow2
+"For the top 3 highest scoring answers, list the questions they answered.",Simple Aggregation Queries,stackoverflow2
+List the top 5 most active users based on the total number of comments provided.,Simple Aggregation Queries,stackoverflow2
+Who are the top 3 users who provided the most answers?,Simple Aggregation Queries,stackoverflow2
+What are the three most recent answers provided on the platform?,Simple Aggregation Queries,stackoverflow2
+List the top 3 questions with the most comments.,Simple Aggregation Queries,stackoverflow2
+Which users have provided answers to questions tagged with 'neo4j'?,Simple Aggregation Queries,stackoverflow2
+What are the top 5 questions with the most unique tags?,Simple Aggregation Queries,stackoverflow2
+List the 3 most recent comments made on questions.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the most accepted answers?,Simple Aggregation Queries,stackoverflow2
+Which users have commented on the most number of different questions?,Simple Aggregation Queries,stackoverflow2
+"For the top 5 questions by view count, list their creation dates.",Simple Aggregation Queries,stackoverflow2
+What are the top 3 longest body_markdown contents in answers?,Simple Aggregation Queries,stackoverflow2
+List the top 3 users who asked questions with accepted answers.,Simple Aggregation Queries,stackoverflow2
+Which questions have the highest number of comments and what are their tags?,Simple Aggregation Queries,stackoverflow2
+List the top 5 questions asked by 'Mohammed Faraz ali'.,Simple Aggregation Queries,stackoverflow2
+Who has commented the most on questions tagged with 'neo4j'?,Simple Aggregation Queries,stackoverflow2
+List the 3 questions with the highest answer scores.,Simple Aggregation Queries,stackoverflow2
+Who are the users who commented on the top 3 highest scoring comments?,Simple Aggregation Queries,stackoverflow2
+What are the top 3 tags used in the most viewed questions?,Simple Aggregation Queries,stackoverflow2
+List the tags associated with the 3 questions having the most comments.,Simple Aggregation Queries,stackoverflow2
+Identify the 3 users who have asked questions with the least views.,Simple Aggregation Queries,stackoverflow2
+Which 3 questions have the highest combined scores of answers?,Simple Aggregation Queries,stackoverflow2
+List the top 5 comments based on their score that are on questions with more than 100 views.,Simple Aggregation Queries,stackoverflow2
+"For the questions with accepted answers, list the top 3 by view count.",Simple Aggregation Queries,stackoverflow2
+Which users have provided answers that were accepted for the top 3 most viewed questions?,Simple Aggregation Queries,stackoverflow2
+List the top 3 answers that were not accepted but have the highest scores.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the most tags?,Simple Aggregation Queries,stackoverflow2
+Who are the top 3 users based on the number of provided answers that have been accepted?,Simple Aggregation Queries,stackoverflow2
+List the top 5 comments on the questions asked by 'Anu'.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 most viewed questions without any answers?,Simple Aggregation Queries,stackoverflow2
+Which users have the most comments on answers with scores higher than 1?,Simple Aggregation Queries,stackoverflow2
+List the top 3 tags on questions that have no accepted answer but have comments.,Simple Aggregation Queries,stackoverflow2
+Identify the 3 questions with the highest view counts that also have an accepted answer.,Simple Aggregation Queries,stackoverflow2
+Which 3 users have commented the most times on questions with more than 2 tags?,Simple Aggregation Queries,stackoverflow2
+List the top 5 questions that have the longest body_markdown.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the highest number of tags and answers?,Simple Aggregation Queries,stackoverflow2
+Who are the top 3 users by the number of comments on answers with a score of 3?,Simple Aggregation Queries,stackoverflow2
+List the 3 most recent questions tagged with 'neo4j'.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 lowest scored answers on the most viewed questions?,Simple Aggregation Queries,stackoverflow2
+Which tags are associated with the top 3 questions by answer count?,Simple Aggregation Queries,stackoverflow2
+List the 3 users who have asked the most questions with accepted answers.,Simple Aggregation Queries,stackoverflow2
+What are the top 5 most commented-on questions?,Simple Aggregation Queries,stackoverflow2
+Who are the users who have provided answers to the 3 most recently asked questions?,Simple Aggregation Queries,stackoverflow2
+List the top 5 questions with the most number of different commenters.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 tags associated with questions having the highest number of comments?,Simple Aggregation Queries,stackoverflow2
+List the 3 most recent tags used in questions.,Simple Aggregation Queries,stackoverflow2
+"For the top 3 questions with the lowest view counts, list their associated tags.",Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the most answers and what are their view counts?,Simple Aggregation Queries,stackoverflow2
+Who commented on the 3 questions with the highest scores?,Simple Aggregation Queries,stackoverflow2
+List the top 3 answers with the longest body_markdown.,Simple Aggregation Queries,stackoverflow2
+What are the three most recent questions asked by users with a uuid greater than 15000000?,Simple Aggregation Queries,stackoverflow2
+Identify the top 5 questions with the most different tags associated.,Simple Aggregation Queries,stackoverflow2
+List the top 3 most answered questions and their accepted answers.,Simple Aggregation Queries,stackoverflow2
+What are the top 5 questions with the lowest answer counts but with comments?,Simple Aggregation Queries,stackoverflow2
+Which users have provided the most answers to questions tagged with 'neo4j'?,Simple Aggregation Queries,stackoverflow2
+List the top 3 questions with the highest scores of their accepted answers.,Simple Aggregation Queries,stackoverflow2
+Who are the top 3 users who commented the most on the highest viewed questions?,Simple Aggregation Queries,stackoverflow2
+List the top 5 questions with the most answers and their tags.,Simple Aggregation Queries,stackoverflow2
+"For the top 3 questions with the most views, list the users who asked them.",Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the highest scores of comments?,Simple Aggregation Queries,stackoverflow2
+List the tags associated with the 3 questions having the lowest view counts.,Simple Aggregation Queries,stackoverflow2
+Which 3 users provided answers to the most questions?,Simple Aggregation Queries,stackoverflow2
+List the 3 questions with the highest scores and their associated tags.,Simple Aggregation Queries,stackoverflow2
+What are the top 5 questions asked by users with the highest number of comments?,Simple Aggregation Queries,stackoverflow2
+Who commented on the top 3 most commented questions?,Simple Aggregation Queries,stackoverflow2
+List the top 3 answers that are accepted and have the highest scores.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the most different users commenting?,Simple Aggregation Queries,stackoverflow2
+List the top 5 users who provided answers to the most viewed questions.,Simple Aggregation Queries,stackoverflow2
+"For the top 3 questions with the least views, who are the users that asked them?",Simple Aggregation Queries,stackoverflow2
+What are the top 3 most tagged questions and their answer counts?,Simple Aggregation Queries,stackoverflow2
+Who are the top 3 users with the most provided answers that were not accepted?,Simple Aggregation Queries,stackoverflow2
+List the top 5 questions with the most comments and their associated tags.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the most views and their titles?,Simple Aggregation Queries,stackoverflow2
+List the top 3 users who provided the least answers.,Simple Aggregation Queries,stackoverflow2
+Which 3 questions have the most comments and what are their accepted answer ids?,Simple Aggregation Queries,stackoverflow2
+List the top 3 most tagged questions without an accepted answer.,Simple Aggregation Queries,stackoverflow2
+Who provided answers to the top 3 questions with the most tags?,Simple Aggregation Queries,stackoverflow2
+List the top 5 most recent questions with more than one answer.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the highest scores of their unaccepted answers?,Simple Aggregation Queries,stackoverflow2
+List the 3 users who have asked the questions with the highest view counts.,Simple Aggregation Queries,stackoverflow2
+What are the top 5 most tagged questions and their view counts?,Simple Aggregation Queries,stackoverflow2
+Identify the 3 answers with the lowest scores provided to the most viewed questions.,Simple Aggregation Queries,stackoverflow2
+List the top 3 questions with the least number of answers but with at least one accepted answer.,Simple Aggregation Queries,stackoverflow2
+What are the top 5 most commented-on questions and their titles?,Simple Aggregation Queries,stackoverflow2
+Who provided the most answers to the questions with the most comments?,Simple Aggregation Queries,stackoverflow2
+List the 3 most recent answers provided to questions tagged with 'neo4j'.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 questions with the most answers and their accepted answer ids?,Simple Aggregation Queries,stackoverflow2
+Who are the top 3 users by the number of questions they have provided answers to?,Simple Aggregation Queries,stackoverflow2
+List the top 5 questions with the highest scores and their accepted answer links.,Simple Aggregation Queries,stackoverflow2
+What are the top 3 most viewed questions and their associated users?,Simple Aggregation Queries,stackoverflow2
+List the 3 most recent tags applied to questions with at least one answer.,Simple Aggregation Queries,stackoverflow2
+Which questions have the most tags and what are their titles?,Simple Aggregation Queries,stackoverflow2
+List the top 5 users who have provided answers to the most commented-on questions.,Simple Aggregation Queries,stackoverflow2
+Which questions have been tagged with the tag named 'neo4j'? Limit to the top 5 questions.,Pathfinding Queries,stackoverflow2
+What are the top 3 questions with the highest view count that were asked by the user with the display name 'schernichkin'?,Pathfinding Queries,stackoverflow2
+Find the first 3 questions with no answers.,Pathfinding Queries,stackoverflow2
+What are the top 3 highest scoring comments made on questions related to the tag 'cypher'?,Pathfinding Queries,stackoverflow2
+List the top 5 questions that have an accepted answer.,Pathfinding Queries,stackoverflow2
+Which user has commented the most number of times? Show the top 3 users.,Pathfinding Queries,stackoverflow2
+Find the top 3 users who have provided the most answers.,Pathfinding Queries,stackoverflow2
+What are the top 5 questions with the highest number of answers?,Pathfinding Queries,stackoverflow2
+Which tags are associated with the question titled 'Create graph from recursive JSON data using apoc.load.json'?,Pathfinding Queries,stackoverflow2
+List the top 3 most viewed questions tagged with 'neo4j'.,Pathfinding Queries,stackoverflow2
+Who asked the question with the title 'Neo.ClientError.Statement.ExternalResourceFailed error on loading CSV file from local'?,Pathfinding Queries,stackoverflow2
+What are the top 5 answers that are marked as accepted?,Pathfinding Queries,stackoverflow2
+Find the top 3 answers with the highest score.,Pathfinding Queries,stackoverflow2
+List the top 3 comments with a score of 3.,Pathfinding Queries,stackoverflow2
+Which questions have been commented on by the user with the display name 'DoubleMiP'? Limit to the top 3.,Pathfinding Queries,stackoverflow2
+What are the top 5 most recent questions asked in the system?,Pathfinding Queries,stackoverflow2
+Who are the top 3 users by the number of questions they have asked?,Pathfinding Queries,stackoverflow2
+List the first 3 questions that were asked before the year 2021.,Pathfinding Queries,stackoverflow2
+Which users have provided answers to the question with the title 'even after null check why I am getting null value in neo4j?' Limit to the top 3.,Pathfinding Queries,stackoverflow2
+What are the top 5 questions with the lowest view count?,Pathfinding Queries,stackoverflow2
+Find the first 3 questions that have more than 2 answers.,Pathfinding Queries,stackoverflow2
+List the titles of the top 3 questions with the longest body markdown text.,Pathfinding Queries,stackoverflow2
+Which questions have been answered by the user with the uuid 16922964? Limit to the top 3 questions.,Pathfinding Queries,stackoverflow2
+Find the first 3 users who have commented on questions with more than 100 views.,Pathfinding Queries,stackoverflow2
+Who provided the answer with the link 'https://stackoverflow.com/a/69272967'?,Pathfinding Queries,stackoverflow2
+List the top 3 tags that have been used the most in questions.,Pathfinding Queries,stackoverflow2
+What are the first 3 questions that have a view count between 50 and 100?,Pathfinding Queries,stackoverflow2
+What are the titles of the top 5 questions with the highest view count?,Complex Aggregation Queries,stackoverflow2
+Which questions have been tagged with 'neo4j'?,Complex Aggregation Queries,stackoverflow2
+List the top 3 users by the number of questions they have asked.,Complex Aggregation Queries,stackoverflow2
+Who commented on the question titled 'Neo4j- APOC trigger fires without any reason'?,Complex Aggregation Queries,stackoverflow2
+What are the UUIDs of the answers that are marked as accepted?,Complex Aggregation Queries,stackoverflow2
+Which user provided the answer to the question titled 'Create graph from recursive JSON data using apoc.load.json and use UNWIND and FOREACH for setting property'?,Complex Aggregation Queries,stackoverflow2
+Can you list all tags associated with questions asked by the user 'Anu'?,Complex Aggregation Queries,stackoverflow2
+What are the top 3 most commented on questions?,Complex Aggregation Queries,stackoverflow2
+Which questions have more than one answer?,Complex Aggregation Queries,stackoverflow2
+List the questions asked in 2021 along with their view counts.,Complex Aggregation Queries,stackoverflow2
+How many users have commented on the question with the title 'Neo4j- APOC trigger fires without any reason'?,Complex Aggregation Queries,stackoverflow2
+What are the body markdowns of the top 3 highest scoring answers?,Complex Aggregation Queries,stackoverflow2
+Which user has the highest average score on their provided answers?,Complex Aggregation Queries,stackoverflow2
+List the top 3 most viewed questions that have no answers.,Complex Aggregation Queries,stackoverflow2
+What are the links to the accepted answers for questions asked by 'Mohammed Faraz ali'?,Complex Aggregation Queries,stackoverflow2
+Which tags are linked to the most viewed questions?,Complex Aggregation Queries,stackoverflow2
+List all unique tags used in the dataset.,Complex Aggregation Queries,stackoverflow2
+Display the creation dates of the top 3 questions with the most comments.,Complex Aggregation Queries,stackoverflow2
+Who has provided the most comments across all questions?,Complex Aggregation Queries,stackoverflow2
+List the UUIDs of all comments made on the question titled 'Specify a certain column as id values in Neo4j Spark connector'.,Complex Aggregation Queries,stackoverflow2
+List the top 3 most viewed questions tagged with 'neo4j'.,Verbose query,stackoverflow2
+Which users have asked more than 2 questions? Display the first 5.,Verbose query,stackoverflow2
+Find all the questions asked by 'schernichkin' with more than 100 views.,Verbose query,stackoverflow2
+What are the top 5 highest scoring answers in the database?,Verbose query,stackoverflow2
+Identify the top 3 users by the number of answers provided.,Verbose query,stackoverflow2
+Retrieve the first 5 tags used by questions with accepted answers.,Verbose query,stackoverflow2
+Display the top 3 most commented on questions.,Verbose query,stackoverflow2
+Which questions have more than one answer but less than 50 views? List the first 5.,Verbose query,stackoverflow2
+Show 3 questions with the highest number of answers.,Verbose query,stackoverflow2
+Find the first 5 questions that have no answers.,Verbose query,stackoverflow2
+What are the first 3 most recent questions asked on the platform?,Verbose query,stackoverflow2
+List the top 3 questions with the lowest view counts.,Verbose query,stackoverflow2
+Which 5 users have commented the most times?,Verbose query,stackoverflow2
+Show the first 3 questions that have been both asked and commented on by the same user.,Verbose query,stackoverflow2
+List the top 5 tags most frequently associated with questions having more than 3 answers.,Verbose query,stackoverflow2
+What are the first 5 questions with the highest answer to view ratio?,Verbose query,stackoverflow2
+Display the top 3 tags associated with questions that have accepted answers.,Verbose query,stackoverflow2
+Which 5 users have provided an accepted answer?,Verbose query,stackoverflow2
+Find the top 3 questions with the most comments.,Verbose query,stackoverflow2
+Show the first 5 questions that have been tagged with 'cypher' and have more than one answer.,Verbose query,stackoverflow2
+Retrieve the first 3 users who commented on the most viewed question.,Verbose query,stackoverflow2
+List the top 5 users with the highest average answer score.,Verbose query,stackoverflow2
+What are the top 3 tags used in the most commented questions?,Verbose query,stackoverflow2
+Show the first 5 questions where the same user has asked and provided an answer.,Verbose query,stackoverflow2
+Identify the top 3 users who have provided answers to questions they have also commented on.,Verbose query,stackoverflow2
+Find the first 5 users who have asked the most questions without ever providing an answer.,Verbose query,stackoverflow2
+Display the top 3 questions tagged 'neo4j' with no accepted answers.,Verbose query,stackoverflow2
+Which 5 users have the most comments without any answers?,Verbose query,stackoverflow2
+List the top 3 answers with the highest scores that have not been accepted.,Verbose query,stackoverflow2
+Show the first 5 questions where the accepted answer has a score of zero or less.,Verbose query,stackoverflow2
+Retrieve the top 3 questions with the most recent creation dates.,Verbose query,stackoverflow2
+What are the first 5 questions asked in 2021?,Verbose query,stackoverflow2
+Display the top 3 most viewed questions that have been commented on.,Verbose query,stackoverflow2
+Which 5 users have both asked and answered the same question?,Verbose query,stackoverflow2
+List the top 5 most frequently tagged tags in questions with zero answers.,Verbose query,stackoverflow2
+Identify the first 3 users who commented on their own questions more than once.,Verbose query,stackoverflow2
+Find the top 5 highest viewed questions that have been answered by the same user who asked them.,Verbose query,stackoverflow2
+Show the first 5 questions where the title contains the word 'error'.,Verbose query,stackoverflow2
+What are the top 3 most frequently commented tags?,Verbose query,stackoverflow2
+Display the first 5 questions tagged with 'neo4j' that have more than two answers.,Verbose query,stackoverflow2
+Which 5 questions have the oldest creation dates?,Verbose query,stackoverflow2
+List the top 3 questions with accepted answers that have the lowest scores.,Verbose query,stackoverflow2
+Show the first 5 users who have provided answers but have never asked a question.,Verbose query,stackoverflow2
+Retrieve the top 3 questions where the body markdown contains 'neo4j'.,Verbose query,stackoverflow2
+What are the first 5 questions where the accepted answer was provided by the user who asked the question?,Verbose query,stackoverflow2
+Display the top 3 most frequently commented-on answers.,Verbose query,stackoverflow2
+Which 5 questions have the most tags?,Verbose query,stackoverflow2
+List the first 3 questions where the same user has asked and provided an accepted answer.,Verbose query,stackoverflow2
+Show the top 5 questions with the highest score to comment ratio.,Verbose query,stackoverflow2
+Retrieve the first 5 questions with accepted answers that have a view count over 500.,Verbose query,stackoverflow2
+What are the top 3 questions asked by users with more than 1000 total answers provided?,Verbose query,stackoverflow2
+Display the first 5 questions where the body markdown mentions 'index'.,Verbose query,stackoverflow2
+Which 5 answers were provided by users who have never asked a question?,Verbose query,stackoverflow2
+List the top 3 questions where the accepted answer has a negative score.,Verbose query,stackoverflow2
+Show the first 5 questions that have been tagged more than once.,Verbose query,stackoverflow2
+Retrieve the top 3 oldest answers in the database.,Verbose query,stackoverflow2
+What are the first 5 questions with the most unique tags?,Verbose query,stackoverflow2
+Display the top 3 most active users in terms of asking questions.,Verbose query,stackoverflow2
+Which 5 questions have the most comments and are tagged with 'neo4j'?,Verbose query,stackoverflow2
+List the top 3 answers with the lowest scores.,Verbose query,stackoverflow2
+Show the first 5 questions where the accepted answer was provided by a user who has answered more than 50 questions.,Verbose query,stackoverflow2
+Retrieve the top 3 questions with the most answers during the year 2020.,Verbose query,stackoverflow2
+What are the first 5 questions with the least views and no comments?,Verbose query,stackoverflow2
+Display the top 3 questions that received an answer on the same day they were asked.,Verbose query,stackoverflow2
+Which 5 users have provided the most answers to questions they have never commented on?,Verbose query,stackoverflow2
+List the top 3 questions that have an accepted answer and are tagged with 'cypher'.,Verbose query,stackoverflow2
+Show the first 5 questions where the title contains the word 'update'.,Verbose query,stackoverflow2
+Retrieve the top 3 highest viewed questions that have been answered by users with less than 3 answers in total.,Verbose query,stackoverflow2
+What are the first 5 questions asked by the most recent user to join the platform?,Verbose query,stackoverflow2
+Display the top 3 questions with the most comments made by the user who asked the question.,Verbose query,stackoverflow2
+Which 5 questions have been asked by the most users?,Verbose query,stackoverflow2
+List the top 3 answers with the highest view to score ratio.,Verbose query,stackoverflow2
+Show the first 5 questions asked by users who have commented on more than 100 different questions.,Verbose query,stackoverflow2
+Retrieve the top 3 questions with the most votes.,Verbose query,stackoverflow2
+What are the first 5 questions tagged with 'neo4j' that have received answers from different users?,Verbose query,stackoverflow2
+Display the top 3 most commented questions by a single user.,Verbose query,stackoverflow2
+Which 5 questions have the most comments from users who have provided more than 10 answers?,Verbose query,stackoverflow2
+List the top 3 questions where the answer count is greater than the view count.,Verbose query,stackoverflow2
+Show the first 5 questions that have answers from users who have also asked questions.,Verbose query,stackoverflow2
+Retrieve the top 3 questions with the most detailed body markdown.,Verbose query,stackoverflow2
+What are the first 5 questions where the user who commented also provided an answer?,Verbose query,stackoverflow2
+What are the first 3 games played by the stream 'itsbigchase'?,Simple Retrieval Queries,twitch
+List the top 5 streams that have a total view count greater than 5000000.,Simple Retrieval Queries,twitch
+Which users are moderators for the stream with the name '9linda'?,Simple Retrieval Queries,twitch
+Find the top 3 languages used by streams with more than 1000000 followers.,Simple Retrieval Queries,twitch
+What are the first 3 streams that have a follower count between 20000 and 50000?,Simple Retrieval Queries,twitch
+List the names of the first 5 streams that were created before 2015.,Simple Retrieval Queries,twitch
+Who are the top 3 VIPs in the stream named 'summit1g'?,Simple Retrieval Queries,twitch
+What are the first 3 teams associated with the stream 'itsbigchase'?,Simple Retrieval Queries,twitch
+Which streams are chatters in the stream with the name '9linda'?,Simple Retrieval Queries,twitch
+List the first 5 users who are chatters in more than one stream.,Simple Retrieval Queries,twitch
+Which game is the most commonly played among the top 5 streams by follower count?,Simple Retrieval Queries,twitch
+What are the names of the first 3 users who are both moderators and VIPs for any stream?,Simple Retrieval Queries,twitch
+List the first 5 streams that have the language 'en'.,Simple Retrieval Queries,twitch
+Who are the top 3 moderators for the stream with the highest follower count?,Simple Retrieval Queries,twitch
+What are the first 5 streams created in 2021?,Simple Retrieval Queries,twitch
+List the first 3 users who are VIPs in the stream 'itsbigchase'.,Simple Retrieval Queries,twitch
+Which user has moderated the most streams?,Simple Retrieval Queries,twitch
+What are the first 3 streams that have a description containing the word 'hilarious'?,Simple Retrieval Queries,twitch
+List the top 5 streams with the highest total view count.,Simple Retrieval Queries,twitch
+What are the names of the first 3 languages spoken in streams with a total view count over 10000000?,Simple Retrieval Queries,twitch
+How many unique games are played by streams with more than 500000 followers?,Simple Retrieval Queries,twitch
+List the first 3 games played on streams that were created in 2019.,Simple Retrieval Queries,twitch
+What are the first 5 streams that a user named 'itsbigchase' moderates?,Simple Retrieval Queries,twitch
+Who are the top 3 chatters in the stream named 'summit1g'?,Simple Retrieval Queries,twitch
+List the first 3 games played by streams that have a follower count under 1000.,Simple Retrieval Queries,twitch
+Which streams are part of the team 'ESO Stream Team'?,Simple Retrieval Queries,twitch
+What are the first 5 streams that have been played by more than 5 different users?,Simple Retrieval Queries,twitch
+Who are the top 3 users who chatter in the stream with the highest total view count?,Simple Retrieval Queries,twitch
+List the first 3 games played by streams that have a URL containing 'twitch.tv'.,Simple Retrieval Queries,twitch
+What are the names of the first 5 users who are moderators in the stream '9linda'?,Simple Retrieval Queries,twitch
+How many streams have a follower count between 10000 and 50000?,Simple Retrieval Queries,twitch
+List the first 3 streams that have a description mentioning 'game'.,Simple Retrieval Queries,twitch
+Which streams have the user 'itsbigchase' as a VIP?,Simple Retrieval Queries,twitch
+List the top 5 games played by the streams created in the first half of 2020.,Simple Retrieval Queries,twitch
+What are the first 3 languages used by streams with a follower count of exactly 33366?,Simple Retrieval Queries,twitch
+Who are the top 3 VIPs in the streams that were created in 2018?,Simple Retrieval Queries,twitch
+List the first 5 streams that play the game 'Rust'.,Simple Retrieval Queries,twitch
+Which teams are associated with the top 3 streams by total view count?,Simple Retrieval Queries,twitch
+What are the first 3 streams that have a user named 'itsbigchase' as a chatter?,Simple Retrieval Queries,twitch
+List the names of the first 5 users who are chatters in the stream 'summit1g'.,Simple Retrieval Queries,twitch
+Which streams are chatters in the stream with the most followers?,Simple Retrieval Queries,twitch
+List the first 5 users who are moderators in streams that play 'Grand Theft Auto V'.,Simple Retrieval Queries,twitch
+What are the names of the first 3 games played by streams that have a URL ending in 'itsbigchase'?,Simple Retrieval Queries,twitch
+Who are the top 3 users who are VIPs in the stream with the name '9linda'?,Simple Retrieval Queries,twitch
+List the first 5 streams that have been VIP in more than one stream.,Simple Retrieval Queries,twitch
+Which streams have a language named after a country code 'en'?,Simple Retrieval Queries,twitch
+"List the first 3 streams that were created on or before January 1, 2010.",Simple Retrieval Queries,twitch
+What are the first 5 streams that have the most chatters?,Simple Retrieval Queries,twitch
+Who are the top 3 moderators in the stream with the lowest follower count?,Simple Retrieval Queries,twitch
+List the first 5 streams that have a follower count exactly 5898590.,Simple Retrieval Queries,twitch
+What are the names of the first 3 languages spoken by the stream 'itsbigchase'?,Simple Retrieval Queries,twitch
+Which streams have more than 5000000 followers?,Complex Retrieval Queries,twitch
+List the top 5 streams by total view count.,Complex Retrieval Queries,twitch
+What are the names of games played by streams with more than 1 million total views?,Complex Retrieval Queries,twitch
+Which streams have moderators who are also users?,Complex Retrieval Queries,twitch
+Identify the streams that are part of the 'ESO Stream Team'.,Complex Retrieval Queries,twitch
+Which users are VIPs in more than one stream?,Complex Retrieval Queries,twitch
+What languages are used by streams that have over 10000 followers?,Complex Retrieval Queries,twitch
+Find streams that were created after 2015 and have at least one chatter who is a user.,Complex Retrieval Queries,twitch
+Can you list streams that have a follower count between 1000 and 5000?,Complex Retrieval Queries,twitch
+What are the names of teams associated with streams created before 2018?,Complex Retrieval Queries,twitch
+Which games are played by the top 3 streams based on followers count?,Complex Retrieval Queries,twitch
+Which users are moderators in at least two different streams?,Complex Retrieval Queries,twitch
+What are the names of streams that play 'Rust' and have more than 5000 followers?,Complex Retrieval Queries,twitch
+How many streams have a moderator who is also a stream?,Complex Retrieval Queries,twitch
+List all streams that have a VIP who is a user.,Complex Retrieval Queries,twitch
+Name the languages spoken in streams with a total view count exceeding 10 million.,Complex Retrieval Queries,twitch
+Who are the moderators of the stream named 'summit1g'?,Complex Retrieval Queries,twitch
+Identify streams that have more than one language associated with them.,Complex Retrieval Queries,twitch
+Which users are chatters in more than three streams?,Complex Retrieval Queries,twitch
+List the streams that have the most followers who also play 'Grand Theft Auto V'.,Complex Retrieval Queries,twitch
+Which streams were created in 2019 and have a description longer than 50 characters?,Complex Retrieval Queries,twitch
+Find the streams that are moderated by users named 'itsbigchase'.,Complex Retrieval Queries,twitch
+What are the top 3 games played by streams with a total view count less than 500000?,Complex Retrieval Queries,twitch
+Who are the VIP users in streams that have over 1000000 followers?,Complex Retrieval Queries,twitch
+List the names of streams that have both English and Russian languages associated.,Complex Retrieval Queries,twitch
+List the top 5 streams with the highest follower count.,Simple Aggregation Queries,twitch
+Which 3 games are the most played by streams with over 1 million followers?,Simple Aggregation Queries,twitch
+Find the top 5 streams with the most total view count that use English language.,Simple Aggregation Queries,twitch
+Which 3 users are moderators for the most streams?,Simple Aggregation Queries,twitch
+What are the top 3 most common games played by streams created before 2010?,Simple Aggregation Queries,twitch
+List the 3 teams with the most associated streams.,Simple Aggregation Queries,twitch
+Which 3 streams have the highest number of VIP users?,Simple Aggregation Queries,twitch
+What are the names of the top 5 oldest teams in the graph?,Simple Aggregation Queries,twitch
+"List the top 3 languages used by streams with over 10,000 followers.",Simple Aggregation Queries,twitch
+Who are the top 3 users who chatter the most with other users?,Simple Aggregation Queries,twitch
+List the 3 streams with the lowest follower count but with over 1 million total views.,Simple Aggregation Queries,twitch
+What are the top 3 games played by streams that also have a moderator relationship with a user?,Simple Aggregation Queries,twitch
+Which 3 users have VIP status on the most streams?,Simple Aggregation Queries,twitch
+List the top 5 streams that have created the most chatter relationships.,Simple Aggregation Queries,twitch
+Which 3 games are mostly played by streams with a total view count exceeding 100 million?,Simple Aggregation Queries,twitch
+Find the top 5 users who moderate the highest number of other users.,Simple Aggregation Queries,twitch
+What are the 3 most common languages for streams that have been created after 2015?,Simple Aggregation Queries,twitch
+List the top 5 streams with the most chatter interactions.,Simple Aggregation Queries,twitch
+Which 3 teams were created most recently?,Simple Aggregation Queries,twitch
+Find the 3 streams that play the least common games based on follower count.,Simple Aggregation Queries,twitch
+Which 3 users have the highest number of chatter relationships?,Simple Aggregation Queries,twitch
+List the top 5 oldest streams in the graph.,Simple Aggregation Queries,twitch
+What are the top 3 most viewed games by streams that have a team?,Simple Aggregation Queries,twitch
+Which 3 streams have the most moderators?,Simple Aggregation Queries,twitch
+List the 3 languages spoken by the least number of streams.,Simple Aggregation Queries,twitch
+Which 3 users have moderated the most streams and users combined?,Simple Aggregation Queries,twitch
+List the 3 streams with the highest number of VIP relationships.,Simple Aggregation Queries,twitch
+Find the top 5 games played by streams that also chatter with other streams.,Simple Aggregation Queries,twitch
+What are the top 3 most recent streams to reach over 1 million followers?,Simple Aggregation Queries,twitch
+Which 3 users are VIPs on the most diverse set of streams?,Simple Aggregation Queries,twitch
+Which streams have a total view count over 1 million?,Pathfinding Queries,twitch
+List the games that have been played by more than five different streams.,Pathfinding Queries,twitch
+What are the names of users who are moderators for more than three streams?,Pathfinding Queries,twitch
+Identify streams that have moderators who are also VIPs.,Pathfinding Queries,twitch
+Which streams are part of a team created before 2015?,Pathfinding Queries,twitch
+What are the top 5 languages used by streams with more than 10000 followers?,Pathfinding Queries,twitch
+Which streams have chatters who are also moderators?,Pathfinding Queries,twitch
+How many streams have played the game 'Rust'?,Pathfinding Queries,twitch
+List all teams associated with streams having more than 50000 followers.,Pathfinding Queries,twitch
+What are the descriptions of streams that play 'Call of Duty: Warzone'?,Pathfinding Queries,twitch
+Which users are VIPs on at least two different streams?,Pathfinding Queries,twitch
+Find streams that have a follower count between 1000 and 5000.,Pathfinding Queries,twitch
+List the top 5 streams with the highest follower counts.,Pathfinding Queries,twitch
+Which games are played by streams that also have an 'en' language setting?,Pathfinding Queries,twitch
+Find streams that are moderated by users who are also chatters.,Pathfinding Queries,twitch
+What is the URL of the stream with the highest total view count?,Pathfinding Queries,twitch
+List all languages spoken on streams with a total view count over 500000.,Pathfinding Queries,twitch
+Which users are chatters on more than five different streams?,Pathfinding Queries,twitch
+Find streams that have VIP relationships with more than three users.,Pathfinding Queries,twitch
+What are the names of teams associated with streams created after 2018?,Pathfinding Queries,twitch
+How many streams have a description containing the word 'strategy'?,Pathfinding Queries,twitch
+"Which streams have the longest moderator chains (a moderator, who is also a moderator, and so on)?",Pathfinding Queries,twitch
+Identify the streams that have the most moderators.,Pathfinding Queries,twitch
+List the games played by streams with the lowest follower counts.,Pathfinding Queries,twitch
+Which streams are part of the team 'ESO Stream Team'?,Pathfinding Queries,twitch
+List the top 5 users who are chatters in the most streams.,Pathfinding Queries,twitch
+Identify streams where the same user is both a chatter and a moderator.,Pathfinding Queries,twitch
+Which streams have chatters who have less than 1000 followers?,Pathfinding Queries,twitch
+How many users have VIP status in more than one stream?,Pathfinding Queries,twitch
+Find streams that play 'Rust' and have more than 10000 followers.,Pathfinding Queries,twitch
+List the top 5 streams with the highest number of followers.,Complex Aggregation Queries,twitch
+Which 3 games have the most streams associated with them?,Complex Aggregation Queries,twitch
+"What are the top 5 languages used by streams with more than 100,000 followers?",Complex Aggregation Queries,twitch
+Identify the first 3 teams that were created in the database.,Complex Aggregation Queries,twitch
+Which 3 users are moderators for the most number of streams?,Complex Aggregation Queries,twitch
+Find the top 5 streams with the highest total view count.,Complex Aggregation Queries,twitch
+What are the names of the top 3 streams that have a VIP user?,Complex Aggregation Queries,twitch
+List the top 5 streams that play 'Rust' and have more than 5000 followers.,Complex Aggregation Queries,twitch
+Which 3 streams have the most chatter relationships?,Complex Aggregation Queries,twitch
+Which 3 users have VIP status in the most streams?,Complex Aggregation Queries,twitch
+What are the top 5 oldest streams based on the 'createdAt' property?,Complex Aggregation Queries,twitch
+Find the first 3 languages that are most frequently associated with streams.,Complex Aggregation Queries,twitch
+What are the top 5 streams with the longest descriptions?,Complex Aggregation Queries,twitch
+List the top 5 games played by streams with over 1 million total views.,Complex Aggregation Queries,twitch
+Which 3 users are chatters in the most number of different streams?,Complex Aggregation Queries,twitch
+What are the top 5 teams by the number of streams they are associated with?,Complex Aggregation Queries,twitch
+Which 3 streams have the most moderators?,Complex Aggregation Queries,twitch
+List the top 5 streams that have a 'createdAt' date after 2019.,Complex Aggregation Queries,twitch
+What are the top 3 most common games played by streams with a 'ru' language setup?,Complex Aggregation Queries,twitch
+Which 3 streams have the highest follower count but the lowest total view count?,Complex Aggregation Queries,twitch
+Identify the top 5 streams that have users as VIPs.,Complex Aggregation Queries,twitch
+What are the names of the first 3 streams moderated by 'itsbigchase'?,Complex Aggregation Queries,twitch
+List the 3 games most commonly played by streams with an English language setup.,Complex Aggregation Queries,twitch
+Which 3 streams have the highest ratio of followers to total view count?,Complex Aggregation Queries,twitch
+Find the top 5 streams by oldest to newest based on the 'createdAt' property.,Complex Aggregation Queries,twitch
+"Which 3 languages are least common among streams with more than 10,000 followers?",Complex Aggregation Queries,twitch
+List the top 5 users who have the role of chatter in the highest number of other user's streams.,Complex Aggregation Queries,twitch
+What are the three most common teams that streams belong to?,Complex Aggregation Queries,twitch
+Which streams have a VIP relationship with more than three different users?,Complex Aggregation Queries,twitch
+List the top 5 streams that have been added to the most teams.,Complex Aggregation Queries,twitch
+"What are the first 3 streams to play 'Rust' with more than 100,000 total views?",Complex Aggregation Queries,twitch
+Which 3 users have served as moderators for the oldest streams in the database?,Complex Aggregation Queries,twitch
+List the top 5 streams that are part of a team created before 2015.,Complex Aggregation Queries,twitch
+What are the names of the first 3 streams that have a moderator with more than 5000 followers?,Complex Aggregation Queries,twitch
+Which 3 streams have the most unique games played?,Complex Aggregation Queries,twitch
+List the top 5 streams that have had more than three different languages associated with them.,Complex Aggregation Queries,twitch
+"What are the first 3 users who are VIPs in streams with more than 10,000 total views?",Complex Aggregation Queries,twitch
+List the top 5 oldest teams based on the 'createdAt' property.,Complex Aggregation Queries,twitch
+Which 3 streams have the most users as chatters?,Complex Aggregation Queries,twitch
+List the first 3 games played by streams with the highest follower counts.,Complex Aggregation Queries,twitch
+What are the top 5 streams that have VIP relationships with other streams?,Complex Aggregation Queries,twitch
+Which 3 users have the most moderator relationships with other users?,Complex Aggregation Queries,twitch
+List the top 5 streams that have chatters with more than 5000 followers.,Complex Aggregation Queries,twitch
+What are the first 3 streams that have a language setup other than 'en' or 'ru'?,Complex Aggregation Queries,twitch
+Which 3 streams have the most complex descriptions based on word count?,Complex Aggregation Queries,twitch
+"List the top 5 games associated with streams that have more than 10,000 total views.",Complex Aggregation Queries,twitch
+Which 3 users are VIPs in the most number of different users' streams?,Complex Aggregation Queries,twitch
+List the first 3 streams that were created after 2020.,Complex Aggregation Queries,twitch
+"What are the top 5 teams by number of associated streams with over 10,000 followers?",Complex Aggregation Queries,twitch
+Which 3 languages are associated with the streams that have the least followers?,Complex Aggregation Queries,twitch
+List the top 5 streams that have the most number of languages associated.,Complex Aggregation Queries,twitch
+What are the first 3 streams that have a chatter with a description longer than 50 words?,Complex Aggregation Queries,twitch
+"Which 3 streams have the least followers but are associated with a game with more than 100,000 total views?",Complex Aggregation Queries,twitch
+List the top 5 streams with the most complex URLs.,Complex Aggregation Queries,twitch
+What are the first 3 streams to have a team relationship with 'ESO Stream Team'?,Complex Aggregation Queries,twitch
+Which 3 streams have the most VIP users who also have more than 5000 followers?,Complex Aggregation Queries,twitch
+List the top 5 users who are moderators in the most number of streams with an 'en' language setup.,Complex Aggregation Queries,twitch
+What are the top 5 oldest streams by the 'createdAt' property that are still active?,Complex Aggregation Queries,twitch
+Which 3 games are played by streams with the highest ratio of followers to total view counts?,Complex Aggregation Queries,twitch
+List the first 3 streams that were created in 2018.,Complex Aggregation Queries,twitch
+What are the top 5 languages associated with streams that have the most moderators?,Complex Aggregation Queries,twitch
+Which 3 streams have the most users as VIPs?,Complex Aggregation Queries,twitch
+List the top 5 streams that are associated with teams and have more than 10000 followers.,Complex Aggregation Queries,twitch
+What are the first 3 streams that have a chatter who is also a moderator?,Complex Aggregation Queries,twitch
+List the first 3 streams that have a language set to 'en'.,Verbose query,twitch
+What are the top 5 games played by streams with more than 5000 followers?,Verbose query,twitch
+Which streams have a total view count above 1 million and are associated with the 'ESO Stream Team'?,Verbose query,twitch
+Identify the first 3 users who are moderators for streams with a description containing 'Belarus'.,Verbose query,twitch
+Find the top 5 streams that are playing the game 'Rust'.,Verbose query,twitch
+List the first 3 streams that have at least one VIP who is also a user.,Verbose query,twitch
+What are the first 3 streams that have a language set to 'ru'?,Verbose query,twitch
+"Which users are VIPs in streams with a total view count exceeding 500,000?",Verbose query,twitch
+"What are the top 5 games played by streams created after January 1, 2015?",Verbose query,twitch
+Identify the first 3 streams that have moderators with a follower count over 1000.,Verbose query,twitch
+List the top 5 most followed streams that are linked to the language 'en'.,Verbose query,twitch
+Which streams have a follower count between 1000 and 5000 and play the game 'Rust'?,Verbose query,twitch
+Find the first 3 users who are moderators of more than one stream.,Verbose query,twitch
+What are the top 5 streams with the highest total view count and are associated with the 'ESO Stream Team'?,Verbose query,twitch
+Identify the first 3 languages associated with streams that have a description containing 'coverage'.,Verbose query,twitch
+List the first 3 streams that have chatters who are also streams.,Verbose query,twitch
+"Which streams have a total view count below 50,000 and are associated with the language 'ru'?",Verbose query,twitch
+"Identify the first 3 teams that are linked to streams with over 10,000 followers.",Verbose query,twitch
+What are the top 5 streams created before 2010?,Verbose query,twitch
+List the first 3 streams that have VIPs who are users with a name containing 'chase'.,Verbose query,twitch
+Which users are chatters in streams with a description containing 'inclusive'?,Verbose query,twitch
+Identify the first 3 streams that have moderators named 'itsbigchase'.,Verbose query,twitch
+List the top 5 streams with the lowest follower count that play the game 'Rust'.,Verbose query,twitch
+What are the first 3 streams with the most VIPs linked to them?,Verbose query,twitch
+Which streams have at least one user named 'itsbigchase' as a chatter?,Verbose query,twitch
+Identify the first 3 users who are VIPs in streams with a name containing 'big'.,Verbose query,twitch
+"List the top 5 streams that have chatters with a total view count over 10,000.",Verbose query,twitch
+"Which streams have a follower count above 10,000 and are associated with a game named 'Rust'?",Verbose query,twitch
+Identify the first 3 streams that play a game and have a VIP who is a user.,Verbose query,twitch
+List the first 3 streams that are linked to the game 'Rust' and have been created after 2018.,Verbose query,twitch
+What are the top 5 most viewed streams that have a language set to 'en'?,Verbose query,twitch
+Which streams have a description containing 'premiere' and have at least 5000 followers?,Verbose query,twitch
+Identify the first 3 streams that have chatters who are users with a follower count below 3000.,Verbose query,twitch
+List the top 5 streams that are linked to teams created before 2015.,Verbose query,twitch
+What are the first 3 streams with a moderator named 'itsbigchase'?,Verbose query,twitch
+Which streams are played by users with a name containing 'doduik' and have a total view count above 3000?,Verbose query,twitch
+Identify the first 3 streams that have a language set to 'ru' and a moderator with a follower count above 5000.,Verbose query,twitch
+List the top 5 streams that have at least one user as a chatter and are associated with the game 'Rust'.,Verbose query,twitch
+What are the first 3 streams that have a team with a creation date after 2015?,Verbose query,twitch
+Which streams have a total view count above 1 million and a moderator named 'creightonolsen'?,Verbose query,twitch
+Identify the first 3 streams that have chatters who are streams created before 2017.,Verbose query,twitch
+List the top 5 streams with moderators who are users and have a follower count above 2000.,Verbose query,twitch
+What are the first 3 streams that have a VIP named 'itsbigchase'?,Verbose query,twitch
+"Which streams have a total view count below 10,000 and are linked to a language named 'en'?",Verbose query,twitch
+Identify the first 3 streams that play a game named 'Rust' and have a VIP who is a user.,Verbose query,twitch
+List the top 5 streams that have chatters named 'itsbigchase'.,Verbose query,twitch
+What are the first 3 streams that were created after 2015 and have a follower count above 1000?,Verbose query,twitch
+Which streams have a follower count exceeding 2000 and are playing a game named 'Rust'?,Verbose query,twitch
+"Identify the first 3 users who are moderators for streams with a total view count exceeding 500,000.",Verbose query,twitch
+List the top 5 streams with the most chatters who are users.,Verbose query,twitch
+What are the first 3 streams that have a language set to 'en' and a VIP who is a user?,Verbose query,twitch
+"Which streams have a description containing 'casual play' and a total view count above 100,000?",Verbose query,twitch
+Identify the first 3 streams that have a team named 'ESO Stream Team' and a follower count below 5000.,Verbose query,twitch
+List the top 5 streams that have a moderator named 'itsbigchase' and were created before 2018.,Verbose query,twitch
+"What are the first 3 streams with a language named 'ru' and a total view count below 10,000?",Verbose query,twitch
+Which users follow 'Neo4j'?,Simple Retrieval Queries,twitter
+List all tweets tagged with the hashtag 'education'.,Simple Retrieval Queries,twitter
+Find all users who have more than 30000 followers.,Simple Retrieval Queries,twitter
+What are the profile image URLs of users located in 'Graphs Are Everywhere'?,Simple Retrieval Queries,twitter
+Retrieve the top 5 most recent tweets.,Simple Retrieval Queries,twitter
+Which users are mentioned in the tweet with ID 1371846247913512966?,Simple Retrieval Queries,twitter
+List all users who follow 'Neo4j' and have a betweenness greater than 1000000.,Simple Retrieval Queries,twitter
+What are the URLs of the links contained in tweets from 'Neo4j'?,Simple Retrieval Queries,twitter
+Show the top 3 users with the highest number of statuses.,Simple Retrieval Queries,twitter
+Find all tweets that retweet the tweet with ID 690028662083612672.,Simple Retrieval Queries,twitter
+Which users are similar to 'Neo4j' with a similarity score above 0.5?,Simple Retrieval Queries,twitter
+List the names of users who have interacted with 'Neo4j'.,Simple Retrieval Queries,twitter
+How many users does 'Neo4j' follow?,Simple Retrieval Queries,twitter
+Display tweets that use the source named 'Buffer'.,Simple Retrieval Queries,twitter
+Find all tweets posted by 'Neo4j' between January and February 2021.,Simple Retrieval Queries,twitter
+What are the names of all hashtags used in tweets from 'Neo4j'?,Simple Retrieval Queries,twitter
+List all tweets that reply to the tweet with ID 1371815021265747970.,Simple Retrieval Queries,twitter
+Which users are amplified by 'Me'?,Simple Retrieval Queries,twitter
+Retrieve the top 5 tweets with the most favorites.,Simple Retrieval Queries,twitter
+Show all users followed by 'Me' with more than 10000 followers.,Simple Retrieval Queries,twitter
+How many followers does the user with screen name 'neo4j' have?,Simple Retrieval Queries,twitter
+What is the location of the user with the highest betweenness value?,Simple Retrieval Queries,twitter
+List the screen names of users who follow at least 100 other users.,Simple Retrieval Queries,twitter
+Which users have posted tweets containing the link 'https://twitter.com/i/web/status/13718150212657479'?,Simple Retrieval Queries,twitter
+Retrieve the top 3 users sorted by their following count in descending order.,Simple Retrieval Queries,twitter
+Identify the users who are mentioned and retweeted in the same tweet.,Simple Retrieval Queries,twitter
+Find tweets that mention 'Neo4j' and are tagged with 'education'.,Simple Retrieval Queries,twitter
+Show the sources used by tweets that mention 'Neo4j'.,Simple Retrieval Queries,twitter
+What is the text of the most favorited tweet?,Simple Retrieval Queries,twitter
+List all users retweeted by 'Me'.,Simple Retrieval Queries,twitter
+List the top 5 users by number of followers.,Complex Retrieval Queries,twitter
+Which users have more than 10000 followers and less than 15000 statuses?,Complex Retrieval Queries,twitter
+Find the top 3 tweets with the highest number of favorites.,Complex Retrieval Queries,twitter
+Who are the top 5 most followed users that Neo4j follows?,Complex Retrieval Queries,twitter
+List 3 users who follow Neo4j and have a location specified as 'Graphs Are Everywhere'.,Complex Retrieval Queries,twitter
+What are the names of the top 5 users with the highest betweenness centrality?,Complex Retrieval Queries,twitter
+Identify 5 users who follow more than 5000 users but have fewer than 10000 followers.,Complex Retrieval Queries,twitter
+Find 3 tweets that contain links and were created in 2021.,Complex Retrieval Queries,twitter
+Which 5 users are most similar to Neo4j based on the SIMILAR_TO score?,Complex Retrieval Queries,twitter
+List the top 3 hashtags used in tweets posted by users from 'Graphs Are Everywhere'.,Complex Retrieval Queries,twitter
+What are the top 3 sources used in the tweets that mention Neo4j?,Complex Retrieval Queries,twitter
+Who are the 5 users with the most interactions with other users?,Complex Retrieval Queries,twitter
+List the top 3 tweets that retweet content from Neo4j.,Complex Retrieval Queries,twitter
+Which 3 users amplified Neo4j the most?,Complex Retrieval Queries,twitter
+Find the top 5 tweets by Neo4j that have been retweeted and mention another user.,Complex Retrieval Queries,twitter
+Who are the top 3 users that Neo4j has retweeted mentions from?,Complex Retrieval Queries,twitter
+List 3 users who have posted tweets tagging the hashtag 'education'.,Complex Retrieval Queries,twitter
+Which 3 tweets posted by Neo4j have the most replies?,Complex Retrieval Queries,twitter
+Identify the top 5 tweets that mention Neo4j and contain a link.,Complex Retrieval Queries,twitter
+What are the 3 most common hashtags in tweets that have been retweeted more than 100 times?,Complex Retrieval Queries,twitter
+List the tweets containing the link 'https://twitter.com/i/web/status/13718150212657479' and were created in March 2021.,Complex Retrieval Queries,twitter
+Which 3 users have the most followers among those who have interacted with Neo4j?,Complex Retrieval Queries,twitter
+Identify the top 5 tweets with texts containing the word 'education'.,Complex Retrieval Queries,twitter
+Find the 3 most recent tweets by Neo4j.,Complex Retrieval Queries,twitter
+Which 3 users with the highest betweenness have tweeted about 'education'?,Complex Retrieval Queries,twitter
+List the top 3 sources used by tweets mentioning 'Neo4j' and containing a hashtag.,Complex Retrieval Queries,twitter
+Who are the top 5 users followed by Neo4j that have tweeted more than 1000 times?,Complex Retrieval Queries,twitter
+Find the top 3 users who amplified tweets by Neo4j and have a high betweenness score.,Complex Retrieval Queries,twitter
+Which 3 tweets by Neo4j have the most favorites and were posted in 2020?,Complex Retrieval Queries,twitter
+List the 3 tweets by Neo4j that have been retweeted by users with more than 10000 followers.,Complex Retrieval Queries,twitter
+What are the names of the top 5 users with the highest betweenness?,Simple Aggregation Queries,twitter
+List the screen names of the first 3 users who have the most followers.,Simple Aggregation Queries,twitter
+Who are the top 5 users based on the number of statuses they have posted?,Simple Aggregation Queries,twitter
+Identify the top 3 users by the number of people they are following.,Simple Aggregation Queries,twitter
+Who are the three users with the most mentions in tweets?,Simple Aggregation Queries,twitter
+List the first 5 tweets with the highest number of favorites.,Simple Aggregation Queries,twitter
+What are the top 3 sources used most frequently in tweets?,Simple Aggregation Queries,twitter
+Which 5 users have posted the most tweets?,Simple Aggregation Queries,twitter
+Identify the top 3 hashtags used in tweets.,Simple Aggregation Queries,twitter
+What are the top 5 most recent tweets based on the creation date?,Simple Aggregation Queries,twitter
+List the URLs of the top 3 tweets containing links.,Simple Aggregation Queries,twitter
+Who are the top 3 users most similar to 'Neo4j' based on the SIMILAR_TO score?,Simple Aggregation Queries,twitter
+What are the first 3 locations where the most users are based?,Simple Aggregation Queries,twitter
+List the top 5 tweets that have been retweeted the most times.,Simple Aggregation Queries,twitter
+Which 5 tweets have the most replies?,Simple Aggregation Queries,twitter
+Identify the top 3 users who have amplified the most tweets.,Simple Aggregation Queries,twitter
+Who are the top 5 users mentioned in the most tweets?,Simple Aggregation Queries,twitter
+List the first 3 tweets that mention the user with the highest betweenness.,Simple Aggregation Queries,twitter
+What are the names of the top 5 users interacting most frequently with others?,Simple Aggregation Queries,twitter
+Identify the top 3 tweets with links pointing to 'https://twitter.com'.,Simple Aggregation Queries,twitter
+Which 5 tweets contain the hashtag 'education'?,Simple Aggregation Queries,twitter
+"List the top 5 tweets by the total interaction (mentions, retweets, replies).",Simple Aggregation Queries,twitter
+Who are the first 3 users followed by 'Neo4j'?,Simple Aggregation Queries,twitter
+What are the top 3 most common tweet sources for the user 'neo4j'?,Simple Aggregation Queries,twitter
+Identify the top 5 users with the most similar profiles to 'Neo4j' based on betweenness and following.,Simple Aggregation Queries,twitter
+Which 3 tweets have the highest aggregation of favorites and retweets?,Simple Aggregation Queries,twitter
+List the top 5 users who mostly tweet about 'education'.,Simple Aggregation Queries,twitter
+What are the top 3 most used hashtags in tweets by 'Neo4j'?,Simple Aggregation Queries,twitter
+Identify the top 5 tweets mentioning 'Neo4j' with the greatest number of favorites.,Simple Aggregation Queries,twitter
+Who are the first 5 users retweeted by 'Neo4j'?,Simple Aggregation Queries,twitter
+Which users have a betweenness higher than 300000000?,Pathfinding Queries,twitter
+List all users who follow 'neo4j'.,Pathfinding Queries,twitter
+Which tweets mention the user with the screen name 'neo4j'?,Pathfinding Queries,twitter
+Find the top 5 most recent tweets by 'neo4j'.,Pathfinding Queries,twitter
+What are the top 3 hashtags used by 'neo4j' in their tweets?,Pathfinding Queries,twitter
+Who are the top 5 followers of 'neo4j' by number of followers?,Pathfinding Queries,twitter
+List all the sources used by 'neo4j' for tweeting.,Pathfinding Queries,twitter
+Which users are followed by 'neo4j' and have more than 10000 followers?,Pathfinding Queries,twitter
+Find tweets that contain links and were posted by 'neo4j'.,Pathfinding Queries,twitter
+Who does 'neo4j' interact with most frequently?,Pathfinding Queries,twitter
+List the top 3 users similar to 'neo4j' by similarity score.,Pathfinding Queries,twitter
+Which users have retweeted 'neo4j''s tweets the most?,Pathfinding Queries,twitter
+List the top 5 tweets by 'neo4j' with the most favorites.,Pathfinding Queries,twitter
+Who are the top 3 users amplified by 'Me'?,Pathfinding Queries,twitter
+List all tweets that 'neo4j' has replied to.,Pathfinding Queries,twitter
+Which users follow 'neo4j' and are located in 'Graphs Are Everywhere'?,Pathfinding Queries,twitter
+What are the profile URLs of the top 3 users followed by 'neo4j'?,Pathfinding Queries,twitter
+Which users mentioned by 'neo4j' in tweets have the highest betweenness?,Pathfinding Queries,twitter
+List the top 3 tweets with hashtags posted by 'neo4j'.,Pathfinding Queries,twitter
+Which users following 'neo4j' have tweeted about 'education'?,Pathfinding Queries,twitter
+"Who are the top 3 users that 'neo4j' interacts with, sorted by interaction frequency?",Pathfinding Queries,twitter
+Which tweets by 'neo4j' contain the hashtag 'education'?,Pathfinding Queries,twitter
+List all the links contained in tweets posted by 'neo4j'.,Pathfinding Queries,twitter
+What are the profile image URLs of users who follow 'neo4j'?,Pathfinding Queries,twitter
+Which users followed by 'neo4j' have the highest betweenness values?,Pathfinding Queries,twitter
+Find the top 3 tweets with the most retweets made by 'neo4j'.,Pathfinding Queries,twitter
+How many users does 'neo4j' amplify?,Pathfinding Queries,twitter
+Which tweets made by 'neo4j' were retweeted by users with more than 10000 followers?,Pathfinding Queries,twitter
+List the top 5 users who have mentioned 'neo4j' in their tweets.,Pathfinding Queries,twitter
+What are the locations of the top 3 users who interact with 'neo4j'?,Pathfinding Queries,twitter
+Find the top 5 tweets mentioning 'neo4j' with the most favorites.,Pathfinding Queries,twitter
+Which tweets by 'neo4j' use the source named 'Buffer'?,Pathfinding Queries,twitter
+List all the hashtags used in tweets that mention 'neo4j'.,Pathfinding Queries,twitter
+Which users followed by 'neo4j' also follow 'Me'?,Pathfinding Queries,twitter
+Find the tweets where 'neo4j' has been mentioned by users with more than 10000 followers.,Pathfinding Queries,twitter
+List the URLs of tweets posted by 'neo4j' that contain links.,Pathfinding Queries,twitter
+What are the names of the top 3 users with the most followers who follow 'neo4j'?,Pathfinding Queries,twitter
+Find the top 5 users who have retweeted tweets made by 'neo4j'.,Pathfinding Queries,twitter
+List all the tweets by 'neo4j' that reply to another tweet.,Pathfinding Queries,twitter
+Who are the users that 'neo4j' mentions most frequently in their tweets?,Pathfinding Queries,twitter
+Which tweets by 'neo4j' have been retweeted and also contain a link?,Pathfinding Queries,twitter
+List the top 3 most followed users who mention 'neo4j' in their tweets.,Pathfinding Queries,twitter
+Which users followed by 'neo4j' have tweeted the most?,Pathfinding Queries,twitter
+Find the top 5 tweets by 'neo4j' tagged with a hashtag.,Pathfinding Queries,twitter
+Who are the top 3 users that 'neo4j' has the highest similarity scores with?,Pathfinding Queries,twitter
+What are the most common locations of users who follow 'neo4j'?,Pathfinding Queries,twitter
+Which tweets by 'neo4j' have the highest number of favorites?,Pathfinding Queries,twitter
+List the tweets by 'neo4j' that have been retweeted by more than 5 different users.,Pathfinding Queries,twitter
+Who are the top 5 users that follow both 'neo4j' and 'Me'?,Pathfinding Queries,twitter
+Find the top 3 tweets that mention 'neo4j' and are tagged with 'education'.,Pathfinding Queries,twitter
+List the top 5 users with the highest number of followers.,Complex Aggregation Queries,twitter
+Which three users have tweeted the most as of the latest date in the dataset?,Complex Aggregation Queries,twitter
+Identify the top 5 tweets with the highest favorite counts.,Complex Aggregation Queries,twitter
+What are the names of the top 3 users who have a betweenness greater than 300000000?,Complex Aggregation Queries,twitter
+Which three tweets have the most mentions of other users?,Complex Aggregation Queries,twitter
+List the top 5 most recent tweets based on the 'created_at' date.,Complex Aggregation Queries,twitter
+What are the three most commonly used hashtags in tweets?,Complex Aggregation Queries,twitter
+Identify the top 5 users based on the number of posts they have made.,Complex Aggregation Queries,twitter
+Which three users are most similar to 'Neo4j' based on the 'SIMILAR_TO' score?,Complex Aggregation Queries,twitter
+List the URLs of the top 5 most linked-to external sites in tweets.,Complex Aggregation Queries,twitter
+What are the names of the top 3 sources most used in tweeting?,Complex Aggregation Queries,twitter
+Which three users have the highest 'betweenness' metric in the network?,Complex Aggregation Queries,twitter
+Find the top 5 hashtags mentioned by 'Neo4j'.,Complex Aggregation Queries,twitter
+Who are the top 3 users that 'Neo4j' follows?,Complex Aggregation Queries,twitter
+List the screen names of the top 5 users followed by the most number of other users.,Complex Aggregation Queries,twitter
+Which three tweets have the highest retweet counts?,Complex Aggregation Queries,twitter
+Identify the top 5 users who are followed by 'Neo4j'.,Complex Aggregation Queries,twitter
+What are the top 3 locations where the most active users are based?,Complex Aggregation Queries,twitter
+Which three tweets contain the word 'graph' in their text?,Complex Aggregation Queries,twitter
+List the top 5 tweets which mention the user with the highest followers.,Complex Aggregation Queries,twitter
+Who are the top 3 users that have interacted the most with 'Neo4j'?,Complex Aggregation Queries,twitter
+Identify the URLs of the top 5 tweets retweeted by 'Neo4j'.,Complex Aggregation Queries,twitter
+What are the names of the top 3 hashtags used in tweets about technology?,Complex Aggregation Queries,twitter
+Which three users have posted the most about 'education'?,Complex Aggregation Queries,twitter
+"List the top 5 most active users based on total social interactions (follows, mentions, retweets).",Complex Aggregation Queries,twitter
+Who are the top 3 users that 'Neo4j' has retweeted?,Complex Aggregation Queries,twitter
+Identify the top 5 tweets linking to the most popular external sources.,Complex Aggregation Queries,twitter
+What are the top 3 external sources linked in tweets about software?,Complex Aggregation Queries,twitter
+Which three tweets have the highest replies?,Complex Aggregation Queries,twitter
+List the top 5 tweets by 'Neo4j' based on favorite counts.,Complex Aggregation Queries,twitter
+What are the top 5 users with the highest betweenness scores?,Verbose query,twitter
+List the first 3 users who have more than 10000 followers.,Verbose query,twitter
+Which users follow 'Neo4j' and have a location specified as 'Graphs Are Everywhere'?,Verbose query,twitter
+Find the first 3 tweets that have been retweeted more than 100 times.,Verbose query,twitter
+Identify the top 5 tweets tagged with the hashtag 'education'.,Verbose query,twitter
+Who are the top 5 most followed users that 'Neo4j' follows?,Verbose query,twitter
+List the first 3 tweets posted using the source named 'Buffer'.,Verbose query,twitter
+Which users are most similar to 'Neo4j' based on the SIMILAR_TO relationship score? Show the top 5.,Verbose query,twitter
+Identify the first 3 users who mentioned 'Neo4j' in their tweets.,Verbose query,twitter
+What are the first 3 tweets that contain a link starting with 'https://twitter.com'?,Verbose query,twitter
+List the top 5 users by the number of statuses they have posted.,Verbose query,twitter
+Who are the top 3 users followed by 'Me' with the highest betweenness scores?,Verbose query,twitter
+List the first 3 tweets that 'Neo4j' has retweeted.,Verbose query,twitter
+Which tweets mention 'Neo4j' and contain a hashtag? Show the first 3.,Verbose query,twitter
+What are the top 5 sources used in tweets that have been retweeted more than 50 times?,Verbose query,twitter
+List the first 3 users who interact most frequently with 'Neo4j' based on the INTERACTS_WITH relationship.,Verbose query,twitter
+Which users have amplified 'Neo4j' and also follow more than 1000 users? List the first 3.,Verbose query,twitter
+Identify the top 5 users who have a profile image URL ending with 'normal.jpg' and follow 'Neo4j'.,Verbose query,twitter
+List the first 3 tweets that reply to another tweet and were created before March 2021.,Verbose query,twitter
+What are the top 5 hashtags used in tweets by 'Neo4j'?,Verbose query,twitter
+Identify the first 3 links contained in tweets that have been favorited more than 200 times.,Verbose query,twitter
+Who are the top 3 users that 'Neo4j' follows and who also follow 'Neo4j'?,Verbose query,twitter
+List the first 3 tweets created by users located in 'Graphs Are Everywhere' and posted after December 2020.,Verbose query,twitter
+"Which users follow 'Neo4j' and have a betweenness score higher than 300,000,000? Show the top 5.",Verbose query,twitter
+Identify the first 3 users who have retweeted tweets mentioning 'Neo4j'.,Verbose query,twitter
+What are the top 5 tweets by favorites that were posted by 'Me'?,Verbose query,twitter
+List the first 3 users who have been retweeted by 'Neo4j' and have more than 500 followers.,Verbose query,twitter
+Which tweets posted by 'Neo4j' include links and were created in January 2021? Show the first 3.,Verbose query,twitter
+What are the top 5 tweets that 'Neo4j' has amplified?,Verbose query,twitter
+Identify the first 3 users who mention 'Neo4j' and have a location of 'Graphs Are Everywhere'.,Verbose query,twitter
+List the top 5 most recent tweets that 'Neo4j' has posted.,Verbose query,twitter
+What are the first 3 tweets that 'Neo4j' has mentioned other users in and were created in 2021?,Verbose query,twitter
+Identify the top 5 users who have a following between 5000 and 15000 and follow 'Neo4j'.,Verbose query,twitter
+Which users have retweeted 'Neo4j' and have a profile image URL? List the first 3.,Verbose query,twitter
+List the top 5 tweets that have replied to 'Neo4j' and contain a hashtag.,Verbose query,twitter
+What are the first 3 tweets by 'Neo4j' that have been retweeted by other users with more than 10000 followers?,Verbose query,twitter
+Identify the top 5 hashtags used in tweets that 'Neo4j' has retweeted.,Verbose query,twitter
+List the first 3 users that 'Neo4j' follows with the highest number of tweets.,Verbose query,twitter
+Which users have mentioned 'Neo4j' in their tweets and have a following of more than 20000? Show the top 5.,Verbose query,twitter
+What are the top 5 tweets that link to URLs starting with 'https://' and were posted by 'Neo4j'?,Verbose query,twitter
+Identify the first 3 tweets mentioning 'Neo4j' that also tag a hashtag and were created in 2021.,Verbose query,twitter
+List the top 5 users followed by 'Neo4j' who have a screen_name starting with 'n'.,Verbose query,twitter
+Which users follow 'Neo4j' and have tweeted more than 500 times? Show the first 3.,Verbose query,twitter
+What are the first 3 tweets that 'Neo4j' has retweeted and were tagged with 'education'?,Verbose query,twitter
+Identify the top 5 users who interact with 'Neo4j' and have a location specified as 'Graphs Are Everywhere'.,Verbose query,twitter
+List the top 5 tweets that include a link and were posted by users following 'Neo4j'.,Verbose query,twitter
+What are the first 3 tweets posted by 'Neo4j' that include a source named 'Buffer'?,Verbose query,twitter
+Identify the top 5 hashtags used in tweets that mention 'Neo4j' and were created in 2021.,Verbose query,twitter
+List the first 3 users who follow 'Neo4j' and have a betweenness score of exactly 349332601.0.,Verbose query,twitter
+Which users followed by 'Neo4j' have posted tweets mentioning 'Neo4j'? Show the top 5.,Verbose query,twitter
+What are the top 5 tweets by 'Neo4j' that contain the hashtag 'education' and were created in 2021?,Verbose query,twitter
+Identify the first 3 tweets that 'Neo4j' has amplified and were posted in 2021.,Verbose query,twitter
+List the top 5 users that 'Neo4j' retweeted and who have a following of more than 10000.,Verbose query,twitter
+Which users have a profile image URL and follow 'Neo4j'? Show the first 3.,Verbose query,twitter
+List the first 3 tweets that include a link to 'https://twitter.com' and were favorited more than 100 times.,Verbose query,twitter
+What are the top 5 users who have amplified 'Neo4j' and have a following of more than 5000?,Verbose query,twitter
+Identify the first 3 tweets that 'Neo4j' has retweeted and were posted by users with a profile image URL ending in 'normal.jpg'.,Verbose query,twitter
+List the top 5 tweets that 'Neo4j' has mentioned and were created after January 2021.,Verbose query,twitter
+What are the names of the first 5 streams created before 2010?,Simple Retrieval Queries,twitch
+List the top 3 games with the most streams playing them.,Simple Retrieval Queries,twitch
+Which 5 streams have the highest total view count?,Simple Retrieval Queries,twitch
+Name the top 5 users who are moderators for more than one stream.,Simple Retrieval Queries,twitch
+What are the first 3 languages spoken by streams with over 1 million total views?,Simple Retrieval Queries,twitch
+Which streams are part of a team created after 2015 and list the first 5.,Simple Retrieval Queries,twitch
+"What are the descriptions of the first 3 streams with fewer than 100,000 followers?",Simple Retrieval Queries,twitch
+List the top 5 teams by the number of streams they have.,Simple Retrieval Queries,twitch
+Which users are VIPs for the first 5 streams with the most followers?,Simple Retrieval Queries,twitch
+Identify the top 3 streams that have the language 'en'.,Simple Retrieval Queries,twitch
+What are the top 5 streams by followers that play the game 'Dota 2'?,Simple Retrieval Queries,twitch
+"List all the games that have been played by streams with more than 5 million total views, showing the first 3.",Simple Retrieval Queries,twitch
+Who are the first 5 moderators for the stream with the highest total view count?,Simple Retrieval Queries,twitch
+What are the URLs of the first 3 streams that have no chatters?,Simple Retrieval Queries,twitch
+Name the first 5 streams that have no moderators and no VIPs.,Simple Retrieval Queries,twitch
+"Which users have moderated the most streams, and list the top 3.",Simple Retrieval Queries,twitch
+List the first 3 users who are both moderators and VIPs in different streams.,Simple Retrieval Queries,twitch
+What are the first 5 streams that have a language not listed in 'en' or 'ja'?,Simple Retrieval Queries,twitch
+"Which game has the fewest streams playing it, listing the first 3 streams?",Simple Retrieval Queries,twitch
+"Name the first 5 users who are chatters in streams with more than 500,000 followers.",Simple Retrieval Queries,twitch
+List the top 5 games by the number of languages they are streamed in.,Simple Retrieval Queries,twitch
+Which 3 teams were created most recently and have at least one stream associated with them?,Simple Retrieval Queries,twitch
+What are the first 3 streams that have been played continuously since their creation date without changing the game?,Simple Retrieval Queries,twitch
+"Which streams have a follower count between 10,000 and 50,000, listing the first 5?",Simple Retrieval Queries,twitch
+Name the top 3 users who are VIPs in the stream with the most followers.,Simple Retrieval Queries,twitch
+"List the first 3 streams that have VIP relationships only with other streams, not users.",Simple Retrieval Queries,twitch
+Who are the first 5 users chatting in streams labeled with the game 'Rust'?,Simple Retrieval Queries,twitch
+What are the first 3 streams that have a team with a creation date before 2015?,Simple Retrieval Queries,twitch
+"Which streams play 'VALORANT' and have over one million total views, listing the first 5?",Simple Retrieval Queries,twitch
+Who are the first 3 stream moderators who have been in that role since before 2015?,Simple Retrieval Queries,twitch
+List the first 5 streams that have changed their primary game at least once.,Simple Retrieval Queries,twitch
+What are the names of the first 3 teams with streams playing 'Rust' and having over a million followers?,Simple Retrieval Queries,twitch
+Which streams have the description mentioning 'professional' and list the first 3.,Simple Retrieval Queries,twitch
+What are the first 5 user names who are chatters in streams playing 'Dota 2'?,Simple Retrieval Queries,twitch
+"How many languages are used by streams with a total view count over 10 million, listing the first 3?",Simple Retrieval Queries,twitch
+Which are the first 5 streams that have a language and a game both starting with the same letter?,Simple Retrieval Queries,twitch
+List the first 3 games played by streams with a language 'ja'.,Simple Retrieval Queries,twitch
+Who are the first 3 users who are VIPs in the stream with the highest number of moderators?,Simple Retrieval Queries,twitch
+"List the first 5 streams with a follower count exactly at 100,000.",Simple Retrieval Queries,twitch
+What are the first 3 streams that have been in the same team since their creation and still active?,Simple Retrieval Queries,twitch
+"Name the first 5 users who have more than one role (VIP, moderator, or chatter) in the same stream.",Simple Retrieval Queries,twitch
+Which 3 streams had the most chatters in the past month?,Simple Retrieval Queries,twitch
+Who are the first 5 users who have been moderators in streams with a language other than 'en'?,Simple Retrieval Queries,twitch
+List the top 3 games played by streams with a description length over 50 characters.,Simple Retrieval Queries,twitch
+"Which streams are the first 3 that have a VIP user with over 500,000 followers?",Simple Retrieval Queries,twitch
+What are the first 5 streams that have a user who is both a moderator and a VIP?,Simple Retrieval Queries,twitch
+Which game is streamed by the most teams and list the first 3 teams?,Simple Retrieval Queries,twitch
+What are the first 3 streams that have a team with more than 5 streams?,Simple Retrieval Queries,twitch
+Who are the first 5 chatters in the stream with the highest follower count?,Simple Retrieval Queries,twitch
+List the first 3 streams with the oldest teams associated with them.,Simple Retrieval Queries,twitch
+Which 3 users have chatted in the most streams and what are their names?,Simple Retrieval Queries,twitch
+Name the first 5 streams that are part of a team with no other streams.,Simple Retrieval Queries,twitch
+What are the URLs of the first 3 streams with the most languages spoken?,Simple Retrieval Queries,twitch
+List the first 5 streams that have been moderated by the same user for over 5 years.,Simple Retrieval Queries,twitch
+Who are the first 3 VIPs in streams with a total view count exceeding 10 million?,Simple Retrieval Queries,twitch
+"Which streams with a description mentioning 'streaming' have the most followers, listing the first 5?",Simple Retrieval Queries,twitch
+Name the first 5 streams with the lowest follower count and still active.,Simple Retrieval Queries,twitch
+What are the first 3 streams that are part of a team with the most streams?,Simple Retrieval Queries,twitch
+List the first 5 games with streams that have been active for over 10 years.,Simple Retrieval Queries,twitch
+Who are the first 3 users who have VIP status in streams playing 'Rust'?,Simple Retrieval Queries,twitch
+Which are the first 5 streams that have more than one language associated with them?,Simple Retrieval Queries,twitch
+List the first 3 streams that have a game and team name starting with the same letter.,Simple Retrieval Queries,twitch
+What are the top 3 streams by total view count that also have a team associated with them?,Simple Retrieval Queries,twitch
+Who are the first 5 moderators in streams that have changed games at least twice?,Simple Retrieval Queries,twitch
+List the first 3 teams with the most streams playing 'Dota 2'.,Simple Retrieval Queries,twitch
+"Which users are chatters in the most streams, listing the first 5.",Simple Retrieval Queries,twitch
+Name the first 3 streams that have had the same game since creation and more than 5 million total views.,Simple Retrieval Queries,twitch
+List the first 5 streams that have a description mentioning 'channel'.,Simple Retrieval Queries,twitch
+Who are the first 5 users who are moderators in streams with over a million followers?,Simple Retrieval Queries,twitch
+What are the top 3 streams that have changed their language at least once?,Simple Retrieval Queries,twitch
+Which streams have no team associated and list the first 5.,Simple Retrieval Queries,twitch
+Who are the first 3 moderators for the oldest stream?,Simple Retrieval Queries,twitch
+List the first 5 streams that have a game played by less than 10 other streams.,Simple Retrieval Queries,twitch
+Name the first 5 users who are VIPs in streams with descriptions mentioning 'fun'.,Simple Retrieval Queries,twitch
+Which are the first 3 streams that have had a VIP relationship with the same user for over 3 years?,Simple Retrieval Queries,twitch
+List the first 5 streams where the game name and the stream name are the same.,Simple Retrieval Queries,twitch
+"Who are the first 5 users who have been VIPs in streams with fewer than 10,000 followers?",Simple Retrieval Queries,twitch
+What are the first 3 streams that have a user chatter who also has a moderator role in another stream?,Simple Retrieval Queries,twitch
+List the first 5 streams that have the most languages associated with them.,Simple Retrieval Queries,twitch
+"Which streams have been moderated by users with the most followers, listing the top 3?",Simple Retrieval Queries,twitch
+Name the first 5 streams that have a game with the shortest name.,Simple Retrieval Queries,twitch
+"List the first 3 games that have been featured in streams with a team having over 1,000 followers.",Simple Retrieval Queries,twitch
+What are the URLs of the first 3 streams with the most chatters?,Simple Retrieval Queries,twitch
+Who are the first 5 moderators in streams that play 'VALORANT'?,Simple Retrieval Queries,twitch
+List the first 5 streams that have been in the same language and game for over 5 years.,Simple Retrieval Queries,twitch
+Which streams have the description mentioning 'enjoy' and list the first 3.,Simple Retrieval Queries,twitch
+What are the first 5 streams that have a moderator with the same name as the stream's user?,Simple Retrieval Queries,twitch
+Name the first 3 users who are chatters in the most streams with different games.,Simple Retrieval Queries,twitch
+List the first 5 streams that have a team and a game that both have the letter 'E' in them.,Simple Retrieval Queries,twitch
+Who are the first 3 VIPs in streams with the most languages spoken?,Simple Retrieval Queries,twitch
+"What are the first 5 streams that have been active for over 5 years and have over 100,000 followers?",Simple Retrieval Queries,twitch
+List the first 3 games played by streams with the most moderators.,Simple Retrieval Queries,twitch
+"Which streams have a follower count between 200,000 and 500,000, listing the first 5?",Simple Retrieval Queries,twitch
+Who are the first 5 users who are chatters and VIPs in the same streams?,Simple Retrieval Queries,twitch
+List the first 3 streams that have a moderator with a name starting with 'G'.,Simple Retrieval Queries,twitch
+Who are the first 5 users who have moderated streams with descriptions mentioning 'professional'?,Simple Retrieval Queries,twitch
+List the first 5 streams where the user and moderator have the same name.,Simple Retrieval Queries,twitch
+Which streams have a total view count of over 10 million?,Complex Retrieval Queries,twitch
+List the top 5 streams by follower count.,Complex Retrieval Queries,twitch
+"What are the names of games played by streams with more than 100,000 followers?",Complex Retrieval Queries,twitch
+"Which users are moderators for streams with more than 500,000 total views?",Complex Retrieval Queries,twitch
+What are the descriptions of streams that play the game 'Rust'?,Complex Retrieval Queries,twitch
+Which streams have 'en' as their language and more than 1 million total views?,Complex Retrieval Queries,twitch
+List the names of all teams created before 2015.,Complex Retrieval Queries,twitch
+Which streams are part of the 'ESO Stream Team'?,Complex Retrieval Queries,twitch
+What are the URLs of the top 3 streams by total view count?,Complex Retrieval Queries,twitch
+Which users have chatted with more than 5 different streams?,Complex Retrieval Queries,twitch
+List all users who are VIPs in at least two different streams.,Complex Retrieval Queries,twitch
+Find streams that have both 'MODERATOR' and 'VIP' relationships.,Complex Retrieval Queries,twitch
+"Which games are played by streams that have a total view count greater than 500,000?",Complex Retrieval Queries,twitch
+How many users are moderators for the stream 'itsbigchase'?,Complex Retrieval Queries,twitch
+"What are the first 3 languages spoken in streams with more than 10,000 followers?",Complex Retrieval Queries,twitch
+"Which streams were created between 2015 and 2020 and have more than 100,000 followers?",Complex Retrieval Queries,twitch
+Identify streams that were created on or after 2018 and are part of teams.,Complex Retrieval Queries,twitch
+What are the follower counts of streams that play 'Rust' and have 'en' as their language?,Complex Retrieval Queries,twitch
+Which users are VIPs for the stream with the highest follower count?,Complex Retrieval Queries,twitch
+List the streams that have more than one moderator.,Complex Retrieval Queries,twitch
+What are the names of users who have moderated other users?,Complex Retrieval Queries,twitch
+Which streams have no team associations?,Complex Retrieval Queries,twitch
+What are the follower and view count details for streams with more than 3 moderators?,Complex Retrieval Queries,twitch
+Find the descriptions of streams that have chatted with the user '9linda'.,Complex Retrieval Queries,twitch
+Which teams were formed in 2020?,Complex Retrieval Queries,twitch
+How many languages are associated with streams that have over 1 million total views?,Complex Retrieval Queries,twitch
+List the games played by streams that have more than 5 VIP relationships.,Complex Retrieval Queries,twitch
+What is the total view count of streams that are moderated by 'itsbigchase'?,Complex Retrieval Queries,twitch
+"Which streams have the user 'creightonolsen' as a chatter and have more than 100,000 views?",Complex Retrieval Queries,twitch
+List the streams where 'romandoduik' is a chatter.,Complex Retrieval Queries,twitch
+Which users are moderators in streams that play 'Rust'?,Complex Retrieval Queries,twitch
+How many streams has each team associated with them?,Complex Retrieval Queries,twitch
+What are the properties of the stream with the highest number of followers?,Complex Retrieval Queries,twitch
+List all games that have been played by streams associated with the 'ESO Stream Team'.,Complex Retrieval Queries,twitch
+"Which language is most commonly associated with streams that have more than 500,000 followers?",Complex Retrieval Queries,twitch
+Identify streams that have a creation date before 2010.,Complex Retrieval Queries,twitch
+Which streams have users with the role of both VIP and moderator?,Complex Retrieval Queries,twitch
+List the top 5 users by the number of streams they moderate.,Complex Retrieval Queries,twitch
+What are the descriptions of the streams with the oldest creation dates?,Complex Retrieval Queries,twitch
+Which games are played by streams that are part of teams created after 2017?,Complex Retrieval Queries,twitch
+How many streams are associated with each language?,Complex Retrieval Queries,twitch
+List the top 3 streams that have the most chatters.,Complex Retrieval Queries,twitch
+Which users have been VIPs in streams with a total view count over 5 million?,Complex Retrieval Queries,twitch
+Find streams where 'itsbigchase' is a moderator.,Complex Retrieval Queries,twitch
+What are the follower counts for streams that have 'ru' as their language?,Complex Retrieval Queries,twitch
+Which streams have more than two team associations?,Complex Retrieval Queries,twitch
+List all users who have chatted with the stream 'itsbigchase'.,Complex Retrieval Queries,twitch
+Which streams are connected to the game 'Rust' and have at least one VIP?,Complex Retrieval Queries,twitch
+What are the URLs of streams where 'itsbigchase' is a moderator?,Complex Retrieval Queries,twitch
+Identify streams with more than 10 VIP relationships.,Complex Retrieval Queries,twitch
+What are the properties of the streams where '9linda' is a VIP?,Complex Retrieval Queries,twitch
+What are the names of the top 5 streams with the highest follower counts?,Simple Aggregation Queries,twitch
+Which games have been played by streams with more than 1 million total views?,Simple Aggregation Queries,twitch
+List the names of 3 streams that are conducted in the English language.,Simple Aggregation Queries,twitch
+Which streams have moderators who are also users?,Simple Aggregation Queries,twitch
+What are the names of the 3 newest teams in the database?,Simple Aggregation Queries,twitch
+How many streams are associated with the game 'Rust'?,Simple Aggregation Queries,twitch
+What are the URLs of the top 3 streams by total view count?,Simple Aggregation Queries,twitch
+Which users are moderators in more than one stream?,Simple Aggregation Queries,twitch
+List the streams that have more than 5 million followers.,Simple Aggregation Queries,twitch
+What are the names of streams that play 'Grand Theft Auto V' and have English as their language?,Simple Aggregation Queries,twitch
+Which users are VIPs in the stream named 'itsbigchase'?,Simple Aggregation Queries,twitch
+How many streams are part of the 'ESO Stream Team'?,Simple Aggregation Queries,twitch
+Which games are played by the oldest streams in the database?,Simple Aggregation Queries,twitch
+Find 3 languages spoken in streams with the highest number of followers.,Simple Aggregation Queries,twitch
+What are the names of users who are both moderators and VIPs in any stream?,Simple Aggregation Queries,twitch
+List the top 5 streams based on their creation date.,Simple Aggregation Queries,twitch
+What are the descriptions of the streams with the least followers?,Simple Aggregation Queries,twitch
+Which teams were created before 2015?,Simple Aggregation Queries,twitch
+How many users are chatters in more than one stream?,Simple Aggregation Queries,twitch
+List streams that have a total view count greater than 500 million.,Simple Aggregation Queries,twitch
+What are the follower counts for streams named 'summit1g'?,Simple Aggregation Queries,twitch
+Find the streams by 'itsbigchase' and list their games.,Simple Aggregation Queries,twitch
+What are the total view counts for streams that have moderators?,Simple Aggregation Queries,twitch
+List the names of users who are VIPs in more than 3 streams.,Simple Aggregation Queries,twitch
+Which streams have chatters that are also streams?,Simple Aggregation Queries,twitch
+Name the games played by streams that have a follower count over 2 million.,Simple Aggregation Queries,twitch
+What are the URLs for streams that are part of teams created in 2020?,Simple Aggregation Queries,twitch
+List the top 3 teams by the number of associated streams.,Simple Aggregation Queries,twitch
+"How many streams have the language 'de' and more than 10,000 followers?",Simple Aggregation Queries,twitch
+What are the names of streams with the oldest creation dates and their associated games?,Simple Aggregation Queries,twitch
+List the top 5 streams with the highest follower count.,Pathfinding Queries,twitch
+Which streams have a total view count greater than 10 million?,Pathfinding Queries,twitch
+"Identify 3 games most played by streams with more than 100,000 followers.",Pathfinding Queries,twitch
+What are the top 3 most common languages used by streams?,Pathfinding Queries,twitch
+"Find the streams that have 'en' as their language and more than 500,000 followers.",Pathfinding Queries,twitch
+Which users are moderators for more than one stream? List the top 3.,Pathfinding Queries,twitch
+Display the top 5 streams that play the game 'Rust'.,Pathfinding Queries,twitch
+Show 3 streams that were created before 2010.,Pathfinding Queries,twitch
+Which streams are part of a team created after 2015?,Pathfinding Queries,twitch
+"List the streams that have VIP users with less than 10,000 followers.",Pathfinding Queries,twitch
+What are the top 5 streams by total view count that also have a team?,Pathfinding Queries,twitch
+List the games played by streams that have a description containing 'game play'.,Pathfinding Queries,twitch
+"Which streams have a language set to 'ru' and more than 20,000 followers?",Pathfinding Queries,twitch
+Identify 3 users who are VIPs for streams with a total view count over 1 million.,Pathfinding Queries,twitch
+Show the top 3 streams with the most moderators.,Pathfinding Queries,twitch
+Find out which 3 games are most frequently associated with streams having a 'VIP' relationship.,Pathfinding Queries,twitch
+Which streams have the most chatters? List the top 5.,Pathfinding Queries,twitch
+Find 3 teams that have been associated with streams since before 2017.,Pathfinding Queries,twitch
+Show the top 3 teams by the number of streams they are associated with.,Pathfinding Queries,twitch
+What are the names of the 3 users who chatter the most across different streams?,Pathfinding Queries,twitch
+List the streams that have moderators who are also VIPs in other streams.,Pathfinding Queries,twitch
+Identify the 3 streams with the most user moderators.,Pathfinding Queries,twitch
+Find the top 5 streams where the streamer plays 'Just Chatting'.,Pathfinding Queries,twitch
+Show streams that feature more than 3 games.,Pathfinding Queries,twitch
+Which users are VIPs for the stream with the highest follower count?,Pathfinding Queries,twitch
+List the 3 oldest teams based on creation date linked to streams.,Pathfinding Queries,twitch
+What are the top 5 games played by streams created before 2015?,Pathfinding Queries,twitch
+Identify streams with more than 5 million total views that play 'VALORANT'.,Pathfinding Queries,twitch
+Show the 3 streams that have the longest descriptions.,Pathfinding Queries,twitch
+List the URLs of the 3 newest streams in the database.,Pathfinding Queries,twitch
+Which streams are linked to a team named 'ESO Stream Team'?,Pathfinding Queries,twitch
+Find streams that have at least 3 languages associated with them.,Pathfinding Queries,twitch
+Which users are chatters in more than 3 different streams? List the top 5.,Pathfinding Queries,twitch
+Show the streams that have the highest number of different games played.,Pathfinding Queries,twitch
+list the top 3 streams with the highest number of VIP relationships.,Pathfinding Queries,twitch
+Find the streams where the streamer has more than 1 million followers and plays 'Rust'.,Pathfinding Queries,twitch
+Display streams that have a language set to 'en' and were created before 2012.,Pathfinding Queries,twitch
+Which streams have both a 'MODERATOR' and a 'VIP' relationship with the same user?,Pathfinding Queries,twitch
+Find the 3 streams with the newest creation dates.,Pathfinding Queries,twitch
+List the top 5 users who are moderators for the most streams.,Pathfinding Queries,twitch
+Which streams have a user named 'itsbigchase' as a VIP?,Pathfinding Queries,twitch
+Identify the top 3 games played by streams with a description containing 'hilarious moments'.,Pathfinding Queries,twitch
+Show the streams that have more than 2 languages associated with them.,Pathfinding Queries,twitch
+List the streams with the highest number of chatters who are also streamers.,Pathfinding Queries,twitch
+Find the 3 streams that have a 'CHATTER' relationship with users who are not streamers.,Pathfinding Queries,twitch
+Which streams have the most 'CHATTER' relationships? List the top 5.,Pathfinding Queries,twitch
+Show the streams that have been moderated by a user more than once.,Pathfinding Queries,twitch
+List the 3 games most frequently played by streams with VIP users.,Pathfinding Queries,twitch
+Find the streams with the most unique games played.,Pathfinding Queries,twitch
+Which streams have a moderator named 'itsbigchase'?,Pathfinding Queries,twitch
+Show the 3 streams with the least followers.,Pathfinding Queries,twitch
+List the top 5 languages spoken by streams with a moderator relationship.,Pathfinding Queries,twitch
+Find streams where the user 'itsbigchase' is both a moderator and a chatter.,Pathfinding Queries,twitch
+Which streams have the highest number of unique games played?,Pathfinding Queries,twitch
+Identify 5 streams where users are both VIPs and moderators.,Pathfinding Queries,twitch
+List the 3 streams where the streamer has the longest ongoing stream based on the creation date.,Pathfinding Queries,twitch
+Show the top 5 streams with the most user chatters.,Pathfinding Queries,twitch
+Find 3 streams with the most varied language settings.,Pathfinding Queries,twitch
+Which streams have a user as both a VIP and a MODERATOR?,Pathfinding Queries,twitch
+"List the streams that play a game named 'Just Chatting' and have more than 100,000 followers.",Pathfinding Queries,twitch
+Which streams are part of a team with the most streams associated?,Pathfinding Queries,twitch
+Show the top 5 users who are VIPs in the most streams.,Pathfinding Queries,twitch
+List the 3 streams with the highest number of games played.,Pathfinding Queries,twitch
+Find the top 5 streams that have been active the longest based on the creation date.,Pathfinding Queries,twitch
+Identify the streams with more than 3 VIP users.,Pathfinding Queries,twitch
+Which streams have the most distinct moderators? List the top 5.,Pathfinding Queries,twitch
+Show the top 3 streams that have been followed by more than 2 million users.,Pathfinding Queries,twitch
+List the 3 newest games introduced to streams.,Pathfinding Queries,twitch
+Identify the streams with the most followers who play 'Rust'.,Pathfinding Queries,twitch
+Show the streams with the most languages.,Pathfinding Queries,twitch
+"List the streams that are moderated by users with more than 10,000 followers.",Pathfinding Queries,twitch
+Find the 3 streams with the most distinct languages used.,Pathfinding Queries,twitch
+Which streams have a user named 'itsbigchase' as a moderator and a chatter?,Pathfinding Queries,twitch
+Show the top 5 games played by streams with the most language diversity.,Pathfinding Queries,twitch
+List the 3 streams that have been followed by more than 1 million users.,Pathfinding Queries,twitch
+Identify the streams with the highest total view count that have a user moderator.,Pathfinding Queries,twitch
+Which streams have the most followers but fewer than 1 million total views?,Pathfinding Queries,twitch
+Show the 3 streams with the most users as chatters.,Pathfinding Queries,twitch
+List the top 5 streams that are part of the team with the newest creation date.,Pathfinding Queries,twitch
+Find the 3 streams that have the most distinct games played.,Pathfinding Queries,twitch
+Which streams have the highest number of user VIPs?,Pathfinding Queries,twitch
+List the top 5 streams that have the most user moderators.,Pathfinding Queries,twitch
+Identify the top 3 users who are chatters in the most streams.,Pathfinding Queries,twitch
+Show the streams that have the most teams associated with them.,Pathfinding Queries,twitch
+List the 3 streams with the most distinct teams associated.,Pathfinding Queries,twitch
+Find the streams that have a user named 'itsbigchase' as a chatter and a VIP.,Pathfinding Queries,twitch
+Which streams have the most languages? List the top 5.,Pathfinding Queries,twitch
+Show the streams with the most distinct moderators.,Pathfinding Queries,twitch
+List the 3 streams with the most distinct users as VIPs.,Pathfinding Queries,twitch
+Identify the streams where 'itsbigchase' is both a moderator and VIP.,Pathfinding Queries,twitch
+Which streams have a team created before 2015?,Pathfinding Queries,twitch
+Show the 3 newest teams associated with streams.,Pathfinding Queries,twitch
+List the top 5 streams by number of games played.,Pathfinding Queries,twitch
+Find the streams with the most user chatters.,Pathfinding Queries,twitch
+Which streams have the most distinct games played? List the top 5.,Pathfinding Queries,twitch
+Show the streams that have the most distinct languages.,Pathfinding Queries,twitch
+List the streams with the most distinct teams associated.,Pathfinding Queries,twitch
+What are the names of the top 5 streams with the highest follower counts?,Complex Aggregation Queries,twitch
+Which streams have a total view count greater than 5 million but less than 10 million?,Complex Aggregation Queries,twitch
+"List the names of the top 3 games most frequently played by streams with over 500,000 followers.",Complex Aggregation Queries,twitch
+Which languages are used by streams that have more than 1 million total views?,Complex Aggregation Queries,twitch
+Name the top 3 users who are moderators for more than one stream.,Complex Aggregation Queries,twitch
+"What are the names of streams that play the game 'Rust' and have more than 100,000 followers?",Complex Aggregation Queries,twitch
+Which streams have been created after 2018 and are part of a team created before 2015?,Complex Aggregation Queries,twitch
+List the names of the top 5 users who are VIPs in the most number of different streams.,Complex Aggregation Queries,twitch
+"What are the names of streams that have the language 'en' and more than 50,000 followers?",Complex Aggregation Queries,twitch
+Which teams are associated with more than three different streams?,Complex Aggregation Queries,twitch
+List the names of games played by streams that have chatters also listed as VIPs.,Complex Aggregation Queries,twitch
+What are the names of the top 5 users who are moderators in streams that have more than 1 million total views?,Complex Aggregation Queries,twitch
+Which streams have a total view count of between 1 million and 2 million and are moderated by at least three different users?,Complex Aggregation Queries,twitch
+List the names of the top 3 streams that have the most chatters.,Complex Aggregation Queries,twitch
+Name the streams that have a user named 'itsbigchase' as a moderator.,Complex Aggregation Queries,twitch
+Which streams have chatters who are also moderators in other streams?,Complex Aggregation Queries,twitch
+List the top 5 streams by total view count that have a team associated with them.,Complex Aggregation Queries,twitch
+Which games are played by streams that have at least two different languages associated with them?,Complex Aggregation Queries,twitch
+Name the streams that are VIPs in the stream named 'itsbigchase'.,Complex Aggregation Queries,twitch
+"List the names of the top 3 teams associated with streams that have more than 500,000 total views.",Complex Aggregation Queries,twitch
+Which streams have users named 'gonsabellla' as a VIP?,Complex Aggregation Queries,twitch
+Name the top 3 games played by streams that also have chatters who are VIPs.,Complex Aggregation Queries,twitch
+"List the streams that have chatters with the name 'itsbigchase' and more than 100,000 total views.",Complex Aggregation Queries,twitch
+Which streams created in 2020 have users who are both moderators and VIPs?,Complex Aggregation Queries,twitch
+Name the top 5 users who have chatted in more than three streams.,Complex Aggregation Queries,twitch
+List the streams that have the same game played by both itsbigchase and 9linda.,Complex Aggregation Queries,twitch
+"Which streams have a user named 'tranth' as a VIP and have more than 10,000 followers?",Complex Aggregation Queries,twitch
+Name the top 3 users who are moderators in the stream with the highest follower count.,Complex Aggregation Queries,twitch
+List the names of teams that have been involved with streams that play 'Just Chatting' and have total views over 1 million.,Complex Aggregation Queries,twitch
+Which streams are moderated by users who are also VIPs in the same stream?,Complex Aggregation Queries,twitch
+What are the top 3 streams with the highest follower counts?,Verbose query,twitch
+Which streams have a total view count greater than 1 million and what games are they playing?,Verbose query,twitch
+"List the first 3 languages used by streams that have more than 10,000 followers.",Verbose query,twitch
+Which users are moderators for more than one stream?,Verbose query,twitch
+What are the names of the top 5 most followed streams that have been created since 2018?,Verbose query,twitch
+Identify the first 3 games played by streams that have at least 5000 followers.,Verbose query,twitch
+Which stream has the lowest total view count and what language is it using?,Verbose query,twitch
+List the top 3 users who chatter in more than one stream.,Verbose query,twitch
+What are the names and URLs of the first 3 streams that are part of a team created before 2015?,Verbose query,twitch
+Which streams have VIP users and what are the names of these VIPs?,Verbose query,twitch
+Identify the top 5 teams by the number of associated streams they have.,Verbose query,twitch
+List the first 3 users who are moderators for streams playing 'Rust'.,Verbose query,twitch
+Which users are VIP in both 'itsbigchase' and another stream?,Verbose query,twitch
+What are the top 3 streams with the least followers that still have moderators?,Verbose query,twitch
+Which games are played by streams that have both English and German-speaking users?,Verbose query,twitch
+List the top 3 streams that have the most chatters.,Verbose query,twitch
+Which users are chatters in streams that have over 10000 total views?,Verbose query,twitch
+What are the names of the first 3 languages used by streams with a description containing 'strategy'?,Verbose query,twitch
+Identify the first 3 streams that play 'DayZ' and their respective follower counts.,Verbose query,twitch
+What are the descriptions of streams that are moderated by users with names starting with 'c'?,Verbose query,twitch
+Which streams have users as VIPs and moderators and list those users' names?,Verbose query,twitch
+How many streams does each game have associated with it? List the top 5 games based on this count.,Verbose query,twitch
+What are the first 3 streams that were created after 2019 and their total view count?,Verbose query,twitch
+Which streams are part of teams created after 2018 and what are the team names?,Verbose query,twitch
+List the top 3 users who have moderated the most streams.,Verbose query,twitch
+Who are the top 5 users with the highest betweenness?,Simple Retrieval Queries,twitter
+List the first 3 users with the lowest number of followers.,Simple Retrieval Queries,twitter
+What are the names of the top 5 users with the most following?,Simple Retrieval Queries,twitter
+Identify the top 3 tweets with the highest number of favorites.,Simple Retrieval Queries,twitter
+Which users follow 'Neo4j'?,Simple Retrieval Queries,twitter
+What are the first 3 tweets containing the hashtag 'education'?,Simple Retrieval Queries,twitter
+Who are the first 3 users mentioned in tweets on '2021-03-16'?,Simple Retrieval Queries,twitter
+List the top 5 tweets by 'Neo4j' based on favorites.,Simple Retrieval Queries,twitter
+What are the first 3 sources used by the most popular tweets?,Simple Retrieval Queries,twitter
+Who are the top 5 users most similar to 'Neo4j' based on the SIMILAR_TO score?,Simple Retrieval Queries,twitter
+What are the urls for the top 3 links contained in the most retweeted tweets?,Simple Retrieval Queries,twitter
+Which users are followed by 'neo4j' and have more than 500 followers?,Simple Retrieval Queries,twitter
+List the first 3 tweets retweeted by users located in 'Graphs Are Everywhere'.,Simple Retrieval Queries,twitter
+Who are the top 5 users interacting with 'Neo4j'?,Simple Retrieval Queries,twitter
+Which tweets mention 'Neo4j' and were created after '2021-01-01'?,Simple Retrieval Queries,twitter
+List the first 3 users that 'Neo4j' amplifies.,Simple Retrieval Queries,twitter
+What are the first 3 tweets replied to by 'Neo4j'?,Simple Retrieval Queries,twitter
+Identify the top 5 hashtags used in tweets from '2020-12-06'.,Simple Retrieval Queries,twitter
+List the first 3 tweets that link to 'https://twitter.com'.,Simple Retrieval Queries,twitter
+What are the profile images of the top 5 users by followers?,Simple Retrieval Queries,twitter
+Which users with a location of 'Sweden' follow more than 10 users?,Simple Retrieval Queries,twitter
+List the first 3 tweets with a creation date on '2021-03-16'.,Simple Retrieval Queries,twitter
+Identify the top 5 users by betweenness and name starting with 'N'.,Simple Retrieval Queries,twitter
+What are the top 5 links contained in the tweets posted by users with fewer than 100 followers?,Simple Retrieval Queries,twitter
+Which tweets by 'Neo4j' mention at least one other user?,Simple Retrieval Queries,twitter
+List the first 3 tweets that retweet tweets created on '2020-12-06'.,Simple Retrieval Queries,twitter
+Who are the users that 'Neo4j' mentions in tweets?,Simple Retrieval Queries,twitter
+Identify the top 5 tweets with text containing 'critical service'.,Simple Retrieval Queries,twitter
+List the profile URLs of the top 3 users by betweenness.,Simple Retrieval Queries,twitter
+What are the top 5 hashtags in tweets containing the word 'education'?,Simple Retrieval Queries,twitter
+Which users with over 10000 followers are located in 'Graphs Are Everywhere'?,Simple Retrieval Queries,twitter
+List the first 3 tweets posted by 'Neo4j' using the source 'Buffer'.,Simple Retrieval Queries,twitter
+Identify the top 5 users who have exactly 663 followers.,Simple Retrieval Queries,twitter
+What are the top 3 tweets by favorites posted from 'Graphs Are Everywhere'?,Simple Retrieval Queries,twitter
+Which users with a profile image URL containing 'horned_reaper' follow 'Neo4j'?,Simple Retrieval Queries,twitter
+List the first 3 hashtags used in tweets mentioning 'Neo4j'.,Simple Retrieval Queries,twitter
+Who are the top 5 users followed by 'Neo4j' based on betweenness score?,Simple Retrieval Queries,twitter
+Identify the top 3 tweets that contain links to 'https://twitter.com'.,Simple Retrieval Queries,twitter
+List the first 3 tweets that 'Neo4j' retweets on '2021-03-16'.,Simple Retrieval Queries,twitter
+What are the top 5 sources used in tweets by users located in 'Sweden'?,Simple Retrieval Queries,twitter
+List the top 5 users with the highest betweenness.,Complex Retrieval Queries,twitter
+Find all tweets posted by 'Neo4j' containing a hashtag.,Complex Retrieval Queries,twitter
+Display the first 3 users followed by 'Neo4j' who have more than 10000 followers.,Complex Retrieval Queries,twitter
+Show the top 5 tweets with the most favorites that were posted using 'Buffer'.,Complex Retrieval Queries,twitter
+Identify the first 3 hashtags used in tweets that mention 'Neo4j'.,Complex Retrieval Queries,twitter
+List all tweets by 'Neo4j' that reply to another tweet.,Complex Retrieval Queries,twitter
+Show the top 5 users that 'Neo4j' interacts with based on the number of interactions.,Complex Retrieval Queries,twitter
+List the first 3 links contained in tweets posted by 'Neo4j'.,Complex Retrieval Queries,twitter
+Find the top 5 tweets with the highest number of favorites.,Complex Retrieval Queries,twitter
+Who are the top 3 users most similar to 'Neo4j' based on similarity score?,Complex Retrieval Queries,twitter
+Identify the first 3 tweets by 'Neo4j' that retweet another user's tweets.,Complex Retrieval Queries,twitter
+Show all tweets that mention 'Neo4j' and contain a link.,Complex Retrieval Queries,twitter
+List the first 3 users who follow 'Neo4j' and are located in 'Graphs Are Everywhere'.,Complex Retrieval Queries,twitter
+Display the top 5 most recent tweets by 'Neo4j'.,Complex Retrieval Queries,twitter
+Who are the top 3 users followed by 'Me' with the highest betweenness?,Complex Retrieval Queries,twitter
+Identify all tweets by 'Neo4j' that mention a user with at least 5000 followers.,Complex Retrieval Queries,twitter
+Show the first 3 hashtags tagged in tweets that have been retweeted more than 100 times.,Complex Retrieval Queries,twitter
+List the top 5 sources used in tweets posted by 'Neo4j'.,Complex Retrieval Queries,twitter
+Find all tweets by 'Neo4j' that mention 'Me'.,Complex Retrieval Queries,twitter
+Display the first 3 tweets by 'Neo4j' that were amplified by 'Me'.,Complex Retrieval Queries,twitter
+Who are the top 5 users with similar screen names to 'Neo4j'?,Complex Retrieval Queries,twitter
+Show the first 3 tweets that 'Me' has retweeted.,Complex Retrieval Queries,twitter
+List all users who have both posted a tweet mentioning 'Neo4j' and have been mentioned by 'Neo4j' in a tweet.,Complex Retrieval Queries,twitter
+Identify the first 3 users who interact with 'Neo4j' and have a similar location.,Complex Retrieval Queries,twitter
+Show the top 5 tweets by 'Neo4j' that were posted from a location outside 'Graphs Are Everywhere'.,Complex Retrieval Queries,twitter
+Who are the top 3 users that 'Neo4j' amplifies the most?,Complex Retrieval Queries,twitter
+List the first 3 tweets by 'Me' that contain a link.,Complex Retrieval Queries,twitter
+Find all tweets by 'Neo4j' that were posted on or after '2021-01-01'.,Complex Retrieval Queries,twitter
+Display the top 5 users who follow both 'Neo4j' and 'Me'.,Complex Retrieval Queries,twitter
+Identify the first 3 tweets by 'Me' that have been mentioned by another user.,Complex Retrieval Queries,twitter
+Show all hashtags that have appeared in more than 5 tweets mentioning 'Neo4j'.,Complex Retrieval Queries,twitter
+List the top 5 users who have a similar betweenness to 'Neo4j'.,Complex Retrieval Queries,twitter
+Find the first 3 tweets by 'Neo4j' that were favorited more than 300 times.,Complex Retrieval Queries,twitter
+Display all tweets by 'Neo4j' that mention at least two different users.,Complex Retrieval Queries,twitter
+Identify the first 3 users followed by 'Me' who are located in the same location as 'Me'.,Complex Retrieval Queries,twitter
+Show the top 5 tweets that 'Me' has replied to.,Complex Retrieval Queries,twitter
+List all users who have been retweeted by 'Neo4j' at least twice.,Complex Retrieval Queries,twitter
+Find the top 5 tweets by 'Neo4j' that contain the hashtag '#education'.,Complex Retrieval Queries,twitter
+Display the first 3 users who mention 'Neo4j' in their tweets and have a similar profile image.,Complex Retrieval Queries,twitter
+Identify all tweets by 'Neo4j' that were posted using a source other than 'Buffer'.,Complex Retrieval Queries,twitter
+Show the first 3 tweets mentioning 'Neo4j' that have been retweeted by 'Me'.,Complex Retrieval Queries,twitter
+List the top 5 users who interact most frequently with both 'Neo4j' and 'Me'.,Complex Retrieval Queries,twitter
+Find all tweets by 'Neo4j' that tag a hashtag and mention a user.,Complex Retrieval Queries,twitter
+Display the first 3 users with the highest following who follow 'Neo4j'.,Complex Retrieval Queries,twitter
+Who are the top 5 most recent users followed by 'Neo4j'?,Complex Retrieval Queries,twitter
+Identify the first 3 tweets by 'Neo4j' that contain a link to an external website.,Complex Retrieval Queries,twitter
+Show all tweets that 'Me' has amplified.,Complex Retrieval Queries,twitter
+List the first 3 hashtags appearing in the latest tweets by 'Neo4j'.,Complex Retrieval Queries,twitter
+Find the top 5 tweets mentioning 'Neo4j' with the most favorites.,Complex Retrieval Queries,twitter
+Display all tweets by 'Neo4j' that mention a user and contain a hashtag.,Complex Retrieval Queries,twitter
+Who are the top 3 users with the most statuses who follow 'Neo4j'?,Complex Retrieval Queries,twitter
+What are the top 5 users with the highest number of followers?,Simple Aggregation Queries,twitter
+Which users follow 'Neo4j' and have more than 500 followers?,Simple Aggregation Queries,twitter
+List the top 3 tweets with the highest number of favorites.,Simple Aggregation Queries,twitter
+What are the top 5 tweets by 'Neo4j' based on favorites count?,Simple Aggregation Queries,twitter
+Who are the top 3 users that 'Neo4j' follows?,Simple Aggregation Queries,twitter
+What are the names of the top 3 hashtags used in tweets?,Simple Aggregation Queries,twitter
+Which tweets contain links and have more than 100 favorites?,Simple Aggregation Queries,twitter
+Who are the top 5 users most similar to 'Neo4j' based on the similarity score?,Simple Aggregation Queries,twitter
+What are the top 3 sources used in tweets by 'Neo4j'?,Simple Aggregation Queries,twitter
+Which users have a betweenness higher than 1000000?,Simple Aggregation Queries,twitter
+Find the top 3 users based on the number of statuses they have posted.,Simple Aggregation Queries,twitter
+What are the 3 most recent tweets posted by any user?,Simple Aggregation Queries,twitter
+Who are the users mentioned in the most favorited tweet?,Simple Aggregation Queries,twitter
+List the top 3 tweets that mention 'Neo4j'.,Simple Aggregation Queries,twitter
+Who are the top 5 followers of 'Neo4j' based on the number of statuses they have?,Simple Aggregation Queries,twitter
+What are the top 3 tweets retweeted by other users?,Simple Aggregation Queries,twitter
+Which users have the highest following to follower ratio?,Simple Aggregation Queries,twitter
+List the top 5 users based on betweenness centrality.,Simple Aggregation Queries,twitter
+What are the top 3 locations from where the most tweets originate?,Simple Aggregation Queries,twitter
+Which tweets from 'Neo4j' mention other users and what are these users' screen names?,Simple Aggregation Queries,twitter
+Who are the top 3 users that have interacted with 'Neo4j' the most?,Simple Aggregation Queries,twitter
+List the 5 most recent users who started following 'Neo4j'.,Simple Aggregation Queries,twitter
+What are the top 3 hashtags associated with tweets that have been retweeted more than 50 times?,Simple Aggregation Queries,twitter
+Which tweets have been replied to and have more than 50 favorites?,Simple Aggregation Queries,twitter
+List the top 3 users with the lowest number of followers who follow 'Neo4j'.,Simple Aggregation Queries,twitter
+What are the top 3 tweets with the least favorites posted by 'Neo4j'?,Simple Aggregation Queries,twitter
+Who are the top 3 users based on the number of users they interact with?,Simple Aggregation Queries,twitter
+What are the top 5 tweets containing the hashtag 'education'?,Simple Aggregation Queries,twitter
+Which users are similar to 'Neo4j' with a similarity score above 0.5?,Simple Aggregation Queries,twitter
+Who are the top 3 users that 'Neo4j' has amplified?,Simple Aggregation Queries,twitter
+List the top 5 tweets that contain links and are posted by 'Neo4j'.,Simple Aggregation Queries,twitter
+What are the top 3 tweets that 'Neo4j' has retweeted?,Simple Aggregation Queries,twitter
+Which users have 'Neo4j' mentioned in its tweets the most?,Simple Aggregation Queries,twitter
+List the top 3 tweets from users located in 'Graphs Are Everywhere'.,Simple Aggregation Queries,twitter
+What are the top 5 tweets by favorites that contain the hashtag 'education'?,Simple Aggregation Queries,twitter
+Which users follow 'Neo4j' and are from 'Graphs Are Everywhere'?,Simple Aggregation Queries,twitter
+List the 3 most recent tweets that mention 'Neo4j' and contain a link.,Simple Aggregation Queries,twitter
+Who are the top 3 users that 'Neo4j' retweets mentions from?,Simple Aggregation Queries,twitter
+What are the top 3 tweets by 'Neo4j' that reply to other tweets?,Simple Aggregation Queries,twitter
+Which tweets have been amplified by 'Neo4j' and have more than 100 favorites?,Simple Aggregation Queries,twitter
+What are the names of the top 3 sources from tweets retweeted by 'Neo4j'?,Simple Aggregation Queries,twitter
+Who are the 3 users with the most tweets that contain the hashtag 'education'?,Simple Aggregation Queries,twitter
+List the top 5 tweets that 'Neo4j' has replied to.,Simple Aggregation Queries,twitter
+What are the top 3 tweets tagged with 'education' that have been retweeted by others?,Simple Aggregation Queries,twitter
+Which users from 'Graphs Are Everywhere' have posted the most tweets?,Simple Aggregation Queries,twitter
+Which users have a betweenness greater than 300 million?,Pathfinding Queries,twitter
+List the top 5 users by number of followers.,Pathfinding Queries,twitter
+Who are the first 3 users that a specific user identified by screen name 'neo4j' follows?,Pathfinding Queries,twitter
+Find all tweets containing the hashtag 'education' and show the first 5.,Pathfinding Queries,twitter
+Which users are mentioned in the tweets posted by 'neo4j'?,Pathfinding Queries,twitter
+Show the top 3 most recent tweets by date.,Pathfinding Queries,twitter
+Which users have posted tweets with more than 100 favorites?,Pathfinding Queries,twitter
+List all sources used for tweets and show the first 5.,Pathfinding Queries,twitter
+Who are the users that have been retweeted by 'neo4j'?,Pathfinding Queries,twitter
+Find the top 5 tweets with the highest number of favorites.,Pathfinding Queries,twitter
+What are the top 3 hashtags used in tweets posted by 'neo4j'?,Pathfinding Queries,twitter
+Which users have the highest betweenness and list the top 5.,Pathfinding Queries,twitter
+Display the first 3 tweets that mention 'neo4j'.,Pathfinding Queries,twitter
+Who follows 'neo4j' and has a higher follower count than 'neo4j'?,Pathfinding Queries,twitter
+What are the top 5 locations from where users have tweeted?,Pathfinding Queries,twitter
+List all the tweets that link to a URL containing 'twitter.com'.,Pathfinding Queries,twitter
+Which users interact most frequently with 'neo4j' and list the top 5?,Pathfinding Queries,twitter
+Show the tweets that replied to a tweet by 'neo4j' and list the first 3.,Pathfinding Queries,twitter
+What are the top 3 tweets by number of retweets?,Pathfinding Queries,twitter
+Find all tweets from users located in 'Graphs Are Everywhere' and show the first 5.,Pathfinding Queries,twitter
+Who are the top 5 users similar to 'neo4j' based on the similarity score?,Pathfinding Queries,twitter
+List all the links contained in tweets posted by 'neo4j'.,Pathfinding Queries,twitter
+Find tweets mentioning any user and list the top 5.,Pathfinding Queries,twitter
+What are the top 3 sources from which 'neo4j' has tweeted?,Pathfinding Queries,twitter
+Display the first 3 tweets from 'neo4j' that contain a hashtag.,Pathfinding Queries,twitter
+Who are the first 3 users that 'neo4j' has retweeted?,Pathfinding Queries,twitter
+Find the top 5 users by number of statuses posted.,Pathfinding Queries,twitter
+Which tweets from 'neo4j' contain a link to an external website?,Pathfinding Queries,twitter
+List the first 3 users followed by 'neo4j' with a betweenness of zero.,Pathfinding Queries,twitter
+Show the tweets with a favorite count between 50 and 100 and list the first 5.,Pathfinding Queries,twitter
+What are the top 5 most active users in terms of tweeting from 'Graphs Are Everywhere'?,Pathfinding Queries,twitter
+Which users mentioned by 'neo4j' in tweets have more followers than 'neo4j'?,Pathfinding Queries,twitter
+Show the first 3 tweets that 'neo4j' has amplified.,Pathfinding Queries,twitter
+Find the first 3 tweets where 'neo4j' is mentioned and the tweet is a retweet.,Pathfinding Queries,twitter
+Which users does 'neo4j' interact with the most and list the top 5?,Pathfinding Queries,twitter
+List the first 3 users similar to 'neo4j' with a similarity score above 0.5.,Pathfinding Queries,twitter
+Show the top 5 users that have posted tweets using the source 'Buffer'.,Pathfinding Queries,twitter
+Which tweets have been retweeted by 'neo4j' and contain a hashtag?,Pathfinding Queries,twitter
+"List the first 3 tweets from users who follow more than 10,000 users.",Pathfinding Queries,twitter
+Show the first 3 users followed by 'neo4j' who also follow 'neo4j'.,Pathfinding Queries,twitter
+What are the top 5 tweets by 'neo4j' with the most replies?,Pathfinding Queries,twitter
+Find all users who follow 'neo4j' and are located in 'Graphs Are Everywhere'.,Pathfinding Queries,twitter
+Which tweets posted by 'neo4j' have been retweeted by other users?,Pathfinding Queries,twitter
+Show the top 5 tweets that reply to another tweet and contain a link.,Pathfinding Queries,twitter
+Find the first 3 users who follow 'neo4j' and have a betweenness greater than 100 million.,Pathfinding Queries,twitter
+List the first 3 tweets by 'neo4j' that have been tagged with a hashtag and mention another user.,Pathfinding Queries,twitter
+Which users followed by 'neo4j' have posted tweets mentioning 'neo4j'?,Pathfinding Queries,twitter
+Show the tweets that 'neo4j' has retweeted from users with a lower follower count.,Pathfinding Queries,twitter
+What are the top 5 locations of users who interact with 'neo4j'?,Pathfinding Queries,twitter
+List all tweets from 'neo4j' that have been amplified and show the first 5.,Pathfinding Queries,twitter
+Find the first 3 users who have retweeted tweets posted by 'neo4j'.,Pathfinding Queries,twitter
+Which tweets posted by 'neo4j' mention a user with a follower count greater than 'neo4j'?,Pathfinding Queries,twitter
+Display the first 3 tweets by 'neo4j' that use the source 'Buffer'.,Pathfinding Queries,twitter
+Who are the top 5 users followed by 'neo4j' with the highest betweenness?,Pathfinding Queries,twitter
+List the first 3 tweets where 'neo4j' is mentioned and the tweet has been favorited more than 50 times.,Pathfinding Queries,twitter
+What are the top 5 hashtags in tweets retweeted by 'neo4j'?,Pathfinding Queries,twitter
+Find all tweets from users who follow 'neo4j' and list the top 5.,Pathfinding Queries,twitter
+Which users followed by 'neo4j' have a higher status count than 'neo4j'?,Pathfinding Queries,twitter
+Show the first 3 tweets from users who have interacted with 'neo4j'.,Pathfinding Queries,twitter
+List the first 3 users similar to 'neo4j' with a similarity score below 0.5.,Pathfinding Queries,twitter
+Which tweets posted by 'neo4j' have been tagged with 'education'?,Pathfinding Queries,twitter
+Show the top 5 tweets that contain links and are retweeted by 'neo4j'.,Pathfinding Queries,twitter
+Find the first 3 tweets by 'neo4j' that reply to another tweet.,Pathfinding Queries,twitter
+Who are the top 5 users that 'neo4j' mentions the most in tweets?,Pathfinding Queries,twitter
+List all tweets by 'neo4j' that have more than 200 favorites and show the first 5.,Pathfinding Queries,twitter
+Which users does 'neo4j' amplify the most and list the top 5?,Pathfinding Queries,twitter
+Find the first 3 users who have mentioned 'neo4j' in tweets and follow 'neo4j'.,Pathfinding Queries,twitter
+List the first 3 tweets from 'neo4j' that have been retweeted and mention another user.,Pathfinding Queries,twitter
+Who are the top 5 users that 'neo4j' retweets the most?,Pathfinding Queries,twitter
+Show the tweets where 'neo4j' is mentioned and the tweet has a favorite count over 100.,Pathfinding Queries,twitter
+Find all users who mention 'neo4j' in their tweets and are located in 'Graphs Are Everywhere'.,Pathfinding Queries,twitter
+Which tweets by 'neo4j' have been retweeted more than 50 times?,Pathfinding Queries,twitter
+List the first 3 users followed by 'neo4j' who have posted a tweet with more than 50 favorites.,Pathfinding Queries,twitter
+Show the top 5 tweets by 'neo4j' that have been retweeted and contain a link.,Pathfinding Queries,twitter
+Find the first 3 users who have amplified tweets posted by 'neo4j'.,Pathfinding Queries,twitter
+What are the top 5 sources used in tweets that mention 'neo4j'?,Pathfinding Queries,twitter
+List all tweets by 'neo4j' that reply to another tweet and contain a hashtag.,Pathfinding Queries,twitter
+Which users mentioned in 'neo4j' tweets have more following than 'neo4j'?,Pathfinding Queries,twitter
+Show the first 3 tweets from 'neo4j' that have been amplified by other users.,Pathfinding Queries,twitter
+Find the top 5 tweets by 'neo4j' that mention another user and have been retweeted.,Pathfinding Queries,twitter
+Which users followed by 'neo4j' have a location of 'Graphs Are Everywhere' and list the top 5.,Pathfinding Queries,twitter
+List the first 3 users who follow 'neo4j' and have been mentioned in tweets by 'neo4j'.,Pathfinding Queries,twitter
+Show the top 5 tweets by 'neo4j' that have been retweeted and tag a hashtag.,Pathfinding Queries,twitter
+Find all tweets that 'neo4j' has retweeted from users located in 'Graphs Are Everywhere' and show the first 5.,Pathfinding Queries,twitter
+Which users followed by 'neo4j' have tweeted using the source 'Buffer' and list the top 5.,Pathfinding Queries,twitter
+List the first 3 tweets from 'neo4j' that contain links to external websites.,Pathfinding Queries,twitter
+What are the names of the top 5 users with the highest number of followers?,Complex Aggregation Queries,twitter
+List the top 3 tweets with the most favorites.,Complex Aggregation Queries,twitter
+Which users are followed by 'Neo4j' and have more than 1000 followers?,Complex Aggregation Queries,twitter
+Find the top 5 users with the highest betweenness centrality.,Complex Aggregation Queries,twitter
+Who are the top 3 users that 'Neo4j' interacts with most frequently?,Complex Aggregation Queries,twitter
+What are the names of the top 3 hashtags used in tweets by 'Neo4j'?,Complex Aggregation Queries,twitter
+Which sources are used in the top 5 most favorited tweets?,Complex Aggregation Queries,twitter
+List the top 3 tweets that mention 'Neo4j' and have more than 100 favorites.,Complex Aggregation Queries,twitter
+What are the locations of the top 5 users by number of statuses posted?,Complex Aggregation Queries,twitter
+Who has 'Neo4j' retweeted the most? List the top 3 users.,Complex Aggregation Queries,twitter
+Find the top 5 tweets with links and sort them by number of favorites.,Complex Aggregation Queries,twitter
+What are the screen names of the top 3 users who have posted the most tweets?,Complex Aggregation Queries,twitter
+Which hashtags have been tagged in tweets that have more than 200 favorites? List the top 3.,Complex Aggregation Queries,twitter
+List the top 3 users with the lowest following counts who follow 'Neo4j'.,Complex Aggregation Queries,twitter
+Which users have a similar score greater than 0.5 with 'Neo4j'? List the top 3.,Complex Aggregation Queries,twitter
+Who are the top 5 most followed users that 'Neo4j' amplifies?,Complex Aggregation Queries,twitter
+List the profile image URLs of the top 3 users who have mentioned 'Neo4j' in their tweets.,Complex Aggregation Queries,twitter
+What are the URLs of the top 3 most favorited tweets containing links?,Complex Aggregation Queries,twitter
+Who are the top 3 followers of 'Neo4j' based on betweenness centrality?,Complex Aggregation Queries,twitter
+List the names of the top 5 tweets that reply to another tweet and have more than 50 favorites.,Complex Aggregation Queries,twitter
+What are the top 3 locations where users who interact with 'Neo4j' are based?,Complex Aggregation Queries,twitter
+Which users followed by 'Neo4j' have posted the most about a specific hashtag? List the top 3.,Complex Aggregation Queries,twitter
+Find the top 5 tweets by 'Neo4j' using a specific source.,Complex Aggregation Queries,twitter
+What are the top 3 hashtags used in the tweets that have been retweeted by 'Neo4j'?,Complex Aggregation Queries,twitter
+List the top 3 tweets from 'Neo4j' that have been retweeted more than 100 times.,Complex Aggregation Queries,twitter
+Which users have 'Neo4j' mentioned the most in tweets? List the top 3.,Complex Aggregation Queries,twitter
+Find the top 5 users who follow 'Neo4j' and are from the same location as 'Neo4j'.,Complex Aggregation Queries,twitter
+What are the URL profiles of the top 3 users who have retweeted 'Neo4j's tweets?,Complex Aggregation Queries,twitter
+List the names of the top 5 users who have the highest scores of being similar to 'Neo4j'.,Complex Aggregation Queries,twitter
+Who are the top 3 users that 'Neo4j' follows and have tweeted more than 500 times?,Complex Aggregation Queries,twitter
+Who are the top 5 users that a specific user named 'Neo4j' follows?,Verbose query,twitter
+List the first 3 users followed by a user with the screen name 'thobe'.,Verbose query,twitter
+What are the top 3 tweets posted by the user with the screen name 'neo4j'?,Verbose query,twitter
+Which users have a betweenness greater than 300000000?,Verbose query,twitter
+Identify the first 3 users followed by 'Neo4j' who have more than 500 followers.,Verbose query,twitter
+List the top 5 tweets that mention the user with the screen name 'neo4j'.,Verbose query,twitter
+What are the top 5 hashtags used in tweets by the user named 'Neo4j'?,Verbose query,twitter
+List the first 3 sources used in tweets posted by 'Neo4j'.,Verbose query,twitter
+Who are the top 5 users interacting with 'Neo4j' via the INTERACTS_WITH relationship?,Verbose query,twitter
+Which users are similar to 'Neo4j' with a similarity score above 0.5?,Verbose query,twitter
+Show the first 3 tweets that 'Neo4j' retweets.,Verbose query,twitter
+Which users are amplified by 'Me' according to the AMPLIFIES relationship?,Verbose query,twitter
+List the top 3 users who follow 'Me' and also have a following count over 10000.,Verbose query,twitter
+Who are the top 3 users mentioned in tweets posted by 'Me'?,Verbose query,twitter
+What are the first 3 links contained in tweets posted by 'Me'?,Verbose query,twitter
+Identify the first 3 tweets posted by 'Me' that reply to another tweet.,Verbose query,twitter
+List the top 5 tweets by 'Me' using a specific source named 'Buffer'.,Verbose query,twitter
+Which users does 'Neo4j' follow that have a location set to 'Graphs Are Everywhere'?,Verbose query,twitter
+List the first 3 tweets containing a hashtag named 'education'.,Verbose query,twitter
+Who are the top 5 users that 'Neo4j' interacts with and also follows?,Verbose query,twitter
+What are the top 3 tweets that retweet a tweet by 'Neo4j'?,Verbose query,twitter
+List the first 3 users followed by 'Me' who have a profile image URL ending with 'normal.jpg'.,Verbose query,twitter
+Identify the top 5 tweets by 'Neo4j' that have been favorited more than 100 times.,Verbose query,twitter
+Which users followed by 'Neo4j' have a URL starting with 'https'?,Verbose query,twitter
+List the first 3 hashtags used in tweets that 'Me' posts.,Verbose query,twitter
+Who are the top 3 users mentioned in the tweets that 'Me' retweets?,Verbose query,twitter
+What are the first 3 sources used in tweets that 'Me' amplifies?,Verbose query,twitter
+List the first 3 tweets by 'Neo4j' that contain a link to 'https://twitter.com'.,Verbose query,twitter
+Which users does 'Me' follow that are similar to 'Neo4j' with a similarity score above 0.8?,Verbose query,twitter
+List the first 3 users that 'Me' interacts with who have a betweenness greater than 100000000.,Verbose query,twitter
+Identify the top 5 users who follow 'Neo4j' and are located in 'Graphs Are Everywhere'.,Verbose query,twitter
+What are the first 3 tweets posted by 'Me' that tag a hashtag named 'education'?,Verbose query,twitter
+List the top 5 users that 'Me' mentions in tweets.,Verbose query,twitter
+Who are the top 3 users that 'Neo4j' retweets?,Verbose query,twitter
+Identify the first 3 links in tweets posted by 'Neo4j' that lead to a government website.,Verbose query,twitter
+List the top 5 tweets by 'Me' that were created between January and February 2021.,Verbose query,twitter
+Which users followed by 'Neo4j' have a profile image URL that does not end with 'normal.jpg'?,Verbose query,twitter
+List the first 3 hashtags used in tweets that 'Neo4j' amplifies.,Verbose query,twitter
+Who are the top 3 users mentioned in the tweets that 'Neo4j' mentions?,Verbose query,twitter
+What are the first 3 sources used in tweets that 'Neo4j' retweets?,Verbose query,twitter
diff --git a/datasets/synthetic_haiku35_demodbs/text2cypher_schemas.csv b/datasets/synthetic_haiku35_demodbs/text2cypher_schemas.csv
new file mode 100644
index 0000000..fc26213
--- /dev/null
+++ b/datasets/synthetic_haiku35_demodbs/text2cypher_schemas.csv
@@ -0,0 +1,868 @@
+database,schema,structured_schema
+recommendations,"Node properties:
+- **Movie**
+ - `url`: STRING Example: ""https://themoviedb.org/movie/862""
+ - `runtime`: INTEGER Min: 2, Max: 910
+ - `revenue`: INTEGER Min: 1, Max: 2787965087
+ - `imdbRating`: FLOAT Min: 1.6, Max: 9.6
+ - `released`: STRING Example: ""1995-11-22""
+ - `countries`: LIST Min Size: 1, Max Size: 16
+ - `languages`: LIST Min Size: 1, Max Size: 19
+ - `plot`: STRING Example: ""A cowboy doll is profoundly threatened and jealous""
+ - `imdbVotes`: INTEGER Min: 13, Max: 1626900
+ - `imdbId`: STRING Example: ""0114709""
+ - `year`: INTEGER Min: 1902, Max: 2016
+ - `poster`: STRING Example: ""https://image.tmdb.org/t/p/w440_and_h660_face/uXDf""
+ - `movieId`: STRING Example: ""1""
+ - `tmdbId`: STRING Example: ""862""
+ - `title`: STRING Example: ""Toy Story""
+ - `budget`: INTEGER Min: 1, Max: 380000000
+- **Genre**
+ - `name`: STRING Example: ""Adventure""
+- **User**
+ - `userId`: STRING Example: ""1""
+ - `name`: STRING Example: ""Omar Huffman""
+- **Actor**
+ - `url`: STRING Example: ""https://themoviedb.org/person/1271225""
+ - `name`: STRING Example: ""François Lallement""
+ - `tmdbId`: STRING Example: ""1271225""
+ - `bornIn`: STRING Example: ""France""
+ - `bio`: STRING Example: ""From Wikipedia, the free encyclopedia Lillian Di""
+ - `died`: DATE Example: ""1954-01-01""
+ - `born`: DATE Example: ""1877-02-04""
+ - `imdbId`: STRING Example: ""2083046""
+ - `poster`: STRING Example: ""https://image.tmdb.org/t/p/w440_and_h660_face/6DCW""
+- **Director**
+ - `url`: STRING Example: ""https://themoviedb.org/person/88953""
+ - `bornIn`: STRING Example: ""Burchard, Nebraska, USA""
+ - `born`: DATE Min: 1861-12-08, Max: 2018-05-01
+ - `died`: DATE Min: 1930-08-26, Max: 2976-09-29
+ - `tmdbId`: STRING Example: ""88953""
+ - `imdbId`: STRING Example: ""0516001""
+ - `name`: STRING Example: ""Harold Lloyd""
+ - `poster`: STRING Example: ""https://image.tmdb.org/t/p/w440_and_h660_face/er4Z""
+ - `bio`: STRING Example: ""Harold Lloyd has been called the cinema’s “first m""
+- **Person**
+ - `url`: STRING Example: ""https://themoviedb.org/person/1271225""
+ - `died`: DATE Example: ""1954-01-01""
+ - `bornIn`: STRING Example: ""France""
+ - `born`: DATE Example: ""1877-02-04""
+ - `imdbId`: STRING Example: ""2083046""
+ - `name`: STRING Example: ""François Lallement""
+ - `poster`: STRING Example: ""https://image.tmdb.org/t/p/w440_and_h660_face/6DCW""
+ - `tmdbId`: STRING Example: ""1271225""
+ - `bio`: STRING Example: ""From Wikipedia, the free encyclopedia Lillian Di""
+Relationship properties:
+- **RATED**
+ - `rating: FLOAT` Example: ""2.0""
+ - `timestamp: INTEGER` Example: ""1260759108""
+- **ACTED_IN**
+ - `role: STRING` Example: ""Officer of the Marines (uncredited)""
+- **DIRECTED**
+ - `role: STRING`
+The relationships:
+(:Movie)-[:IN_GENRE]->(:Genre)
+(:User)-[:RATED]->(:Movie)
+(:Actor)-[:ACTED_IN]->(:Movie)
+(:Actor)-[:DIRECTED]->(:Movie)
+(:Director)-[:DIRECTED]->(:Movie)
+(:Director)-[:ACTED_IN]->(:Movie)
+(:Person)-[:ACTED_IN]->(:Movie)
+(:Person)-[:DIRECTED]->(:Movie)","{'node_props': {'Movie': [{'property': 'url', 'type': 'STRING', 'values': ['https://themoviedb.org/movie/862', 'https://themoviedb.org/movie/8844', 'https://themoviedb.org/movie/15602', 'https://themoviedb.org/movie/31357', 'https://themoviedb.org/movie/11862', 'https://themoviedb.org/movie/949', 'https://themoviedb.org/movie/11860', 'https://themoviedb.org/movie/45325', 'https://themoviedb.org/movie/9091', 'https://themoviedb.org/movie/710'], 'distinct_count': 9117}, {'property': 'runtime', 'type': 'INTEGER', 'min': '2', 'max': '910', 'distinct_count': 230}, {'property': 'revenue', 'type': 'INTEGER', 'min': '1', 'max': '2787965087', 'distinct_count': 4956}, {'property': 'plotEmbedding', 'type': 'LIST', 'max_size': 1536, 'min_size': 1536}, {'property': 'posterEmbedding', 'type': 'LIST', 'max_size': 512, 'min_size': 512}, {'property': 'imdbRating', 'type': 'FLOAT', 'min': '1.6', 'max': '9.6', 'distinct_count': 77}, {'property': 'released', 'type': 'STRING', 'values': ['1995-11-22', '1995-12-15', '1995-12-22', '1995-12-08', '1995-11-17', '1996-01-05', '1996-01-26', '1995-12-25', '1995-11-10', '1995-10-20'], 'distinct_count': 4824}, {'property': 'countries', 'type': 'LIST', 'max_size': 16, 'min_size': 1}, {'property': 'languages', 'type': 'LIST', 'max_size': 19, 'min_size': 1}, {'property': 'plot', 'type': 'STRING', 'values': ['A cowboy doll is profoundly threatened and jealous', 'When two kids find and play a magical board game, ', 'John and Max resolve to save their beloved bait sh', ""Based on Terry McMillan's novel, this film follows"", 'In this sequel, George Banks deals not only with t', 'A group of professional bank robbers start to feel', 'An ugly duckling having undergone a remarkable cha', ""Tom and Huck witness Injun Joe's killing of Doc Ro"", 'A former fireman takes on a group of terrorists ho', 'James Bond teams up with the lone survivor of a de'], 'distinct_count': 9072}, {'property': 'imdbVotes', 'type': 'INTEGER', 'min': '13', 'max': '1626900', 'distinct_count': 8190}, {'property': 'imdbId', 'type': 'STRING', 'values': ['0114709', '0113497', '0113228', '0114885', '0113041', '0113277', '0114319', '0112302', '0114576', '0113189'], 'distinct_count': 9125}, {'property': 'year', 'type': 'INTEGER', 'min': '1902', 'max': '2016', 'distinct_count': 103}, {'property': 'poster', 'type': 'STRING', 'values': ['https://image.tmdb.org/t/p/w440_and_h660_face/uXDf', 'https://image.tmdb.org/t/p/w440_and_h660_face/vgpX', 'https://image.tmdb.org/t/p/w440_and_h660_face/1FSX', 'https://image.tmdb.org/t/p/w440_and_h660_face/4wjG', 'https://image.tmdb.org/t/p/w440_and_h660_face/lf9R', 'https://image.tmdb.org/t/p/w440_and_h660_face/rrBu', 'https://image.tmdb.org/t/p/w440_and_h660_face/z1oN', 'https://image.tmdb.org/t/p/w440_and_h660_face/lOnb', 'https://image.tmdb.org/t/p/w440_and_h660_face/4Sni', 'https://image.tmdb.org/t/p/w440_and_h660_face/z0lj'], 'distinct_count': 8971}, {'property': 'movieId', 'type': 'STRING', 'values': ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'], 'distinct_count': 9125}, {'property': 'tmdbId', 'type': 'STRING', 'values': ['862', '8844', '15602', '31357', '11862', '949', '11860', '45325', '9091', '710'], 'distinct_count': 9121}, {'property': 'title', 'type': 'STRING', 'values': ['Toy Story', 'Jumanji', 'Grumpier Old Men', 'Waiting to Exhale', 'Father of the Bride Part II', 'Heat', 'Sabrina', 'Tom and Huck', 'Sudden Death', 'GoldenEye'], 'distinct_count': 8893}, {'property': 'budget', 'type': 'INTEGER', 'min': '1', 'max': '380000000', 'distinct_count': 662}], 'Genre': [{'property': 'name', 'type': 'STRING', 'values': ['Adventure', 'Animation', 'Children', 'Comedy', 'Fantasy', 'Romance', 'Drama', 'Action', 'Crime', 'Thriller'], 'distinct_count': 20}], 'User': [{'property': 'userId', 'type': 'STRING', 'values': ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'], 'distinct_count': 671}, {'property': 'name', 'type': 'STRING', 'values': ['Omar Huffman', 'Mr. Jason Love', 'Angela Thompson', 'Jessica Sherman', 'Oscar Harmon', 'Jessica Wilson', 'Kyle Bailey', 'John Henderson', 'Tracey Irwin', 'Margaret Allen'], 'distinct_count': 669}], 'Actor': [{'property': 'url', 'type': 'STRING', 'values': ['https://themoviedb.org/person/1271225', 'https://themoviedb.org/person/1602569', 'https://themoviedb.org/person/8828', 'https://themoviedb.org/person/8829', 'https://themoviedb.org/person/8830']}, {'property': 'name', 'type': 'STRING', 'values': ['François Lallement', 'Jules-Eugène Legris', 'Lillian Gish', 'Mae Marsh', 'Henry B. Walthall']}, {'property': 'tmdbId', 'type': 'STRING', 'values': ['1271225', '1602569', '8828', '8829', '8830']}, {'property': 'bornIn', 'type': 'STRING', 'values': ['France', 'Springfield, Ohio, USA', 'Madrid, New Mexico Territory , USA', 'Shelby County, Alabama, USA']}, {'property': 'bio', 'type': 'STRING', 'values': ['\u200bFrom Wikipedia, the free encyclopedia\n\nLillian Di', 'Mae Marsh (born Mary Wayne Marsh, November 9, 1894', '\u200bFrom Wikipedia, the free encyclopedia\n\nHenry Braz']}, {'property': 'died', 'type': 'DATE', 'values': ['1954-01-01', '1926-01-01', '1993-02-27', '1968-02-13', '1936-06-17']}, {'property': 'born', 'type': 'DATE', 'values': ['1877-02-04', '1862-01-01', '1893-10-14', '1894-11-09', '1878-03-16']}, {'property': 'imdbId', 'type': 'STRING', 'values': ['2083046', '6170115', '0001273', '0550615', '0910400']}, {'property': 'poster', 'type': 'STRING', 'values': ['https://image.tmdb.org/t/p/w440_and_h660_face/6DCW', 'https://image.tmdb.org/t/p/w440_and_h660_face/wEHH', 'https://image.tmdb.org/t/p/w440_and_h660_face/5RZt']}], 'Director': [{'property': 'url', 'type': 'STRING', 'values': ['https://themoviedb.org/person/88953', 'https://themoviedb.org/person/29123', 'https://themoviedb.org/person/8635', 'https://themoviedb.org/person/143998', 'https://themoviedb.org/person/13953', 'https://themoviedb.org/person/14481', 'https://themoviedb.org/person/8841', 'https://themoviedb.org/person/2106', 'https://themoviedb.org/person/13355', 'https://themoviedb.org/person/10921'], 'distinct_count': 4091}, {'property': 'bornIn', 'type': 'STRING', 'values': ['Burchard, Nebraska, USA', 'Arnoldsdorf, West Prussia, Germany [now Jarantowic', 'Piqua, Kansas, USA', 'Los Angeles, California, USA', 'Kenosha, Wisconsin, USA', 'Colorado Springs, Colorado, USA', 'Bow, London, England, UK', 'Hermosa, Chicago, Illinois, USA', 'West Newton, Massachusetts, United States', 'Scarborough, North Riding of Yorkshire, England, U'], 'distinct_count': 1606}, {'property': 'born', 'type': 'DATE', 'min': '1861-12-08', 'max': '2018-05-01', 'distinct_count': 2574}, {'property': 'died', 'type': 'DATE', 'min': '1930-08-26', 'max': '2976-09-29', 'distinct_count': 733}, {'property': 'tmdbId', 'type': 'STRING', 'values': ['88953', '29123', '8635', '143998', '13953', '14481', '8841', '2106', '13355', '10921'], 'distinct_count': 4091}, {'property': 'imdbId', 'type': 'STRING', 'values': ['0516001', '0917467', '0000036', '0820461', '0166836', '0151606', '0187981', '0000370', '0674019', '0001452'], 'distinct_count': 3988}, {'property': 'name', 'type': 'STRING', 'values': ['Harold Lloyd', 'Paul Wegener', 'Buster Keaton', 'Malcolm St. Clair', 'Edward F. Cline', 'Lon Chaney', 'Donald Crisp', 'Walt Disney', 'Osgood Perkins', 'Charles Laughton'], 'distinct_count': 4070}, {'property': 'poster', 'type': 'STRING', 'values': ['https://image.tmdb.org/t/p/w440_and_h660_face/er4Z', 'https://image.tmdb.org/t/p/w440_and_h660_face/6D04', 'https://image.tmdb.org/t/p/w440_and_h660_face/kEyb', 'https://image.tmdb.org/t/p/w440_and_h660_face/eeTY', 'https://image.tmdb.org/t/p/w440_and_h660_face/6lNC', 'https://image.tmdb.org/t/p/w440_and_h660_face/3wZ0', 'https://image.tmdb.org/t/p/w440_and_h660_face/rZHp', 'https://image.tmdb.org/t/p/w440_and_h660_face/rucT', 'https://image.tmdb.org/t/p/w440_and_h660_face/tU3s', 'https://image.tmdb.org/t/p/w440_and_h660_face/eRTD'], 'distinct_count': 2029}, {'property': 'bio', 'type': 'STRING', 'values': ['Harold Lloyd has been called the cinema’s “first m', 'Paul Wegener was a German actor known for his pion', 'Buster Keaton was an American comic actor, filmmak', 'Edward F. Cline was an American screenwriter, act', 'Lon Chaney (born Leonidas Frank Chaney) - nickname', 'Donald Crisp was born George William Crisp at the ', '\u200bFrom Wikipedia, the free encyclopedia. \xa0\n\nWalter', '\u200bFrom Wikipedia, the free encyclopedia. \xa0\n\nOsgood', 'From Wikipedia, the free encyclopedia. \n\nCharles L', 'Marion Mitchell Morrison (born Marion Robert Morri'], 'distinct_count': 2641}], 'Person': [{'property': 'url', 'type': 'STRING', 'values': ['https://themoviedb.org/person/1271225', 'https://themoviedb.org/person/1602569', 'https://themoviedb.org/person/8828', 'https://themoviedb.org/person/8829', 'https://themoviedb.org/person/8830']}, {'property': 'died', 'type': 'DATE', 'values': ['1954-01-01', '1926-01-01', '1993-02-27', '1968-02-13', '1936-06-17']}, {'property': 'bornIn', 'type': 'STRING', 'values': ['France', 'Springfield, Ohio, USA', 'Madrid, New Mexico Territory , USA', 'Shelby County, Alabama, USA']}, {'property': 'born', 'type': 'DATE', 'values': ['1877-02-04', '1862-01-01', '1893-10-14', '1894-11-09', '1878-03-16']}, {'property': 'imdbId', 'type': 'STRING', 'values': ['2083046', '6170115', '0001273', '0550615', '0910400']}, {'property': 'name', 'type': 'STRING', 'values': ['François Lallement', 'Jules-Eugène Legris', 'Lillian Gish', 'Mae Marsh', 'Henry B. Walthall']}, {'property': 'poster', 'type': 'STRING', 'values': ['https://image.tmdb.org/t/p/w440_and_h660_face/6DCW', 'https://image.tmdb.org/t/p/w440_and_h660_face/wEHH', 'https://image.tmdb.org/t/p/w440_and_h660_face/5RZt']}, {'property': 'tmdbId', 'type': 'STRING', 'values': ['1271225', '1602569', '8828', '8829', '8830']}, {'property': 'bio', 'type': 'STRING', 'values': ['\u200bFrom Wikipedia, the free encyclopedia\n\nLillian Di', 'Mae Marsh (born Mary Wayne Marsh, November 9, 1894', '\u200bFrom Wikipedia, the free encyclopedia\n\nHenry Braz']}]}, 'rel_props': {'RATED': [{'property': 'rating', 'type': 'FLOAT', 'values': ['2.0', '2.5', '1.0', '3.0', '4.0']}, {'property': 'timestamp', 'type': 'INTEGER', 'values': ['1260759108', '1260759113', '1260759200', '1260759117', '1260759191']}], 'ACTED_IN': [{'property': 'role', 'type': 'STRING', 'values': ['Officer of the Marines (uncredited)', 'Parade Leader (uncredited)', 'Rachel Cooper', 'Hetty Seibert', 'The Woman Who Rocks the Cradle']}], 'DIRECTED': [{'property': 'role', 'type': 'STRING', 'values': []}]}, 'relationships': [{'start': 'Movie', 'type': 'IN_GENRE', 'end': 'Genre'}, {'start': 'User', 'type': 'RATED', 'end': 'Movie'}, {'start': 'Actor', 'type': 'ACTED_IN', 'end': 'Movie'}, {'start': 'Actor', 'type': 'DIRECTED', 'end': 'Movie'}, {'start': 'Director', 'type': 'DIRECTED', 'end': 'Movie'}, {'start': 'Director', 'type': 'ACTED_IN', 'end': 'Movie'}, {'start': 'Person', 'type': 'ACTED_IN', 'end': 'Movie'}, {'start': 'Person', 'type': 'DIRECTED', 'end': 'Movie'}], 'metadata': {'constraint': [{'id': 76, 'name': 'constraint_3b27b0', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['User'], 'properties': ['userId'], 'ownedIndex': 'constraint_3b27b0', 'propertyType': None}, {'id': 75, 'name': 'constraint_3d5fcb7f', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Movie'], 'properties': ['movieId'], 'ownedIndex': 'constraint_3d5fcb7f', 'propertyType': None}, {'id': 73, 'name': 'constraint_4499eae9', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Person'], 'properties': ['tmdbId'], 'ownedIndex': 'constraint_4499eae9', 'propertyType': None}, {'id': 77, 'name': 'constraint_737d9c1d', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Movie'], 'properties': ['tmdbId'], 'ownedIndex': 'constraint_737d9c1d', 'propertyType': None}, {'id': 3, 'name': 'constraint_f7832722', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['_Bloom_Perspective_'], 'properties': ['id'], 'ownedIndex': 'constraint_f7832722', 'propertyType': None}, {'id': 74, 'name': 'constraint_f8689281', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Genre'], 'properties': ['name'], 'ownedIndex': 'constraint_f8689281', 'propertyType': None}], 'index': [{'label': 'Genre', 'properties': ['name'], 'size': 20, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 20.0}, {'label': 'Movie', 'properties': ['title'], 'size': 9125, 'type': 'RANGE', 'valuesSelectivity': 0.9745753424657534, 'distinctValues': 8893.0}, {'label': 'Movie', 'properties': ['tagline'], 'size': 0, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 0.0}, {'label': 'Movie', 'properties': ['year'], 'size': 9096, 'type': 'RANGE', 'valuesSelectivity': 0.011323658751099384, 'distinctValues': 103.0}, {'label': 'Movie', 'properties': ['imdbRating'], 'size': 9058, 'type': 'RANGE', 'valuesSelectivity': 0.008500772797527048, 'distinctValues': 77.0}, {'label': 'Movie', 'properties': ['released'], 'size': 9041, 'type': 'RANGE', 'valuesSelectivity': 0.5335692954319212, 'distinctValues': 4824.0}, {'label': 'Movie', 'properties': ['imdbId'], 'size': 9125, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 9125.0}, {'label': 'Movie', 'properties': ['movieId'], 'size': 9125, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 9125.0}, {'label': 'Movie', 'properties': ['tmdbId'], 'size': 9121, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 9121.0}, {'label': 'Person', 'properties': ['name'], 'size': 19047, 'type': 'RANGE', 'valuesSelectivity': 0.99826744369192, 'distinctValues': 19014.0}, {'label': 'Person', 'properties': ['tmdbId'], 'size': 19047, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 19047.0}, {'label': 'User', 'properties': ['userId'], 'size': 671, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 671.0}, {'label': 'User', 'properties': ['name'], 'size': 671, 'type': 'RANGE', 'valuesSelectivity': 0.9970193740685543, 'distinctValues': 669.0}, {'label': '_Bloom_Perspective_', 'properties': ['id'], 'size': 1, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1.0}]}}"
+buzzoverflow,"Node properties:
+- **Question**
+ - `favorites`: INTEGER Example: ""0""
+ - `answered`: BOOLEAN
+ - `text`: STRING Example: ""### This is: Bug ### Specifications OS: Win10""
+ - `link`: STRING Example: ""https://stackoverflow.com/questions/62224586/playg""
+ - `createdAt`: DATE_TIME Min: 2020-06-05T16:57:19Z, Max: 2020-06-05T21:49:16Z
+ - `title`: STRING Example: ""Playground is not loading with apollo-server-lambd""
+ - `id`: INTEGER Min: 62220505, Max: 62224586
+ - `upVotes`: INTEGER Example: ""0""
+ - `score`: INTEGER Example: ""-1""
+ - `downVotes`: INTEGER Example: ""1""
+- **Tag**
+ - `name`: STRING Example: ""aws-lambda""
+- **User**
+ - `image`: STRING Example: ""https://lh3.googleusercontent.com/-NcFYSuXU0nk/AAA""
+ - `link`: STRING Example: ""https://stackoverflow.com/users/10251021/alexandre""
+ - `id`: INTEGER Min: 751, Max: 13681006
+ - `reputation`: INTEGER Min: 1, Max: 420137
+ - `display_name`: STRING Example: ""Alexandre Le""
+Relationship properties:
+
+The relationships:
+(:Question)-[:TAGGED]->(:Tag)
+(:User)-[:ASKED]->(:Question)","{'node_props': {'Question': [{'property': 'favorites', 'type': 'INTEGER', 'values': ['0']}, {'property': 'answered', 'type': 'BOOLEAN'}, {'property': 'text', 'type': 'STRING', 'values': ['### This is:\r\nBug\r\n\r\n### Specifications\r\nOS: Win10', 'I was trying to create subscription using the libr', 'Using GraphQL with React and Drupal is pretty inte', 'Here's the data:\r\n\r\n[![enter image description', 'I have sensor that can sense 20 different things: ']}, {'property': 'link', 'type': 'STRING', 'values': ['https://stackoverflow.com/questions/62224586/playg', 'https://stackoverflow.com/questions/62222652/graph', 'https://stackoverflow.com/questions/62222021/react', 'https://stackoverflow.com/questions/62220732/graph', 'https://stackoverflow.com/questions/62220505/using']}, {'property': 'createdAt', 'type': 'DATE_TIME', 'min': '2020-06-05T16:57:19Z', 'max': '2020-06-05T21:49:16Z', 'distinct_count': 5}, {'property': 'title', 'type': 'STRING', 'values': ['Playground is not loading with apollo-server-lambd', 'GraphQL subscription delay on first time', 'React w/ Apollo & Drupal nodeQuery - how to de', 'GraphQL query giving me a a "Cannot return nu', 'Using GraphQLResolveInfo in resolver']}, {'property': 'id', 'type': 'INTEGER', 'min': '62220505', 'max': '62224586', 'distinct_count': 5}, {'property': 'upVotes', 'type': 'INTEGER', 'values': ['0']}, {'property': 'score', 'type': 'INTEGER', 'values': ['-1', '0']}, {'property': 'downVotes', 'type': 'INTEGER', 'values': ['1', '0']}], 'Tag': [{'property': 'name', 'type': 'STRING', 'values': ['aws-lambda', 'graphql', 'apollo', 'node.js', 'graphql-subscriptions', 'drupal-8', 'react-apollo', 'apollo-client', 'angular', 'angular8'], 'distinct_count': 1554}], 'User': [{'property': 'image', 'type': 'STRING', 'values': ['https://lh3.googleusercontent.com/-NcFYSuXU0nk/AAA', 'https://lh3.googleusercontent.com/a-/AOh14GgivQVqM', 'https://www.gravatar.com/avatar/abe65349ae3d314fa8', 'https://www.gravatar.com/avatar/57254856adf547299e', 'https://www.gravatar.com/avatar/d0446727d4eb365b07', 'https://www.gravatar.com/avatar/9c46e1aafdd2001f4b', 'https://lh3.googleusercontent.com/-m6PWf40GPuc/AAA', 'https://www.gravatar.com/avatar/b988693ff42463c94f', 'https://i.stack.imgur.com/TvsSL.png?s=128&g=1', 'https://i.stack.imgur.com/UH76y.jpg?s=128&g=1'], 'distinct_count': 6894}, {'property': 'link', 'type': 'STRING', 'values': ['https://stackoverflow.com/users/10251021/alexandre', 'https://stackoverflow.com/users/13065972/abhijith-', 'https://stackoverflow.com/users/1429803/anthony-ga', 'https://stackoverflow.com/users/2957975/darkmatter', 'https://stackoverflow.com/users/2799999/gad0lin', 'https://stackoverflow.com/users/7075699/huy-nguyen', 'https://stackoverflow.com/users/11930438/muhammad-', 'https://stackoverflow.com/users/11971463/john-doe', 'https://stackoverflow.com/users/10129053/mrpbennet', 'https://stackoverflow.com/users/646334/chux'], 'distinct_count': 6947}, {'property': 'id', 'type': 'INTEGER', 'min': '751', 'max': '13681006', 'distinct_count': 6947}, {'property': 'reputation', 'type': 'INTEGER', 'min': '1', 'max': '420137', 'distinct_count': 2315}, {'property': 'display_name', 'type': 'STRING', 'values': ['Alexandre Le', 'Abhijith v', 'anthony galligani', 'Darkmatter5', 'gad0lin', 'Huy Nguyen', 'Muhammad Usama Malik', 'John Doe', 'mrpbennett', 'Chux'], 'distinct_count': 6719}]}, 'rel_props': {}, 'relationships': [{'start': 'Question', 'type': 'TAGGED', 'end': 'Tag'}, {'start': 'User', 'type': 'ASKED', 'end': 'Question'}], 'metadata': {'constraint': [{'id': 61, 'name': 'constraint_47e7f15d', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['User'], 'properties': ['id'], 'ownedIndex': 'constraint_47e7f15d', 'propertyType': None}, {'id': 59, 'name': 'constraint_64b1b1cf', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Tag'], 'properties': ['name'], 'ownedIndex': 'constraint_64b1b1cf', 'propertyType': None}, {'id': 65, 'name': 'constraint_939b067a', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Answer'], 'properties': ['id'], 'ownedIndex': 'constraint_939b067a', 'propertyType': None}, {'id': 63, 'name': 'constraint_f06c84a5', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Question'], 'properties': ['id'], 'ownedIndex': 'constraint_f06c84a5', 'propertyType': None}], 'index': [{'label': 'Answer', 'properties': ['id'], 'size': 0, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 0.0}, {'label': 'Answer', 'properties': ['createdAt'], 'size': 0, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 0.0}, {'label': 'Question', 'properties': ['createdAt'], 'size': 10000, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 10000.0}, {'label': 'Question', 'properties': ['text'], 'size': 0, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 0.0}, {'label': 'Question', 'properties': ['title'], 'size': 10000, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 10000.0}, {'label': 'Question', 'properties': ['id'], 'size': 10000, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 10000.0}, {'label': 'Tag', 'properties': ['name'], 'size': 1554, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1554.0}, {'label': 'User', 'properties': ['display_name'], 'size': 6947, 'type': 'RANGE', 'valuesSelectivity': 0.9671800777313948, 'distinctValues': 6719.0}, {'label': 'User', 'properties': ['name'], 'size': 0, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 0.0}, {'label': 'User', 'properties': ['id'], 'size': 6947, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 6947.0}]}}"
+bluesky,"Node properties:
+- **User**
+ - `label`: STRING Example: ""inchristbl.bsky.social""
+ - `key`: STRING Example: ""0""
+ - `y`: FLOAT Example: ""6000.659""
+ - `color`: STRING Example: ""#3CB371""
+ - `x`: FLOAT Example: ""-4383.217""
+ - `area`: FLOAT Example: ""2.6""
+ - `size`: FLOAT Example: ""1.82""
+Relationship properties:
+- **INTERACTED**
+ - `weight: INTEGER` Example: ""1""
+ - `ogWeight: INTEGER` Example: ""1""
+ - `size: FLOAT` Example: ""0.2""
+ - `key: STRING` Example: ""geid_68_0""
+The relationships:
+(:User)-[:INTERACTED]->(:User)","{'node_props': {'User': [{'property': 'label', 'type': 'STRING', 'values': ['inchristbl.bsky.social', 'r0yart.bsky.social', 'chromevoid.bsky.social', 'samiraingold.art', 'sarahp.bsky.social']}, {'property': 'key', 'type': 'STRING', 'values': ['0', '1', '2', '3', '4']}, {'property': 'y', 'type': 'FLOAT', 'values': ['6000.659', '7032.724', '4929.876', '5621.208', '-7333.085']}, {'property': 'color', 'type': 'STRING', 'values': ['#3CB371', '#87CEFA', '#4A708B']}, {'property': 'x', 'type': 'FLOAT', 'values': ['-4383.217', '-4857.137', '-3675.52', '-4477.705', '-3301.206']}, {'property': 'area', 'type': 'FLOAT', 'values': ['2.6', '1.77', '7.67', '4.94', '5.51']}, {'property': 'size', 'type': 'FLOAT', 'values': ['1.82', '1.5', '3.13', '2.51', '2.65']}]}, 'rel_props': {'INTERACTED': [{'property': 'weight', 'type': 'INTEGER', 'values': ['1', '3.39', '9.55']}, {'property': 'ogWeight', 'type': 'INTEGER', 'values': ['1', '3']}, {'property': 'size', 'type': 'FLOAT', 'values': ['0.2', '1.24', '2.11']}, {'property': 'key', 'type': 'STRING', 'values': ['geid_68_0', 'geid_68_1', 'geid_68_2', 'geid_68_3', 'geid_68_4']}]}, 'relationships': [{'start': 'User', 'type': 'INTERACTED', 'end': 'User'}], 'metadata': {'constraint': [{'id': 8, 'name': 'user_key', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['User'], 'properties': ['key'], 'ownedIndex': 'user_key', 'propertyType': None}], 'index': [{'label': 'User', 'properties': ['label'], 'size': 20405, 'type': 'RANGE', 'valuesSelectivity': 0.924234256309728, 'distinctValues': 18859.0}, {'label': 'User', 'properties': ['key'], 'size': 20405, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 20405.0}]}}"
+companies,"Node properties:
+- **Person**
+ - `name`: STRING Example: ""Julie Spellman Sweet""
+ - `id`: STRING Example: ""Eaf0bpz6NNoqLVUCqNZPAew""
+ - `summary`: STRING Example: ""CEO at Accenture""
+- **Organization**
+ - `revenue`: FLOAT Example: ""1.2E8""
+ - `motto`: STRING Example: """"
+ - `nbrEmployees`: INTEGER Example: ""375""
+ - `isDissolved`: BOOLEAN
+ - `id`: STRING Example: ""E0ZU8eCc5OaqS1LU9qE3n3w""
+ - `isPublic`: BOOLEAN
+ - `name`: STRING Example: ""New Energy Group""
+ - `summary`: STRING Example: ""Software company based in Rome, Metropolitan City ""
+- **IndustryCategory**
+ - `name`: STRING Example: ""Electronic Products Manufacturers""
+ - `id`: STRING Example: ""EUNd__O4zMNW81lAXNK2GNw""
+- **City**
+ - `id`: STRING Example: ""EZHWv2xKgN92oYDKSjhJ2gw""
+ - `summary`: STRING Example: ""City in and county seat of King County, Washington""
+ - `name`: STRING Example: ""Seattle""
+- **Country**
+ - `name`: STRING Example: ""United States of America""
+ - `id`: STRING Example: ""E01d4EK33MmCosgI2KXa4-A""
+ - `summary`: STRING Example: ""Country in North America""
+- **Article**
+ - `id`: STRING Example: ""ART176872705964""
+ - `sentiment`: FLOAT Example: ""0.856""
+ - `author`: STRING Example: ""David Correa""
+ - `siteName`: STRING Example: ""MrWeb""
+ - `summary`: STRING Example: ""Boston and Mumbai-based consumer behavior analyses""
+ - `date`: DATE_TIME Example: ""2022-03-10T00:00:00Z""
+ - `title`: STRING Example: ""Funds for Consumer Behavior Specialist Infinite An""
+- **Chunk**
+ - `text`: STRING Example: ""Boston and Mumbai-based consumer behavior analyses""
+- **Fewshot**
+ - `Question`: STRING Available options: ['How is Emil Eifrem connected to Michael Hunger? ', 'What are the latest news regarding Google? ', 'Are there any news regarding return to office poli', 'What is Microsoft policy regarding to the return t', 'How many levels of subsidiaries does Blackstone ha', 'How many Telecommunications Companies are from Mal']
+ - `Cypher`: STRING Available options: ['MATCH (p1:Person {{name:""Emil Eifrem""}}), (p2:Pers', 'MATCH (o:Organization {{name:""Google""}})<-[:MENTIO', 'CALL apoc.ml.openai.embedding([""Are there any news', 'CALL apoc.ml.openai.embedding([""What is Microsoft ', 'MATCH p=(o:Organization {name:""Blackstone""})-[:HAS', 'MATCH (o:Organization) WHERE EXISTS {(o)-[:HAS_CAT']
+ - `id`: INTEGER Min: 2, Max: 7
+Relationship properties:
+
+The relationships:
+(:Person)-[:HAS_PARENT]->(:Person)
+(:Person)-[:HAS_CHILD]->(:Person)
+(:Organization)-[:IN_CITY]->(:City)
+(:Organization)-[:HAS_CEO]->(:Person)
+(:Organization)-[:HAS_CATEGORY]->(:IndustryCategory)
+(:Organization)-[:HAS_SUBSIDIARY]->(:Organization)
+(:Organization)-[:HAS_SUPPLIER]->(:Organization)
+(:Organization)-[:HAS_INVESTOR]->(:Organization)
+(:Organization)-[:HAS_INVESTOR]->(:Person)
+(:Organization)-[:HAS_BOARD_MEMBER]->(:Person)
+(:Organization)-[:HAS_COMPETITOR]->(:Organization)
+(:City)-[:IN_COUNTRY]->(:Country)
+(:Article)-[:HAS_CHUNK]->(:Chunk)
+(:Article)-[:MENTIONS]->(:Organization)","{'node_props': {'Person': [{'property': 'name', 'type': 'STRING', 'values': ['Julie Spellman Sweet', 'Arun Sarin', 'Gilles Pélisson', 'Murthy Renduchintala', 'Tracey T. Travis', 'Nancy McKinstry', 'MJ Petroni', 'Frank Riemensperger', ""Lulu O'Sullivan"", 'Paula A. Price'], 'distinct_count': 7987}, {'property': 'id', 'type': 'STRING', 'values': ['Eaf0bpz6NNoqLVUCqNZPAew', 'EiBXh7ntpMfOdhqFJDmDw4A', 'EPXfNzMUGMfygOTJrdzjq-g', 'EljONz8D7O1KqbcjUzj3JqQ', 'EzoEIxWzONMK1Ghq3_ML0jA', 'EAuEaRjfqPxSgrzlBwzIt6w', 'EyDMiBt8_MdaZ8guOJF8mVQ', 'E9UHcgulCOKW5yeP9GTQ1TA', 'ESoimY_42NteM2fqHqvYdMg', 'Ep8aw6WCKPsuHvEZ2o7lgCQ'], 'distinct_count': 8064}, {'property': 'summary', 'type': 'STRING', 'values': ['CEO at Accenture', 'American businessman', 'French businessman', 'Board Member at Accenture', 'CFO at Estee Lauder Companies', 'CEO at CLM Matrix', 'CEO at Causeit', 'Chairman at Accenture', 'CEO at GiftsDirect', 'Vice President at CVS Pharmacy'], 'distinct_count': 6401}], 'Organization': [{'property': 'revenue', 'type': 'FLOAT', 'values': ['1.2E8', '4600000.0', '5.9E7']}, {'property': 'motto', 'type': 'STRING', 'values': ['', 'Securing the most prolific technologies in the wor', 'Supply Chain Management & Advanced Data Analytics.']}, {'property': 'nbrEmployees', 'type': 'INTEGER', 'values': ['375', '30', '175', '102']}, {'property': 'isDissolved', 'type': 'BOOLEAN'}, {'property': 'id', 'type': 'STRING', 'values': ['E0ZU8eCc5OaqS1LU9qE3n3w', 'E91iaB3VQN3K-0YIMTmJjRw', 'Ep4YdYe6nPdaQnvOFxKB_qQ', 'EyQvESab5O3aLu1zpcfgs1w', 'Ey6c5KMaiObKflzgTRFx28Q']}, {'property': 'isPublic', 'type': 'BOOLEAN'}, {'property': 'name', 'type': 'STRING', 'values': ['New Energy Group', 'Deja vu Security', 'Clarity Insights', 'Icon Integration', 'Exton Consulting']}, {'property': 'summary', 'type': 'STRING', 'values': ['Software company based in Rome, Metropolitan City ', 'Software company based in Seattle, Washington, Uni', 'Software company based in Chicago, Illinois, Unite', 'Software company based in Sydney, New South Wales,', 'Financial services company based in Neuilly-sur-Se']}], 'IndustryCategory': [{'property': 'name', 'type': 'STRING', 'values': ['Electronic Products Manufacturers', 'Enterprise Software Companies', 'Computer Hardware Companies', 'Business Software Companies', 'Mobile Phone Manufacturers', 'Cloud Computing Providers', 'Manufacturing Companies', 'CRM Software Companies', 'Software Companies', 'Open Source Software Organizations'], 'distinct_count': 258}, {'property': 'id', 'type': 'STRING', 'values': ['EUNd__O4zMNW81lAXNK2GNw', 'Efc_gAH4HM_SKwiKysIzA1w', 'EqFeVtLRWOUqTdzVhcYwBBQ', 'EK3MjPEGOPKatcFLr-zk_xg', 'EzqlzZ9UDNMOEq3ifB84Wcw', 'EbBgmU7WYPLm6DpLFV5chFg', 'E0bLvnJ6_OzqexMbWjOEekg', 'EAVUnGH_nPFunkNS-6VEf_w', 'EM3QovH3_NZCnZTu7zweSQQ', 'E0mRRD4ZpPKiybXtFYk5aFw'], 'distinct_count': 258}], 'City': [{'property': 'id', 'type': 'STRING', 'values': ['EZHWv2xKgN92oYDKSjhJ2gw', 'E_FZVnahVPq64PwoufmS6oA', 'ENFWeK7YSOSyL8SWvT14yEw', 'EuIfIxXqHPyCqFkUqzuM3JA', 'EBq4L4QZJNPmY523kMjfZIg', 'Efsd1HzRPP02EPZJnOZPfQA', 'EcMmgf99wMQ6XYnbChv5HiQ', 'EuaBmENEpOj-Jn4zhhh1rFg', 'EKrUKh2IuN2eDkhiICg1qZw', 'ECb_0DzYePbSvY2dXusB-Ag'], 'distinct_count': 9131}, {'property': 'summary', 'type': 'STRING', 'values': ['City in and county seat of King County, Washington', 'Capital and largest city of Italy', 'Major city in Greater Manchester, England, UK', 'Village in Beekdaelen, Netherlands', 'Capital of Argentina', 'City and county seat of Cook County, Illinois, Uni', 'Most populous city in the United States of America', 'City in San Mateo County, California, United State', 'Capital city of New South Wales, Australia', 'City on the North Island New Zealand'], 'distinct_count': 4368}, {'property': 'name', 'type': 'STRING', 'values': ['Seattle', 'Rome', 'Manchester', 'Schimmert', 'Buenos Aires', 'Chicago', 'New York City', 'Redwood City', 'Sydney', 'Auckland'], 'distinct_count': 8387}], 'Country': [{'property': 'name', 'type': 'STRING', 'values': ['United States of America', 'Italy', 'United Kingdom', 'Australia', 'Netherlands', 'Argentina', 'New Zealand', 'France', 'Germany', 'Spain'], 'distinct_count': 119}, {'property': 'id', 'type': 'STRING', 'values': ['E01d4EK33MmCosgI2KXa4-A', 'Es0LZKHtaPf2VSixCSIlcEg', 'EnI6g1AI9NcC6yCohEYEb2A', 'EFMlRRXcoPwu5uHO8umFWJg', 'EEu52SSGQONeAXzy30yKmBg', 'EJquW74SGMmKlsMubKzh3Ag', 'EDtTr-FLEN_WtNqEV9Awolg', 'EF-T5rsSIMVOAK-HK7eoXBw', 'EIcwjrVugPfi33BsXUpWVQA', 'EVgMpO16yNySigGdSXQEyZQ'], 'distinct_count': 119}, {'property': 'summary', 'type': 'STRING', 'values': ['Country in North America', 'Country in Southern Europe', 'Country in north-west Europe', 'Country in Oceania', 'Country in Northwestern Europe with territories in', 'Sovereign state in South America', 'Island country in the southwest Pacific Ocean', 'Country in Western Europe', 'Country in Central Europe', 'Country in southwestern Europe with territories in'], 'distinct_count': 71}], 'Article': [{'property': 'id', 'type': 'STRING', 'values': ['ART176872705964', 'ART207354016827', 'ART266798609405', 'ART119872457792', 'ART49144589301']}, {'property': 'sentiment', 'type': 'FLOAT', 'values': ['0.856', '0.908', '0.866', '0.693', 'NaN']}, {'property': 'author', 'type': 'STRING', 'values': ['David Correa', 'Meha Agarwal', 'Tyler Cowen']}, {'property': 'siteName', 'type': 'STRING', 'values': ['MrWeb', 'EIN Presswire', 'Inc42 Media', 'Marginal REVOLUTION', 'SBWire']}, {'property': 'summary', 'type': 'STRING', 'values': ['Boston and Mumbai-based consumer behavior analyses', 'Market is driven by factors such as perpetually gr', 'Pitney Bowes, a global technology company has sele', 'Praveen Mishra\nPraveen Mishra when he was 16 start', 'Free Sample Report + All Related Graphs & Charts @']}, {'property': 'date', 'type': 'DATE_TIME', 'values': ['2022-03-10T00:00:00Z', '2021-12-03T13:14:00Z', '2020-08-03T00:00:00Z', '2020-07-30T00:36:00Z', '2019-02-18T00:00:00Z']}, {'property': 'title', 'type': 'STRING', 'values': ['Funds for Consumer Behavior Specialist Infinite An', 'AI in Retail Market is Expected to Witness a Susta', 'Pitney Bowes Global Accelerator Programme Names Si', 'Emergent Ventures India, second cohort of winners', 'Recommendation Engine Market to Witness Huge Growt']}], 'Chunk': [{'property': 'text', 'type': 'STRING', 'values': ['Boston and Mumbai-based consumer behavior analyses', 'Market is driven by factors such as perpetually gr', 'Pitney Bowes, a global technology company has sele', 'Praveen Mishra\nPraveen Mishra when he was 16 start', 's history. Nilay has also spoken at TEDx New York ']}, {'property': 'embedding', 'type': 'LIST', 'max_size': 1536, 'min_size': 1536}, {'property': 'embedding_google', 'type': 'LIST', 'max_size': 768, 'min_size': 768}], 'Fewshot': [{'property': 'Question', 'type': 'STRING', 'values': ['How is Emil Eifrem connected to Michael Hunger?\n', 'What are the latest news regarding Google?\n', 'Are there any news regarding return to office poli', 'What is Microsoft policy regarding to the return t', 'How many levels of subsidiaries does Blackstone ha', 'How many Telecommunications Companies are from Mal'], 'distinct_count': 6}, {'property': 'Cypher', 'type': 'STRING', 'values': ['MATCH (p1:Person {{name:""Emil Eifrem""}}), (p2:Pers', 'MATCH (o:Organization {{name:""Google""}})<-[:MENTIO', 'CALL apoc.ml.openai.embedding([""Are there any news', 'CALL apoc.ml.openai.embedding([""What is Microsoft ', 'MATCH p=(o:Organization {name:""Blackstone""})-[:HAS', 'MATCH (o:Organization)\nWHERE EXISTS {(o)-[:HAS_CAT'], 'distinct_count': 6}, {'property': 'id', 'type': 'INTEGER', 'min': '2', 'max': '7', 'distinct_count': 6}, {'property': 'embedding', 'type': 'LIST', 'max_size': 1536, 'min_size': 1536}]}, 'rel_props': {}, 'relationships': [{'start': 'Person', 'type': 'HAS_PARENT', 'end': 'Person'}, {'start': 'Person', 'type': 'HAS_CHILD', 'end': 'Person'}, {'start': 'Organization', 'type': 'IN_CITY', 'end': 'City'}, {'start': 'Organization', 'type': 'HAS_CEO', 'end': 'Person'}, {'start': 'Organization', 'type': 'HAS_CATEGORY', 'end': 'IndustryCategory'}, {'start': 'Organization', 'type': 'HAS_SUBSIDIARY', 'end': 'Organization'}, {'start': 'Organization', 'type': 'HAS_SUPPLIER', 'end': 'Organization'}, {'start': 'Organization', 'type': 'HAS_INVESTOR', 'end': 'Organization'}, {'start': 'Organization', 'type': 'HAS_INVESTOR', 'end': 'Person'}, {'start': 'Organization', 'type': 'HAS_BOARD_MEMBER', 'end': 'Person'}, {'start': 'Organization', 'type': 'HAS_COMPETITOR', 'end': 'Organization'}, {'start': 'City', 'type': 'IN_COUNTRY', 'end': 'Country'}, {'start': 'Article', 'type': 'HAS_CHUNK', 'end': 'Chunk'}, {'start': 'Article', 'type': 'MENTIONS', 'end': 'Organization'}], 'metadata': {'constraint': [{'id': 10, 'name': 'constraint_ecc04354', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Article'], 'properties': ['id'], 'ownedIndex': 'constraint_ecc04354', 'propertyType': None}, {'id': 15, 'name': 'constraint_f7832722', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['_Bloom_Perspective_'], 'properties': ['id'], 'ownedIndex': 'constraint_f7832722', 'propertyType': None}, {'id': 8, 'name': 'industry_category_id', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['IndustryCategory'], 'properties': ['id'], 'ownedIndex': 'industry_category_id', 'propertyType': None}, {'id': 6, 'name': 'organization_id', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Organization'], 'properties': ['id'], 'ownedIndex': 'organization_id', 'propertyType': None}, {'id': 4, 'name': 'person_id', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Person'], 'properties': ['id'], 'ownedIndex': 'person_id', 'propertyType': None}], 'index': [{'label': 'Article', 'properties': ['id'], 'size': 64191, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 64191.0}, {'label': 'IndustryCategory', 'properties': ['id'], 'size': 253, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 253.0}, {'label': 'Organization', 'properties': ['id'], 'size': 45156, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 45156.0}, {'label': 'Person', 'properties': ['id'], 'size': 7909, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 7909.0}, {'label': '_Bloom_Perspective_', 'properties': ['id'], 'size': 1, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1.0}]}}"
+fincen,"Node properties:
+- **Country**
+ - `location`: POINT
+ - `code`: STRING Example: ""AFG""
+ - `name`: STRING Example: ""Afghanistan""
+ - `tld`: STRING Example: ""AF""
+- **Filing**
+ - `begin`: DATE_TIME Min: 2000-02-08T00:00:00Z, Max: 2017-09-05T00:00:00Z
+ - `end`: DATE_TIME Min: 2000-02-08T00:00:00Z, Max: 2017-11-03T00:00:00Z
+ - `originator_bank_id`: STRING Example: ""cimb-bank-berhad""
+ - `sar_id`: STRING Example: ""3297""
+ - `beneficiary_bank`: STRING Example: ""Barclays Bank Plc""
+ - `filer_org_name_id`: STRING Example: ""the-bank-of-new-york-mellon-corp""
+ - `originator_bank_country`: STRING Example: ""Singapore""
+ - `beneficiary_bank_country`: STRING Example: ""United Kingdom""
+ - `filer_org_name`: STRING Example: ""The Bank of New York Mellon Corp.""
+ - `originator_iso`: STRING Example: ""SGP""
+ - `beneficiary_bank_id`: STRING Example: ""barclays-bank-plc-london-england-gbr""
+ - `origin_lat`: STRING Example: ""1.3667""
+ - `origin_lng`: STRING Example: ""103.8""
+ - `end_date_format`: STRING Example: ""2015-09-25T00:00:00Z""
+ - `begin_date_format`: STRING Example: ""2015-03-25T00:00:00Z""
+ - `originator_bank`: STRING Example: ""CIMB Bank Berhad""
+ - `beneficiary_lat`: STRING Example: ""54""
+ - `beneficiary_iso`: STRING Example: ""GBR""
+ - `beneficiary_lng`: STRING Example: ""-2""
+ - `begin_date`: STRING Example: ""Mar 25, 2015""
+ - `id`: STRING Example: ""223254""
+ - `end_date`: STRING Example: ""Sep 25, 2015""
+ - `amount`: INTEGER Min: 1.18, Max: 2721000000
+ - `number`: INTEGER Min: 1, Max: 174
+- **Entity**
+ - `id`: STRING Example: ""the-bank-of-new-york-mellon-corp""
+ - `location`: POINT
+ - `name`: STRING Example: ""The Bank of New York Mellon Corp.""
+ - `country`: STRING Example: ""CHN""
+Relationship properties:
+
+The relationships:
+(:Filing)-[:BENEFITS]->(:Entity)
+(:Filing)-[:CONCERNS]->(:Entity)
+(:Filing)-[:ORIGINATOR]->(:Entity)
+(:Entity)-[:FILED]->(:Filing)
+(:Entity)-[:COUNTRY]->(:Country)","{'node_props': {'Country': [{'property': 'location', 'type': 'POINT'}, {'property': 'code', 'type': 'STRING', 'values': ['AFG', 'ALB', 'DZA', 'ASM', 'AND', 'AGO', 'AIA', 'ATA', 'ATG', 'ARG'], 'distinct_count': 254}, {'property': 'name', 'type': 'STRING', 'values': ['Afghanistan', 'Albania', 'Algeria', 'American Samoa', 'Andorra', 'Angola', 'Anguilla', 'Antarctica', 'Antigua and Barbuda', 'Argentina'], 'distinct_count': 254}, {'property': 'tld', 'type': 'STRING', 'values': ['AF', 'AL', 'DZ', 'AS', 'AD', 'AO', 'AI', 'AQ', 'AG', 'AR'], 'distinct_count': 243}], 'Filing': [{'property': 'begin', 'type': 'DATE_TIME', 'min': '2000-02-08T00:00:00Z', 'max': '2017-09-05T00:00:00Z', 'distinct_count': 1762}, {'property': 'end', 'type': 'DATE_TIME', 'min': '2000-02-08T00:00:00Z', 'max': '2017-11-03T00:00:00Z', 'distinct_count': 1751}, {'property': 'originator_bank_id', 'type': 'STRING', 'values': ['cimb-bank-berhad', 'barclays-bank-plc-ho-uk', 'natwest-offshore', 'evrofinance-mosnarbank', 'latvian-trade-commercial-bank', 'vtb-north-west', 'dbs-bank-ltd', 'unicredit-bank-austria-ag', 'kazkommertsbank', 'transcredit-bank'], 'distinct_count': 891}, {'property': 'sar_id', 'type': 'STRING', 'values': ['3297', '2924', '2345', '2354', '3244', '2778', '2355', '3176', '4314', '4031'], 'distinct_count': 534}, {'property': 'beneficiary_bank', 'type': 'STRING', 'values': ['Barclays Bank Plc', 'Skandinaviska Enskilda Banken', 'Commonwealth Bank of Australia', 'DNB Nor Bank Asa', 'Marfin Popular Bank Public Co Ltd', 'Alcoa Inc', 'Piraeus Bank', 'Credit To Euroclear Bank SA', 'LTB Bank', 'Credit Toltb Bank'], 'distinct_count': 1112}, {'property': 'filer_org_name_id', 'type': 'STRING', 'values': ['the-bank-of-new-york-mellon-corp', 'societe-generale-sa', 'deutsche-bank-ag', 'standard-chartered-plc', 'mitsubishi-ufj-financial-group-inc', 'ofg-bancorp', 'bank-of-america-corp', 'barclays-plc', 'china-investment-corporation', 'jp-morgan-chase-co'], 'distinct_count': 26}, {'property': 'originator_bank_country', 'type': 'STRING', 'values': ['Singapore', 'United Kingdom', 'Gibraltar', 'Russia', 'Latvia', 'Austria', 'Kazakhstan', 'United Arab Emirates', 'United States', 'Lebanon'], 'distinct_count': 119}, {'property': 'beneficiary_bank_country', 'type': 'STRING', 'values': ['United Kingdom', 'Sweden', 'Australia', 'Norway', 'Cyprus', 'United States', 'Bulgaria', 'Belgium', 'Latvia', 'Malaysia'], 'distinct_count': 111}, {'property': 'filer_org_name', 'type': 'STRING', 'values': ['The Bank of New York Mellon Corp.', 'Société Générale SA', 'Deutsche Bank AG', 'Standard Chartered Plc', 'Mitsubishi UFJ Financial Group, Inc.', 'OFG Bancorp', 'Bank of America Corp.', 'Barclays Plc', 'China Investment Corporation', 'JP Morgan Chase & Co.'], 'distinct_count': 26}, {'property': 'originator_iso', 'type': 'STRING', 'values': ['SGP', 'GBR', 'GIB', 'RUS', 'LVA', 'AUT', 'KAZ', 'ARE', 'USA', 'LBN'], 'distinct_count': 117}, {'property': 'beneficiary_bank_id', 'type': 'STRING', 'values': ['barclays-bank-plc-london-england-gbr', 'skandinaviska-enskilda-banken-stockholm-sweden-swe', 'commonwealth-bank-of-australia-sydney-australia-au', 'dnb-nor-bank-asa-oslo-norway-nor', 'marfin-popular-bank-public-co-ltd-nicosia-cyprus-c', 'alcoa-inc-pittsburgh-pa-usa', 'piraeus-bank-sofia-bulgaria-bgr', 'credit-to-euroclear-bank-sa-brussels-belgium-bel', 'ltb-bank-riga-latvia-lva', 'credit-toltb-bank-riga-latvia-lva'], 'distinct_count': 1389}, {'property': 'origin_lat', 'type': 'STRING', 'values': ['1.3667', '54', '36.1833', '60', '57', '47.3333', '48', '24', '38', '33.8333'], 'distinct_count': 97}, {'property': 'origin_lng', 'type': 'STRING', 'values': ['103.8', '-2', '-5.3667', '100', '25', '13.3333', '68', '54', '-97', '35.8333'], 'distinct_count': 96}, {'property': 'end_date_format', 'type': 'STRING', 'values': ['2015-09-25T00:00:00Z', '2012-07-05T00:00:00Z', '2012-06-20T00:00:00Z', '2012-05-31T00:00:00Z', '2012-05-29T00:00:00Z', '2012-05-22T00:00:00Z', '2012-05-21T00:00:00Z', '2012-05-15T00:00:00Z', '2012-05-14T00:00:00Z', '2012-05-11T00:00:00Z'], 'distinct_count': 1751}, {'property': 'begin_date_format', 'type': 'STRING', 'values': ['2015-03-25T00:00:00Z', '2015-03-30T00:00:00Z', '2012-07-05T00:00:00Z', '2012-06-20T00:00:00Z', '2012-05-31T00:00:00Z', '2012-05-29T00:00:00Z', '2012-05-22T00:00:00Z', '2012-05-21T00:00:00Z', '2012-05-15T00:00:00Z', '2012-05-14T00:00:00Z'], 'distinct_count': 1762}, {'property': 'originator_bank', 'type': 'STRING', 'values': ['CIMB Bank Berhad', 'Barclays Bank Plc Ho UK', ' Natwest Offshore', 'Natwest Offshore', 'Evrofinance Mosnarbank', 'Latvian Trade Commercial Bank', 'VTB North-West', 'DBS Bank Ltd', 'UniCredit Bank Austria AG', 'Kazkommertsbank'], 'distinct_count': 967}, {'property': 'beneficiary_lat', 'type': 'STRING', 'values': ['54', '62', '-27', '35', '38', '43', '50.8333', '57', '2.5', '1.3667'], 'distinct_count': 91}, {'property': 'beneficiary_iso', 'type': 'STRING', 'values': ['GBR', 'SWE', 'AUS', 'NOR', 'CYP', 'USA', 'BGR', 'BEL', 'LVA', 'MYS'], 'distinct_count': 107}, {'property': 'beneficiary_lng', 'type': 'STRING', 'values': ['-2', '15', '133', '10', '33', '-97', '25', '4', '112.5', '103.8'], 'distinct_count': 89}, {'property': 'begin_date', 'type': 'STRING', 'values': ['Mar 25, 2015', 'Mar 30, 2015', 'Jul 5, 2012', 'Jun 20, 2012', 'May 31, 2012', 'May 29, 2012', 'May 22, 2012', 'May 21, 2012', 'May 15, 2012', 'May 14, 2012'], 'distinct_count': 1762}, {'property': 'id', 'type': 'STRING', 'values': ['223254', '223255', '223258', '223259', '223260', '223261', '223262', '223263', '223264', '223265'], 'distinct_count': 4507}, {'property': 'end_date', 'type': 'STRING', 'values': ['Sep 25, 2015', 'Jul 5, 2012', 'Jun 20, 2012', 'May 31, 2012', 'May 29, 2012', 'May 22, 2012', 'May 21, 2012', 'May 15, 2012', 'May 14, 2012', 'May 11, 2012'], 'distinct_count': 1751}, {'property': 'amount', 'type': 'INTEGER', 'min': '1.18', 'max': '2721000000', 'distinct_count': 3579}, {'property': 'number', 'type': 'INTEGER', 'min': '1', 'max': '174', 'distinct_count': 73}], 'Entity': [{'property': 'id', 'type': 'STRING', 'values': ['the-bank-of-new-york-mellon-corp', 'societe-generale-sa', 'standard-chartered-plc', 'deutsche-bank-ag', 'jp-morgan-chase-co', 'the-northern-trust-company', 'bank-of-america-corp', 'barclays-plc', 'china-investment-corporation', 'the-royal-bank-of-scotland-plc'], 'distinct_count': 2755}, {'property': 'location', 'type': 'POINT'}, {'property': 'name', 'type': 'STRING', 'values': ['The Bank of New York Mellon Corp.', 'Société Générale SA', 'Standard Chartered Plc', 'Deutsche Bank AG', 'JP Morgan Chase & Co.', 'The Northern Trust Company', 'Bank of America Corp.', 'Barclays Plc', 'China Investment Corporation', 'The Royal Bank Of Scotland Plc'], 'distinct_count': 1805}, {'property': 'country', 'type': 'STRING', 'values': ['CHN', 'CYP', 'NZL', 'KHM', 'SGP', 'KAZ', 'EGY', 'ARE', 'BEL', 'CHE'], 'distinct_count': 99}]}, 'rel_props': {}, 'relationships': [{'start': 'Filing', 'type': 'BENEFITS', 'end': 'Entity'}, {'start': 'Filing', 'type': 'CONCERNS', 'end': 'Entity'}, {'start': 'Filing', 'type': 'ORIGINATOR', 'end': 'Entity'}, {'start': 'Entity', 'type': 'FILED', 'end': 'Filing'}, {'start': 'Entity', 'type': 'COUNTRY', 'end': 'Country'}], 'metadata': {'constraint': [{'id': 21, 'name': 'constraint_7c28e5f7', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Filing'], 'properties': ['id'], 'ownedIndex': 'constraint_7c28e5f7', 'propertyType': None}, {'id': 25, 'name': 'constraint_96870fc7', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Country'], 'properties': ['code'], 'ownedIndex': 'constraint_96870fc7', 'propertyType': None}, {'id': 23, 'name': 'constraint_ea922423', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Entity'], 'properties': ['id'], 'ownedIndex': 'constraint_ea922423', 'propertyType': None}], 'index': [{'label': 'Country', 'properties': ['name'], 'size': 254, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 254.0}, {'label': 'Country', 'properties': ['code'], 'size': 254, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 254.0}, {'label': 'Entity', 'properties': ['name'], 'size': 2763, 'type': 'RANGE', 'valuesSelectivity': 0.6539992761491132, 'distinctValues': 1806.9999999999998}, {'label': 'Entity', 'properties': ['id'], 'size': 2763, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 2763.0}, {'label': 'Filing', 'properties': ['amount'], 'size': 4507, 'type': 'RANGE', 'valuesSelectivity': 0.7940980696694031, 'distinctValues': 3579.0}, {'label': 'Filing', 'properties': ['end'], 'size': 4501, 'type': 'RANGE', 'valuesSelectivity': 0.389024661186403, 'distinctValues': 1751.0}, {'label': 'Filing', 'properties': ['begin'], 'size': 4501, 'type': 'RANGE', 'valuesSelectivity': 0.3914685625416574, 'distinctValues': 1762.0}, {'label': 'Filing', 'properties': ['sar_id'], 'size': 4507, 'type': 'RANGE', 'valuesSelectivity': 0.11848236077213224, 'distinctValues': 534.0}, {'label': 'Filing', 'properties': ['id'], 'size': 4507, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 4507.0}]}}"
+gameofthrones,"Node properties:
+- **Character**
+ - `centrality`: FLOAT Min: 0.0, Max: 1.0
+ - `book45PageRank`: FLOAT Min: 0.15000000000000002, Max: 11.409916274911177
+ - `fastrf_embedding`: LIST Min Size: 10, Max Size: 10
+ - `book1BetweennessCentrality`: FLOAT Min: 0.0, Max: 4638.53495125504
+ - `book1PageRank`: FLOAT Min: 0.15000000000000002, Max: 8.164174336296284
+ - `louvain`: INTEGER Min: 0, Max: 10
+ - `community`: INTEGER Min: 504, Max: 795
+ - `degree`: FLOAT Min: 0.0, Max: 300.0
+ - `name`: STRING Example: ""Addam-Marbrand""
+ - `pagerank`: FLOAT Min: 0.15000000000000002, Max: 9.473142454730429
+Relationship properties:
+- **INTERACTS**
+ - `weight: INTEGER` Min: 3, Max: 334
+- **INTERACTS1**
+ - `weight: INTEGER` Min: 3, Max: 291
+ - `book: INTEGER` Min: 1, Max: 1
+- **INTERACTS2**
+ - `weight: INTEGER` Min: 3, Max: 92
+ - `book: INTEGER` Min: 2, Max: 2
+- **INTERACTS3**
+ - `weight: INTEGER` Min: 3, Max: 95
+ - `book: INTEGER` Min: 3, Max: 3
+- **INTERACTS45**
+ - `weight: INTEGER` Min: 3, Max: 96
+ - `book: INTEGER` Min: 45, Max: 45
+The relationships:
+(:Character)-[:INTERACTS45]->(:Character)
+(:Character)-[:INTERACTS]->(:Character)
+(:Character)-[:INTERACTS1]->(:Character)
+(:Character)-[:INTERACTS3]->(:Character)
+(:Character)-[:INTERACTS2]->(:Character)","{'node_props': {'Character': [{'property': 'centrality', 'type': 'FLOAT', 'min': '0.0', 'max': '1.0', 'distinct_count': 81}, {'property': 'book45PageRank', 'type': 'FLOAT', 'min': '0.15000000000000002', 'max': '11.409916274911177', 'distinct_count': 417}, {'property': 'fastrf_embedding', 'type': 'LIST', 'max_size': 10, 'min_size': 10}, {'property': 'book1BetweennessCentrality', 'type': 'FLOAT', 'min': '0.0', 'max': '4638.53495125504', 'distinct_count': 91}, {'property': 'book1PageRank', 'type': 'FLOAT', 'min': '0.15000000000000002', 'max': '8.164174336296284', 'distinct_count': 161}, {'property': 'louvain', 'type': 'INTEGER', 'min': '0', 'max': '10', 'distinct_count': 11}, {'property': 'community', 'type': 'INTEGER', 'min': '504', 'max': '795', 'distinct_count': 222}, {'property': 'degree', 'type': 'FLOAT', 'min': '0.0', 'max': '300.0', 'distinct_count': 61}, {'property': 'name', 'type': 'STRING', 'values': ['Addam-Marbrand', 'Aegon-Frey-(son-of-Stevron)', 'Aegon-I-Targaryen', 'Aegon-Targaryen-(son-of-Rhaegar)', 'Aegon-V-Targaryen', 'Aemon-Targaryen-(Dragonknight)', 'Aemon-Targaryen-(Maester-Aemon)', 'Aenys-Frey', 'Aeron-Greyjoy', 'Aerys-I-Targaryen'], 'distinct_count': 796}, {'property': 'pagerank', 'type': 'FLOAT', 'min': '0.15000000000000002', 'max': '9.473142454730429', 'distinct_count': 441}]}, 'rel_props': {'INTERACTS': [{'property': 'weight', 'type': 'INTEGER', 'min': '3', 'max': '334', 'distinct_count': 107}], 'INTERACTS1': [{'property': 'weight', 'type': 'INTEGER', 'min': '3', 'max': '291', 'distinct_count': 57}, {'property': 'book', 'type': 'INTEGER', 'min': '1', 'max': '1', 'distinct_count': 1}], 'INTERACTS2': [{'property': 'weight', 'type': 'INTEGER', 'min': '3', 'max': '92', 'distinct_count': 46}, {'property': 'book', 'type': 'INTEGER', 'min': '2', 'max': '2', 'distinct_count': 1}], 'INTERACTS3': [{'property': 'weight', 'type': 'INTEGER', 'min': '3', 'max': '95', 'distinct_count': 51}, {'property': 'book', 'type': 'INTEGER', 'min': '3', 'max': '3', 'distinct_count': 1}], 'INTERACTS45': [{'property': 'weight', 'type': 'INTEGER', 'min': '3', 'max': '96', 'distinct_count': 53}, {'property': 'book', 'type': 'INTEGER', 'min': '45', 'max': '45', 'distinct_count': 1}]}, 'relationships': [{'start': 'Character', 'type': 'INTERACTS45', 'end': 'Character'}, {'start': 'Character', 'type': 'INTERACTS', 'end': 'Character'}, {'start': 'Character', 'type': 'INTERACTS1', 'end': 'Character'}, {'start': 'Character', 'type': 'INTERACTS3', 'end': 'Character'}, {'start': 'Character', 'type': 'INTERACTS2', 'end': 'Character'}], 'metadata': {'constraint': [{'id': 7, 'name': 'constraint_36fbcdfc', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Character'], 'properties': ['name'], 'ownedIndex': 'constraint_36fbcdfc', 'propertyType': None}], 'index': [{'label': 'Character', 'properties': ['name'], 'size': 796, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 796.0}]}}"
+grandstack,"Node properties:
+- **Business**
+ - `address`: STRING Available options: ['301 E Main St', '200 W Pine St', '313 N 1st St W', '1151 W Broadway St', '201 E Front St', '723 California Dr', '121 W Broadway St', '716 N San Mateo Dr', '111 E 5th Ave']
+ - `location`: POINT
+ - `city`: STRING Available options: ['Missoula', 'Burlingame', 'San Mateo']
+ - `state`: STRING Available options: ['MT', 'CA']
+ - `businessId`: STRING Available options: ['b5', 'b3', 'b1', 'b2', 'b4', 'b7', 'b6', 'b8', 'b9']
+ - `name`: STRING Available options: ['Missoula Public Library', ""Ninja Mike's"", 'KettleHouse Brewing Co.', 'Imagine Nation Brewing', 'Market on Front', 'Hanabi', 'Zootown Brew', ""Ducky's Car Wash"", 'Neo4j']
+- **User**
+ - `name`: STRING Available options: ['Will', 'Bob', 'Jenny', 'Angie']
+ - `userId`: STRING Available options: ['u1', 'u2', 'u3', 'u4']
+- **Review**
+ - `date`: DATE Min: 2015-08-29, Max: 2018-09-10
+ - `text`: STRING Available options: ['Not a great selection of books, but fortunately th', ""Best breakfast sandwich at the Farmer's Market. Al"", 'Great IPA selection!', ""Awesome full-service car wash. Love Ducky's!"", ""The world's leading graph database HQ!""]
+ - `stars`: FLOAT Min: 3.0, Max: 5.0
+ - `reviewId`: STRING Example: ""r7""
+- **Category**
+ - `name`: STRING Example: ""Library""
+Relationship properties:
+
+The relationships:
+(:Business)-[:IN_CATEGORY]->(:Category)
+(:User)-[:WROTE]->(:Review)
+(:Review)-[:REVIEWS]->(:Business)","{'node_props': {'Business': [{'property': 'address', 'type': 'STRING', 'values': ['301 E Main St', '200 W Pine St', '313 N 1st St W', '1151 W Broadway St', '201 E Front St', '723 California Dr', '121 W Broadway St', '716 N San Mateo Dr', '111 E 5th Ave'], 'distinct_count': 9}, {'property': 'location', 'type': 'POINT'}, {'property': 'city', 'type': 'STRING', 'values': ['Missoula', 'Burlingame', 'San Mateo'], 'distinct_count': 3}, {'property': 'state', 'type': 'STRING', 'values': ['MT', 'CA'], 'distinct_count': 2}, {'property': 'businessId', 'type': 'STRING', 'values': ['b5', 'b3', 'b1', 'b2', 'b4', 'b7', 'b6', 'b8', 'b9'], 'distinct_count': 9}, {'property': 'name', 'type': 'STRING', 'values': ['Missoula Public Library', ""Ninja Mike's"", 'KettleHouse Brewing Co.', 'Imagine Nation Brewing', 'Market on Front', 'Hanabi', 'Zootown Brew', ""Ducky's Car Wash"", 'Neo4j'], 'distinct_count': 9}], 'User': [{'property': 'name', 'type': 'STRING', 'values': ['Will', 'Bob', 'Jenny', 'Angie'], 'distinct_count': 4}, {'property': 'userId', 'type': 'STRING', 'values': ['u1', 'u2', 'u3', 'u4'], 'distinct_count': 4}], 'Review': [{'property': 'date', 'type': 'DATE', 'min': '2015-08-29', 'max': '2018-09-10', 'distinct_count': 12}, {'property': 'text', 'type': 'STRING', 'values': ['Not a great selection of books, but fortunately th', ""Best breakfast sandwich at the Farmer's Market. Al"", 'Great IPA selection!', ""Awesome full-service car wash. Love Ducky's!"", ""The world's leading graph database HQ!""], 'distinct_count': 5}, {'property': 'stars', 'type': 'FLOAT', 'min': '3.0', 'max': '5.0', 'distinct_count': 3}, {'property': 'reviewId', 'type': 'STRING', 'values': ['r7', 'r5', 'r1', 'r10', 'r6', 'r9', 'r4', 'r2', 'r8', 'r3'], 'distinct_count': 12}], 'Category': [{'property': 'name', 'type': 'STRING', 'values': ['Library', 'Breakfast', 'Restaurant', 'Brewery', 'Beer', 'Deli', 'Cafe', 'Coffee', 'Ramen', 'Car Wash'], 'distinct_count': 11}]}, 'rel_props': {}, 'relationships': [{'start': 'Business', 'type': 'IN_CATEGORY', 'end': 'Category'}, {'start': 'User', 'type': 'WROTE', 'end': 'Review'}, {'start': 'Review', 'type': 'REVIEWS', 'end': 'Business'}], 'metadata': {'constraint': [], 'index': []}}"
+movies,"Node properties:
+- **Movie**
+ - `title`: STRING Example: ""The Matrix""
+ - `votes`: INTEGER Min: 1, Max: 5259
+ - `tagline`: STRING Example: ""Welcome to the Real World""
+ - `released`: INTEGER Min: 1975, Max: 2012
+- **Person**
+ - `born`: INTEGER Min: 1929, Max: 1996
+ - `name`: STRING Example: ""Keanu Reeves""
+Relationship properties:
+- **ACTED_IN**
+ - `roles: LIST` Min Size: 1, Max Size: 6
+- **REVIEWED**
+ - `summary: STRING` Available options: ['Pretty funny at times', 'A solid romp', 'Silly, but fun', 'You had me at Jerry', 'An amazing journey', 'Slapstick redeemed only by the Robin Williams and ', 'Dark, but compelling', 'The coolest football movie ever', 'Fun, but a little far fetched']
+ - `rating: INTEGER` Min: 45, Max: 100
+The relationships:
+(:Person)-[:ACTED_IN]->(:Movie)
+(:Person)-[:DIRECTED]->(:Movie)
+(:Person)-[:PRODUCED]->(:Movie)
+(:Person)-[:WROTE]->(:Movie)
+(:Person)-[:FOLLOWS]->(:Person)
+(:Person)-[:REVIEWED]->(:Movie)","{'node_props': {'Movie': [{'property': 'title', 'type': 'STRING', 'values': ['The Matrix', 'The Matrix Reloaded', 'The Matrix Revolutions', ""The Devil's Advocate"", 'A Few Good Men', 'Top Gun', 'Jerry Maguire', 'Stand By Me', 'As Good as It Gets', 'What Dreams May Come'], 'distinct_count': 38}, {'property': 'votes', 'type': 'INTEGER', 'min': '1', 'max': '5259', 'distinct_count': 31}, {'property': 'tagline', 'type': 'STRING', 'values': ['Welcome to the Real World', 'Free your mind', 'Everything that has a beginning has an end', 'Evil has its winning ways', ""In the heart of the nation's capital, in a courtho"", 'I feel the need, the need for speed.', 'The rest of his life begins now.', ""For some, it's the last real taste of innocence, a"", 'A comedy from the heart that goes for the throat.', 'After life there is more. The end is just the begi'], 'distinct_count': 37}, {'property': 'released', 'type': 'INTEGER', 'min': '1975', 'max': '2012', 'distinct_count': 18}], 'Person': [{'property': 'born', 'type': 'INTEGER', 'min': '1929', 'max': '1996', 'distinct_count': 51}, {'property': 'name', 'type': 'STRING', 'values': ['Keanu Reeves', 'Carrie-Anne Moss', 'Laurence Fishburne', 'Hugo Weaving', 'Lilly Wachowski', 'Lana Wachowski', 'Joel Silver', 'Emil Eifrem', 'Charlize Theron', 'Al Pacino'], 'distinct_count': 133}]}, 'rel_props': {'ACTED_IN': [{'property': 'roles', 'type': 'LIST', 'max_size': 6, 'min_size': 1}], 'REVIEWED': [{'property': 'summary', 'type': 'STRING', 'values': ['Pretty funny at times', 'A solid romp', 'Silly, but fun', 'You had me at Jerry', 'An amazing journey', 'Slapstick redeemed only by the Robin Williams and ', 'Dark, but compelling', 'The coolest football movie ever', 'Fun, but a little far fetched'], 'distinct_count': 9}, {'property': 'rating', 'type': 'INTEGER', 'min': '45', 'max': '100', 'distinct_count': 8}]}, 'relationships': [{'start': 'Person', 'type': 'ACTED_IN', 'end': 'Movie'}, {'start': 'Person', 'type': 'DIRECTED', 'end': 'Movie'}, {'start': 'Person', 'type': 'PRODUCED', 'end': 'Movie'}, {'start': 'Person', 'type': 'WROTE', 'end': 'Movie'}, {'start': 'Person', 'type': 'FOLLOWS', 'end': 'Person'}, {'start': 'Person', 'type': 'REVIEWED', 'end': 'Movie'}], 'metadata': {'constraint': [{'id': 13, 'name': 'constraint_3044d997', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Movie'], 'properties': ['title'], 'ownedIndex': 'constraint_3044d997', 'propertyType': None}, {'id': 11, 'name': 'constraint_e26b1a8b', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Person'], 'properties': ['name'], 'ownedIndex': 'constraint_e26b1a8b', 'propertyType': None}], 'index': [{'label': 'Movie', 'properties': ['title'], 'size': 38, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 38.0}, {'label': 'Person', 'properties': ['born'], 'size': 128, 'type': 'RANGE', 'valuesSelectivity': 0.3984375, 'distinctValues': 51.0}, {'label': 'Person', 'properties': ['released'], 'size': 0, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 0.0}, {'label': 'Person', 'properties': ['name'], 'size': 133, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 133.0}]}}"
+neoflix,"Node properties:
+- **Movie**
+ - `average_vote`: FLOAT Example: ""7.7""
+ - `overview`: STRING Example: ""Led by Woody, Andy's toys live happily in his room""
+ - `revenue`: FLOAT Example: ""3.73554033E8""
+ - `vote_count`: INTEGER Example: ""5415""
+ - `tagline`: STRING Example: ""Roll the dice and unleash the excitement!""
+ - `budget`: INTEGER Example: ""30000000""
+ - `title`: STRING Example: ""Toy Story""
+ - `poster_path`: STRING Example: ""/rhIRbceoE9lR4veEXuwCC2wARtG.jpg""
+ - `imdb_id`: STRING Example: ""tt0114709""
+ - `status`: STRING Example: ""Released""
+ - `runtime`: FLOAT Example: ""81.0""
+ - `popularity`: FLOAT Example: ""21.946943""
+ - `homepage`: STRING Example: ""http://toystory.disney.com/toy-story""
+ - `release_date`: DATE Example: ""1995-10-30""
+ - `id`: INTEGER Min: 862, Max: 31357
+ - `original_title`: STRING Example: ""Toy Story""
+ - `original_language`: STRING Example: ""en""
+- **Language**
+ - `id`: STRING Example: ""en""
+ - `name`: STRING Available options: ['', 'Gaeilge', 'Kiswahili', 'Azərbaycan', 'Somali', 'беларуская мова', 'Fulfulde', 'Hausa']
+- **Country**
+ - `id`: STRING Example: ""US""
+ - `name`: STRING Example: ""United States of America""
+- **Genre**
+ - `id`: INTEGER Min: 12, Max: 10770
+ - `name`: STRING Example: ""Animation""
+- **ProductionCompany**
+ - `id`: INTEGER Min: 3, Max: 10201
+ - `name`: STRING Example: ""Pixar Animation Studios""
+- **Collection**
+ - `name`: STRING Example: ""Toy Story Collection""
+ - `id`: INTEGER Min: 10, Max: 480160
+ - `backdrop_path`: STRING Example: ""/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg""
+ - `poster_path`: STRING Example: ""/7G9915LfUQ2lVfwMEEhDsn3kT4B.jpg""
+- **Person**
+ - `gender`: INTEGER Example: ""2""
+ - `profile_path`: STRING Example: ""/pQFoyx7rp09CJTAb932F2g8Nlho.jpg""
+ - `id`: INTEGER Min: 31, Max: 12900
+ - `name`: STRING Example: ""Tom Hanks""
+- **User**
+ - `id`: INTEGER Min: 27490cf6-22eb-495d-9dd6-902c0f89c627, Max: 4
+- **Keyword**
+ - `id`: INTEGER Min: 931, Max: 9713
+ - `name`: STRING Example: ""jealousy""
+- **Video**
+ - `tagline`: STRING Example: ""Fresh Fish. Mixed Vegetables.""
+ - `average_vote`: FLOAT Min: 0.0, Max: 10.0
+ - `overview`: STRING Example: ""Get ready as Bob the Tomato, Larry the Cucumber an""
+ - `revenue`: FLOAT Min: 0.0, Max: 0.0
+ - `poster_path`: STRING Example: ""/iWahPsY3hsKOizZHgzQcAxv4O3B.jpg""
+ - `vote_count`: INTEGER Min: 0, Max: 115
+ - `title`: STRING Example: ""Jonah: A VeggieTales Movie""
+ - `release_date`: DATE Min: 1973-01-12, Max: 2017-03-17
+ - `status`: STRING Available options: ['Released']
+ - `budget`: INTEGER Min: 0, Max: 2219684
+ - `popularity`: FLOAT Min: 0.0, Max: 9.22546
+ - `imdb_id`: STRING Example: ""tt0298388""
+ - `original_title`: STRING Example: ""Jonah: A VeggieTales Movie""
+ - `id`: INTEGER Min: 13284, Max: 461088
+ - `runtime`: FLOAT Min: 0.0, Max: 583.0
+ - `original_language`: STRING Example: ""en""
+ - `homepage`: STRING Example: ""http://www.loosechange911.com/""
+- **Adult**
+ - `average_vote`: FLOAT Min: 0.0, Max: 6.3
+ - `overview`: STRING Available options: ['A sailor takes an American businessman and his gir', 'The FBI and Texas police make ready to storm the h', 'Electrical Girl centers around a horny young woman', 'Ágata suffers from a psychological disorder which ', ""Shane Ryan's sequel to the disturbing Amateur Porn"", 'Australian film about a fictional sub-par Australi', 'Olaf and his mother run a boarding house and a whi', 'A man who returns home to find his wife cheating o', 'An American scientific research facility opens a p']
+ - `revenue`: FLOAT Min: 0.0, Max: 0.0
+ - `poster_path`: STRING Available options: ['/tzVK7nTnzUiVeFSZhOAIHmrgXUS.jpg', '/1VzwIa8HTykNiCCW8PBaJnyTvO8.jpg', '/yTfqRQlJMTAuTNDG01XjNg5KPPg.jpg', '/oP2WvKIWxqSBVHjfYAizFHOqBLG.jpg', '/zpycBSiBFp5Uib6gWJpgEvfOgdn.jpg', '/e7CAc8OadcUoKNPIX86SEPSX7f.jpg', '/jjncR0vECvXVrBvr0A1vLghL4pN.jpg', '/pJLmZBruOmn2c9mYWe3h1xcXaA0.jpg', '/3uv9oaqOJkkdZiQp6r9lf24tkHW.jpg']
+ - `vote_count`: INTEGER Min: 0, Max: 16
+ - `title`: STRING Available options: ['Erotic Nights of the Living Dead', 'Standoff', 'Electrical Girl', 'Diet of Sex', 'Amateur Porn Star Killer 2', 'The Band', 'The Sinful Dwarf', 'Adulterers', 'Half -Life']
+ - `release_date`: DATE Min: 1973-12-20, Max: 2016-01-05
+ - `status`: STRING Available options: ['Released', 'In Production']
+ - `budget`: INTEGER Min: 0, Max: 750000
+ - `popularity`: FLOAT Min: 0.001803, Max: 6.889832
+ - `imdb_id`: STRING Available options: ['tt0079642', 'tt0119931', 'tt0322232', 'tt3094816', 'tt1161951', 'tt1153101', 'tt0070696', 'tt4044464', 'tt2697688']
+ - `original_title`: STRING Available options: ['Le notti erotiche dei morti viventi', 'Standoff', '發電悄嬌娃', 'Diet of Sex', 'Amateur Porn Star Killer 2', 'The Band', 'Dværgen', 'Adulterers', 'Half -Life']
+ - `id`: INTEGER Min: 5422, Max: 448290
+ - `runtime`: FLOAT Min: 0.0, Max: 112.0
+ - `original_language`: STRING Available options: ['it', 'en', 'cn', 'es', 'da']
+ - `tagline`: STRING Available options: ['Trust Will Get You Killed', 'Comedy, food, drama and sex, a lot of sex', 'Humiliation. Rape. Murder. You know the drill.', ""Sex, drugs and Rock 'n Roll"", 'The Mother of all Dwarfsploitation films!', 'Love. Betrayal. Vengeance']
+ - `homepage`: STRING Available options: ['http://www.imdb.com/title/tt0119931/', 'http://www.dietofsex.com/']
+- **Package**
+ - `price`: FLOAT Min: 0.0, Max: 99.99
+ - `duration`: DURATION
+ - `id`: INTEGER Min: 0, Max: 6
+ - `name`: STRING Available options: ['Childrens', 'Bronze', 'Silver', 'Gold', 'Platinum', 'Ultimate', 'Free Trial']
+- **Subscription**
+ - `expiresAt`: DATE_TIME Min: 2020-08-23T16:20:52.383Z, Max: 2020-08-23T16:20:52.383Z
+ - `id`: STRING Available options: ['e74f7163-eace-4169-8043-41627f1fe236']
+Relationship properties:
+- **CAST_FOR**
+ - `credit_id: STRING` Example: ""52fe4459c3a36847f8090d7d""
+ - `order: INTEGER` Example: ""0""
+ - `character: STRING` Example: ""Charlie Wilson""
+ - `cast_id: INTEGER` Example: ""12""
+- **CREW_FOR**
+ - `credit_id: STRING` Example: ""55e4f0abc3a368140800047e""
+ - `job: STRING` Example: ""Producer""
+ - `department: STRING` Example: ""Production""
+- **RATED**
+ - `timestamp: DATE_TIME` Example: ""2015-03-09T22:49:42Z""
+ - `rating: FLOAT` Example: ""5.0""
+The relationships:
+(:Movie)-[:ORIGINAL_LANGUAGE]->(:Language)
+(:Movie)-[:SPOKEN_IN_LANGUAGE]->(:Language)
+(:Movie)-[:PRODUCED_IN_COUNTRY]->(:Country)
+(:Movie)-[:IN_GENRE]->(:Genre)
+(:Movie)-[:PRODUCED_BY]->(:ProductionCompany)
+(:Movie)-[:HAS_KEYWORD]->(:Keyword)
+(:Movie)-[:IN_COLLECTION]->(:Collection)
+(:Person)-[:CAST_FOR]->(:Movie)
+(:Person)-[:CREW_FOR]->(:Movie)
+(:Person)-[:CREW_FOR]->(:Video)
+(:User)-[:RATED]->(:Movie)
+(:User)-[:RATED]->(:Video)
+(:Video)-[:ORIGINAL_LANGUAGE]->(:Language)
+(:Video)-[:SPOKEN_IN_LANGUAGE]->(:Language)
+(:Video)-[:PRODUCED_IN_COUNTRY]->(:Country)
+(:Video)-[:IN_GENRE]->(:Genre)
+(:Video)-[:PRODUCED_BY]->(:ProductionCompany)
+(:Video)-[:HAS_KEYWORD]->(:Keyword)
+(:Video)-[:IN_COLLECTION]->(:Collection)
+(:Adult)-[:ORIGINAL_LANGUAGE]->(:Language)
+(:Adult)-[:SPOKEN_IN_LANGUAGE]->(:Language)
+(:Adult)-[:PRODUCED_IN_COUNTRY]->(:Country)
+(:Adult)-[:IN_GENRE]->(:Genre)
+(:Adult)-[:PRODUCED_BY]->(:ProductionCompany)
+(:Adult)-[:HAS_KEYWORD]->(:Keyword)
+(:Package)-[:PROVIDES_ACCESS_TO]->(:Genre)
+(:Subscription)-[:FOR_PACKAGE]->(:Package)","{'node_props': {'Movie': [{'property': 'average_vote', 'type': 'FLOAT', 'values': ['7.7', '6.9', '6.5', '6.1', '5.7']}, {'property': 'overview', 'type': 'STRING', 'values': [""Led by Woody, Andy's toys live happily in his room"", 'When siblings Judy and Peter discover an enchanted', 'A family wedding reignites the ancient feud betwee', 'Cheated on, mistreated and stepped on, the women a', 'Just when George Banks has recovered from his daug']}, {'property': 'revenue', 'type': 'FLOAT', 'values': ['3.73554033E8', '2.62797249E8', '0.0', '8.1452156E7', '7.6578911E7']}, {'property': 'vote_count', 'type': 'INTEGER', 'values': ['5415', '2413', '92', '34', '173']}, {'property': 'tagline', 'type': 'STRING', 'values': ['Roll the dice and unleash the excitement!', 'Still Yelling. Still Fighting. Still Ready for Lov', 'Friends are the people who let you be yourself... ', ""Just When His World Is Back To Normal... He's In F""]}, {'property': 'budget', 'type': 'INTEGER', 'values': ['30000000', '65000000', '0', '16000000']}, {'property': 'title', 'type': 'STRING', 'values': ['Toy Story', 'Jumanji', 'Grumpier Old Men', 'Waiting to Exhale', 'Father of the Bride Part II']}, {'property': 'poster_path', 'type': 'STRING', 'values': ['/rhIRbceoE9lR4veEXuwCC2wARtG.jpg', '/vzmL6fP7aPKNKPRTFnZmiUfciyV.jpg', '/6ksm1sjKMFLbO7UY2i6G1ju9SML.jpg', '/16XOMpEaLWkrcPqSQqhTmeJuqQl.jpg', '/e64sOI48hQXyru7naBFyssKFxVd.jpg']}, {'property': 'imdb_id', 'type': 'STRING', 'values': ['tt0114709', 'tt0113497', 'tt0113228', 'tt0114885', 'tt0113041']}, {'property': 'status', 'type': 'STRING', 'values': ['Released']}, {'property': 'runtime', 'type': 'FLOAT', 'values': ['81.0', '104.0', '101.0', '127.0', '106.0']}, {'property': 'popularity', 'type': 'FLOAT', 'values': ['21.946943', '17.015539', '11.7129', '3.859495', '8.387519']}, {'property': 'homepage', 'type': 'STRING', 'values': ['http://toystory.disney.com/toy-story']}, {'property': 'release_date', 'type': 'DATE', 'values': ['1995-10-30', '1995-12-15', '1995-12-22', '1995-02-10']}, {'property': 'id', 'type': 'INTEGER', 'min': '862', 'max': '31357', 'distinct_count': 5}, {'property': 'original_title', 'type': 'STRING', 'values': ['Toy Story', 'Jumanji', 'Grumpier Old Men', 'Waiting to Exhale', 'Father of the Bride Part II']}, {'property': 'original_language', 'type': 'STRING', 'values': ['en']}], 'Language': [{'property': 'id', 'type': 'STRING', 'values': ['en', 'fr', 'zh', 'it', 'fa', 'nl', 'de', 'cn', 'ar', 'es'], 'distinct_count': 133}, {'property': 'name', 'type': 'STRING', 'values': ['', 'Gaeilge', 'Kiswahili', 'Azərbaycan', 'Somali', 'беларуская мова', 'Fulfulde', 'Hausa'], 'distinct_count': 8}], 'Country': [{'property': 'id', 'type': 'STRING', 'values': ['US', 'DE', 'GB', 'FR', 'IT', 'ES', 'CN', 'AU', 'ZA', 'CA'], 'distinct_count': 161}, {'property': 'name', 'type': 'STRING', 'values': ['United States of America', 'Germany', 'United Kingdom', 'France', 'Italy', 'Spain', 'China', 'Australia', 'South Africa', 'Canada'], 'distinct_count': 160}], 'Genre': [{'property': 'id', 'type': 'INTEGER', 'min': '12', 'max': '10770', 'distinct_count': 20}, {'property': 'name', 'type': 'STRING', 'values': ['Animation', 'Comedy', 'Family', 'Adventure', 'Fantasy', 'Romance', 'Drama', 'Action', 'Crime', 'Thriller'], 'distinct_count': 20}], 'ProductionCompany': [{'property': 'id', 'type': 'INTEGER', 'min': '3', 'max': '10201', 'distinct_count': 5}, {'property': 'name', 'type': 'STRING', 'values': ['Pixar Animation Studios', 'TriStar Pictures', 'Teitler Film', 'Interscope Communications', 'Warner Bros.']}], 'Collection': [{'property': 'name', 'type': 'STRING', 'values': ['Toy Story Collection', 'Grumpy Old Men Collection', 'Father of the Bride Collection', 'James Bond Collection', 'Balto Collection', 'Ace Ventura Collection', 'Chili Palmer Collection', 'Babe Collection', 'Mortal Kombat Collection', 'Pocahontas Collection'], 'distinct_count': 1695}, {'property': 'id', 'type': 'INTEGER', 'min': '10', 'max': '480160', 'distinct_count': 1695}, {'property': 'backdrop_path', 'type': 'STRING', 'values': ['/9FBwqcd9IRruEDUrTdcaafOMKUq.jpg', '/hypTnLot2z8wpFS7qwsQHW1uV8u.jpg', '/7qwE57OVZmMJChBpLEbJEmzUydk.jpg', '/6VcVl48kNKvdXOZfJPdarlUGOsk.jpg', '/9VM5LiJV0bGb1st1KyHA3cVnO2G.jpg', '/bswWgdDsLu0fhWMYUzLF8XgiK4h.jpg', '/uWaANGQeoSs5vSP1CWtlkDrkqei.jpg', '/zRWuGdIlkWqXMQcs1t3sPy1XQ6x.jpg', '/qD3efz57VGNywAN4lTvgz3FHnBb.jpg', '/qqeOxNmtAW7WXdbrmQftgluvve7.jpg'], 'distinct_count': 1122}, {'property': 'poster_path', 'type': 'STRING', 'values': ['/7G9915LfUQ2lVfwMEEhDsn3kT4B.jpg', '/nLvUdqgPgm3F85NMCii9gVFUcet.jpg', '/nts4iOmNnq7GNicycMJ9pSAn204.jpg', '/HORpg5CSkmeQlAolx3bKMrKgfi.jpg', '/w0ZgH6Lgxt2bQYnf1ss74UvYftm.jpg', '/qCxH543pScFed1CycwJ1nVgrkOc.jpg', '/ae3smJDdWrMJ77tDpYOrpo4frKq.jpg', '/jgnah0k4AumfcZE4HHMJywYHvG6.jpg', '/nauCllomdtyciLCRcVrSJKcJQbn.jpg', '/s4RkDe4AjwyrlltdF6Ui7INlME6.jpg'], 'distinct_count': 1403}], 'Person': [{'property': 'gender', 'type': 'INTEGER', 'values': ['2']}, {'property': 'profile_path', 'type': 'STRING', 'values': ['/pQFoyx7rp09CJTAb932F2g8Nlho.jpg', '/uX2xVf6pMmPepxnvFWyBtjexzgY.jpg', '/h5BcaDMPRVLHLDzbQavec4xfSdt.jpg', '/eIo2jVVXYgjDtaHoF19Ll9vtW7h.jpg', '/oGE6JqPP2xH4tNORKNqxbNPYi7u.jpg']}, {'property': 'id', 'type': 'INTEGER', 'min': '31', 'max': '12900', 'distinct_count': 5}, {'property': 'name', 'type': 'STRING', 'values': ['Tom Hanks', 'Tim Allen', 'Don Rickles', 'Jim Varney', 'Wallace Shawn']}], 'User': [{'property': 'id', 'type': 'INTEGER', 'min': '27490cf6-22eb-495d-9dd6-902c0f89c627', 'max': '4', 'distinct_count': 5}], 'Keyword': [{'property': 'id', 'type': 'INTEGER', 'min': '931', 'max': '9713', 'distinct_count': 5}, {'property': 'name', 'type': 'STRING', 'values': ['jealousy', 'toy', 'boy', 'friendship', 'friends']}], 'Video': [{'property': 'tagline', 'type': 'STRING', 'values': ['Fresh Fish. Mixed Vegetables.', 'What really happened on 9/11?', 'Spring break... Love Hina Style!!', 'The awesomeness begins', 'The truth is always the truth, a lie is always a l', 'Discover A Magical New Land', ""Spend Father's Day with who really raised you... S"", 'On Halloween night five filmmakers enter a haunted', '“Father of Indian Unrest” (Bal Gangadhar Tilak)', 'Every super hero has his nemesis - and this time F'], 'distinct_count': 25}, {'property': 'average_vote', 'type': 'FLOAT', 'min': '0.0', 'max': '10.0', 'distinct_count': 45}, {'property': 'overview', 'type': 'STRING', 'values': ['Get ready as Bob the Tomato, Larry the Cucumber an', 'What if...September 11th was not a surprise attack', 'A short film in which Quran verses are shown along', 'The tests have come, and Keitaro can only hope to ', 'Ahoy, matey! Your Favorite Playmobil toys have com', 'Experience why America has fallen in love with Ter', 'Some of the boys in South Park elementary find the', 'Behind every breakthrough in the progression of cl', 'The legendary YES line-up of Jon Anderson, Chris S', 'In April 2009, a group of University of Michigan s'], 'distinct_count': 88}, {'property': 'revenue', 'type': 'FLOAT', 'min': '0.0', 'max': '0.0', 'distinct_count': 1}, {'property': 'poster_path', 'type': 'STRING', 'values': ['/iWahPsY3hsKOizZHgzQcAxv4O3B.jpg', '/isRGTPFiX8IwM1dNXQ1SUoticvY.jpg', '/2xZIYEyp6jUfB8ZMiqvtXRD6tSX.jpg', '/pO535dqMmvatuqbgvpOIA1bQw3R.jpg', '/affnnZunHbXQGxlOGNo2QsGUqnC.jpg', '/dklQFjCKxu6WNpAQqaBkWHopUf2.jpg', '/kuGKdb5PyX8J6khl4j3XPLbIH1J.jpg', '/t8YuLmK3NIeeRQ3zjsuJ8v0KMSi.jpg', '/sDNI6jED4yBmFopBEQYznp3wr7f.jpg', '/8GcoqIPxjFqfW2VhG9OcQyftzXC.jpg'], 'distinct_count': 91}, {'property': 'vote_count', 'type': 'INTEGER', 'min': '0', 'max': '115', 'distinct_count': 27}, {'property': 'title', 'type': 'STRING', 'values': ['Jonah: A VeggieTales Movie', 'Loose Change: 2nd Edition', 'Fitna', 'Love Hina Spring Special - I Wish Your Dream', 'Playmobil: The Secret of Pirate Island', 'Terry Fator: Live from Las Vegas', 'South Park: Imaginationland', 'Progression', 'Yes: 9012 live', 'A Very Potter Musical'], 'distinct_count': 93}, {'property': 'release_date', 'type': 'DATE', 'min': '1973-01-12', 'max': '2017-03-17', 'distinct_count': 85}, {'property': 'status', 'type': 'STRING', 'values': ['Released'], 'distinct_count': 1}, {'property': 'budget', 'type': 'INTEGER', 'min': '0', 'max': '2219684', 'distinct_count': 6}, {'property': 'popularity', 'type': 'FLOAT', 'min': '0.0', 'max': '9.22546', 'distinct_count': 93}, {'property': 'imdb_id', 'type': 'STRING', 'values': ['tt0298388', 'tt0831315', 'tt1198399', 'tt0416938', 'tt1512792', 'tt1489246', 'tt1308667', 'tt1530970', 'tt0204116', 'tt2033193'], 'distinct_count': 93}, {'property': 'original_title', 'type': 'STRING', 'values': ['Jonah: A VeggieTales Movie', 'Loose Change: 2nd Edition', 'Fitna', 'ラブひな 春スペシャル ~キミサクラチルナカレ!!~', 'Playmobil: The Secret of Pirate Island', 'Terry Fator: Live from Las Vegas', 'South Park: Imaginationland', 'Progression', 'Yes: 9012 live', 'A Very Potter Musical'], 'distinct_count': 93}, {'property': 'id', 'type': 'INTEGER', 'min': '13284', 'max': '461088', 'distinct_count': 93}, {'property': 'runtime', 'type': 'FLOAT', 'min': '0.0', 'max': '583.0', 'distinct_count': 61}, {'property': 'original_language', 'type': 'STRING', 'values': ['en', 'ja', 'it', 'cn', 'th', 'de', 'ab', 'fr', 'el', 'ko'], 'distinct_count': 13}, {'property': 'homepage', 'type': 'STRING', 'values': ['http://www.loosechange911.com/', 'http://www.sonypictures.com/familyzone/playmobil/', 'http://www.terryfator.com/', 'http://www.bigupproductions.com/#/films/Progressio', 'http://www.teamstarkid.com/avpm.html', 'http://www.teamstarkid.com/avps.html', 'http://www.911inplanesite.com/', 'http://ntlive.nationaltheatre.org.uk/productions/1', 'http://www.thewho.com/listening-to-you-the-who-liv', 'http://www.toddbarry.com/'], 'distinct_count': 28}], 'Adult': [{'property': 'average_vote', 'type': 'FLOAT', 'min': '0.0', 'max': '6.3', 'distinct_count': 9}, {'property': 'overview', 'type': 'STRING', 'values': ['A sailor takes an American businessman and his gir', 'The FBI and Texas police make ready to storm the h', 'Electrical Girl centers around a horny young woman', 'Ágata suffers from a psychological disorder which ', ""Shane Ryan's sequel to the disturbing Amateur Porn"", 'Australian film about a fictional sub-par Australi', 'Olaf and his mother run a boarding house and a whi', 'A man who returns home to find his wife cheating o', 'An American scientific research facility opens a p'], 'distinct_count': 9}, {'property': 'revenue', 'type': 'FLOAT', 'min': '0.0', 'max': '0.0', 'distinct_count': 1}, {'property': 'poster_path', 'type': 'STRING', 'values': ['/tzVK7nTnzUiVeFSZhOAIHmrgXUS.jpg', '/1VzwIa8HTykNiCCW8PBaJnyTvO8.jpg', '/yTfqRQlJMTAuTNDG01XjNg5KPPg.jpg', '/oP2WvKIWxqSBVHjfYAizFHOqBLG.jpg', '/zpycBSiBFp5Uib6gWJpgEvfOgdn.jpg', '/e7CAc8OadcUoKNPIX86SEPSX7f.jpg', '/jjncR0vECvXVrBvr0A1vLghL4pN.jpg', '/pJLmZBruOmn2c9mYWe3h1xcXaA0.jpg', '/3uv9oaqOJkkdZiQp6r9lf24tkHW.jpg'], 'distinct_count': 9}, {'property': 'vote_count', 'type': 'INTEGER', 'min': '0', 'max': '16', 'distinct_count': 8}, {'property': 'title', 'type': 'STRING', 'values': ['Erotic Nights of the Living Dead', 'Standoff', 'Electrical Girl', 'Diet of Sex', 'Amateur Porn Star Killer 2', 'The Band', 'The Sinful Dwarf', 'Adulterers', 'Half -Life'], 'distinct_count': 9}, {'property': 'release_date', 'type': 'DATE', 'min': '1973-12-20', 'max': '2016-01-05', 'distinct_count': 8}, {'property': 'status', 'type': 'STRING', 'values': ['Released', 'In Production'], 'distinct_count': 2}, {'property': 'budget', 'type': 'INTEGER', 'min': '0', 'max': '750000', 'distinct_count': 2}, {'property': 'popularity', 'type': 'FLOAT', 'min': '0.001803', 'max': '6.889832', 'distinct_count': 9}, {'property': 'imdb_id', 'type': 'STRING', 'values': ['tt0079642', 'tt0119931', 'tt0322232', 'tt3094816', 'tt1161951', 'tt1153101', 'tt0070696', 'tt4044464', 'tt2697688'], 'distinct_count': 9}, {'property': 'original_title', 'type': 'STRING', 'values': ['Le notti erotiche dei morti viventi', 'Standoff', '發電悄嬌娃', 'Diet of Sex', 'Amateur Porn Star Killer 2', 'The Band', 'Dværgen', 'Adulterers', 'Half -Life'], 'distinct_count': 9}, {'property': 'id', 'type': 'INTEGER', 'min': '5422', 'max': '448290', 'distinct_count': 9}, {'property': 'runtime', 'type': 'FLOAT', 'min': '0.0', 'max': '112.0', 'distinct_count': 8}, {'property': 'original_language', 'type': 'STRING', 'values': ['it', 'en', 'cn', 'es', 'da'], 'distinct_count': 5}, {'property': 'tagline', 'type': 'STRING', 'values': ['Trust Will Get You Killed', 'Comedy, food, drama and sex, a lot of sex', 'Humiliation. Rape. Murder. You know the drill.', ""Sex, drugs and Rock 'n Roll"", 'The Mother of all Dwarfsploitation films!', 'Love. Betrayal. Vengeance'], 'distinct_count': 6}, {'property': 'homepage', 'type': 'STRING', 'values': ['http://www.imdb.com/title/tt0119931/', 'http://www.dietofsex.com/'], 'distinct_count': 2}], 'Package': [{'property': 'price', 'type': 'FLOAT', 'min': '0.0', 'max': '99.99', 'distinct_count': 7}, {'property': 'duration', 'type': 'DURATION'}, {'property': 'id', 'type': 'INTEGER', 'min': '0', 'max': '6', 'distinct_count': 7}, {'property': 'name', 'type': 'STRING', 'values': ['Childrens', 'Bronze', 'Silver', 'Gold', 'Platinum', 'Ultimate', 'Free Trial'], 'distinct_count': 7}], 'Subscription': [{'property': 'expiresAt', 'type': 'DATE_TIME', 'min': '2020-08-23T16:20:52.383Z', 'max': '2020-08-23T16:20:52.383Z', 'distinct_count': 1}, {'property': 'id', 'type': 'STRING', 'values': ['e74f7163-eace-4169-8043-41627f1fe236'], 'distinct_count': 1}]}, 'rel_props': {'CAST_FOR': [{'property': 'credit_id', 'type': 'STRING', 'values': ['52fe4459c3a36847f8090d7d', '547200b79251411752000075', '52fe4360c3a36847f804faaf', '52fe4283c3a36847f8024aef', '52fe450ec3a36847f80b9ba3']}, {'property': 'order', 'type': 'INTEGER', 'values': ['0', '5', '2']}, {'property': 'character', 'type': 'STRING', 'values': ['Charlie Wilson', 'Mr. Macauley', 'Allen Bauer', 'Captain John H. Miller', 'Mr. White']}, {'property': 'cast_id', 'type': 'INTEGER', 'values': ['12', '14', '1', '10', '5']}], 'CREW_FOR': [{'property': 'credit_id', 'type': 'STRING', 'values': ['55e4f0abc3a368140800047e', '52fe44a2c3a36847f80a14ed', '52fe499dc3a36847f81a3b4f', '54009d31c3a36806030016d9', '54ad733cc3a36856c20000c0']}, {'property': 'job', 'type': 'STRING', 'values': ['Producer', 'Screenplay', 'Executive Producer']}, {'property': 'department', 'type': 'STRING', 'values': ['Production', 'Writing']}], 'RATED': [{'property': 'timestamp', 'type': 'DATE_TIME', 'values': ['2015-03-09T22:49:42Z', '2015-03-09T22:53:21Z', '2015-03-09T22:52:09Z', '2015-03-09T22:48:33Z', '2015-03-09T23:00:07Z']}, {'property': 'rating', 'type': 'FLOAT', 'values': ['5.0', '4.0', '1.0', '3.5']}]}, 'relationships': [{'start': 'Movie', 'type': 'ORIGINAL_LANGUAGE', 'end': 'Language'}, {'start': 'Movie', 'type': 'SPOKEN_IN_LANGUAGE', 'end': 'Language'}, {'start': 'Movie', 'type': 'PRODUCED_IN_COUNTRY', 'end': 'Country'}, {'start': 'Movie', 'type': 'IN_GENRE', 'end': 'Genre'}, {'start': 'Movie', 'type': 'PRODUCED_BY', 'end': 'ProductionCompany'}, {'start': 'Movie', 'type': 'HAS_KEYWORD', 'end': 'Keyword'}, {'start': 'Movie', 'type': 'IN_COLLECTION', 'end': 'Collection'}, {'start': 'Person', 'type': 'CAST_FOR', 'end': 'Movie'}, {'start': 'Person', 'type': 'CREW_FOR', 'end': 'Movie'}, {'start': 'Person', 'type': 'CREW_FOR', 'end': 'Video'}, {'start': 'User', 'type': 'RATED', 'end': 'Movie'}, {'start': 'User', 'type': 'RATED', 'end': 'Video'}, {'start': 'Video', 'type': 'ORIGINAL_LANGUAGE', 'end': 'Language'}, {'start': 'Video', 'type': 'SPOKEN_IN_LANGUAGE', 'end': 'Language'}, {'start': 'Video', 'type': 'PRODUCED_IN_COUNTRY', 'end': 'Country'}, {'start': 'Video', 'type': 'IN_GENRE', 'end': 'Genre'}, {'start': 'Video', 'type': 'PRODUCED_BY', 'end': 'ProductionCompany'}, {'start': 'Video', 'type': 'HAS_KEYWORD', 'end': 'Keyword'}, {'start': 'Video', 'type': 'IN_COLLECTION', 'end': 'Collection'}, {'start': 'Adult', 'type': 'ORIGINAL_LANGUAGE', 'end': 'Language'}, {'start': 'Adult', 'type': 'SPOKEN_IN_LANGUAGE', 'end': 'Language'}, {'start': 'Adult', 'type': 'PRODUCED_IN_COUNTRY', 'end': 'Country'}, {'start': 'Adult', 'type': 'IN_GENRE', 'end': 'Genre'}, {'start': 'Adult', 'type': 'PRODUCED_BY', 'end': 'ProductionCompany'}, {'start': 'Adult', 'type': 'HAS_KEYWORD', 'end': 'Keyword'}, {'start': 'Package', 'type': 'PROVIDES_ACCESS_TO', 'end': 'Genre'}, {'start': 'Subscription', 'type': 'FOR_PACKAGE', 'end': 'Package'}], 'metadata': {'constraint': [{'id': 41, 'name': 'constraint_3a764435', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Movie'], 'properties': ['id'], 'ownedIndex': 'constraint_3a764435', 'propertyType': None}, {'id': 39, 'name': 'constraint_3a8336b6', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['User'], 'properties': ['email'], 'ownedIndex': 'constraint_3a8336b6', 'propertyType': None}, {'id': 49, 'name': 'constraint_47e7f15d', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['User'], 'properties': ['id'], 'ownedIndex': 'constraint_47e7f15d', 'propertyType': None}, {'id': 27, 'name': 'constraint_50656458', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Person'], 'properties': ['id'], 'ownedIndex': 'constraint_50656458', 'propertyType': None}, {'id': 43, 'name': 'constraint_56e99879', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Subscription'], 'properties': ['id'], 'ownedIndex': 'constraint_56e99879', 'propertyType': None}, {'id': 35, 'name': 'constraint_5ad5c639', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Country'], 'properties': ['id'], 'ownedIndex': 'constraint_5ad5c639', 'propertyType': None}, {'id': 45, 'name': 'constraint_5cf79cea', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Package'], 'properties': ['id'], 'ownedIndex': 'constraint_5cf79cea', 'propertyType': None}, {'id': 33, 'name': 'constraint_860aead3', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Genre'], 'properties': ['id'], 'ownedIndex': 'constraint_860aead3', 'propertyType': None}, {'id': 31, 'name': 'constraint_9a791beb', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['ProductionCompany'], 'properties': ['id'], 'ownedIndex': 'constraint_9a791beb', 'propertyType': None}, {'id': 37, 'name': 'constraint_c2951f31', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Language'], 'properties': ['id'], 'ownedIndex': 'constraint_c2951f31', 'propertyType': None}, {'id': 29, 'name': 'constraint_cf4b0437', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Collection'], 'properties': ['id'], 'ownedIndex': 'constraint_cf4b0437', 'propertyType': None}, {'id': 47, 'name': 'constraint_db0e1c22', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Keyword'], 'properties': ['id'], 'ownedIndex': 'constraint_db0e1c22', 'propertyType': None}], 'index': [{'label': 'Collection', 'properties': ['id'], 'size': 1695, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1695.0}, {'label': 'Country', 'properties': ['id'], 'size': 161, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 161.0}, {'label': 'Genre', 'properties': ['id'], 'size': 20, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 20.0}, {'label': 'Keyword', 'properties': ['id'], 'size': 19956, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 19956.0}, {'label': 'Language', 'properties': ['id'], 'size': 133, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 133.0}, {'label': 'Movie', 'properties': ['id'], 'size': 45433, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 45433.0}, {'label': 'Package', 'properties': ['id'], 'size': 7, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 7.0}, {'label': 'Person', 'properties': ['id'], 'size': 353343, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 353343.0}, {'label': 'ProductionCompany', 'properties': ['id'], 'size': 23693, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 23693.0}, {'label': 'Subscription', 'properties': ['id'], 'size': 1, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1.0}, {'label': 'User', 'properties': ['email'], 'size': 1, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1.0}, {'label': 'User', 'properties': ['id'], 'size': 265918, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 265918.0}]}}"
+network,"Node properties:
+- **DataCenter**
+ - `name`: STRING Available options: ['DC1']
+ - `location`: STRING Available options: ['Iceland, Rekjavik']
+- **Router**
+ - `name`: STRING Available options: ['DC1-RE', 'DC1-R-1', 'DC1-R-2', 'DC1-R-3', 'DC1-R-4']
+ - `zone`: INTEGER Min: 1, Max: 4
+- **Egress**
+ - `name`: STRING Available options: ['DC1-RE']
+- **Interface**
+ - `ip`: STRING Example: ""10.0.0.254""
+- **Network**
+ - `ip`: STRING Available options: ['10.1', '10.2', '10.3', '10.4']
+ - `size`: INTEGER Min: 16, Max: 16
+ - `zone`: INTEGER Min: 1, Max: 4
+- **Zone**
+ - `ip`: STRING Available options: ['10.1', '10.2', '10.3', '10.4']
+ - `size`: INTEGER Min: 16, Max: 16
+ - `zone`: INTEGER Min: 1, Max: 4
+- **Rack**
+ - `name`: STRING Example: ""DC1-RCK-1-1""
+ - `zone`: INTEGER Min: 1, Max: 4
+ - `rack`: INTEGER Min: 1, Max: 10
+- **Switch**
+ - `ip`: STRING Example: ""10.1.1""
+ - `rack`: INTEGER Min: 1, Max: 10
+- **Type**
+ - `id`: INTEGER Min: 0, Max: 5
+ - `type`: STRING Available options: ['xs', 's', 'm', 'l', 'xl', 'xxl']
+ - `ram`: INTEGER Min: 1, Max: 1024
+ - `name`: STRING Available options: ['xs-1/1/1', 's-2/4/5', 'm-4/16/25', 'l-8/64/125', 'xl-16/256/625', 'xxl-32/1024/3125']
+ - `disk`: INTEGER Min: 1, Max: 3125
+ - `cpu`: INTEGER Min: 1, Max: 32
+- **Machine**
+ - `name`: STRING Example: ""DC1-RCK-1-1-M-1""
+- **Software**
+ - `name`: STRING Example: ""RHEL""
+ - `versions`: LIST Min Size: 1, Max Size: 4
+ - `ports`: LIST Min Size: 1, Max Size: 11
+ - `dependencies`: LIST Min Size: 1, Max Size: 3
+- **OS**
+ - `name`: STRING Example: ""RHEL""
+ - `startTime`: INTEGER Min: 1605733619064, Max: 1606597376483
+- **Service**
+ - `name`: STRING Example: ""java""
+ - `startTime`: INTEGER
+ - `pid`: INTEGER
+- **Application**
+ - `name`: STRING Available options: ['webserver', 'crm', 'cms', 'webapp', 'logstash']
+ - `startTime`: INTEGER Min: 1606165629748, Max: 1607029401909
+ - `pid`: INTEGER Min: 0, Max: 9999
+- **Version**
+ - `name`: STRING Example: ""7.1""
+- **Process**
+ - `name`: STRING Example: ""7.1""
+ - `startTime`: INTEGER Example: ""1605946409388""
+ - `pid`: INTEGER Example: ""8966""
+- **Port**
+ - `port`: INTEGER Example: ""80""
+Relationship properties:
+
+The relationships:
+(:DataCenter)-[:CONTAINS]->(:Rack)
+(:DataCenter)-[:CONTAINS]->(:Router)
+(:DataCenter)-[:CONTAINS]->(:Egress)
+(:Router)-[:ROUTES]->(:Interface)
+(:Egress)-[:ROUTES]->(:Interface)
+(:Interface)-[:EXPOSES]->(:Port)
+(:Interface)-[:CONNECTS]->(:Interface)
+(:Network)-[:ROUTES]->(:Interface)
+(:Zone)-[:ROUTES]->(:Interface)
+(:Rack)-[:HOLDS]->(:Machine)
+(:Rack)-[:HOLDS]->(:Switch)
+(:Switch)-[:ROUTES]->(:Interface)
+(:Machine)-[:RUNS]->(:Application)
+(:Machine)-[:RUNS]->(:Process)
+(:Machine)-[:RUNS]->(:OS)
+(:Machine)-[:RUNS]->(:Service)
+(:Machine)-[:ROUTES]->(:Interface)
+(:Machine)-[:TYPE]->(:Type)
+(:Software)-[:VERSION]->(:Version)
+(:Software)-[:DEPENDS_ON]->(:Version)
+(:Software)-[:DEPENDS_ON]->(:Software)
+(:Software)-[:DEPENDS_ON]->(:Application)
+(:Software)-[:DEPENDS_ON]->(:Service)
+(:OS)-[:INSTANCE]->(:Version)
+(:Service)-[:LISTENS]->(:Port)
+(:Service)-[:INSTANCE]->(:Software)
+(:Service)-[:INSTANCE]->(:Service)
+(:Service)-[:INSTANCE]->(:Version)
+(:Service)-[:INSTANCE]->(:Application)
+(:Application)-[:LISTENS]->(:Port)
+(:Application)-[:INSTANCE]->(:Software)
+(:Application)-[:INSTANCE]->(:Application)
+(:Application)-[:DEPENDS_ON]->(:Service)
+(:Application)-[:DEPENDS_ON]->(:Process)
+(:Version)-[:PREVIOUS]->(:Version)
+(:Process)-[:INSTANCE]->(:Version)
+(:Process)-[:INSTANCE]->(:Software)
+(:Process)-[:INSTANCE]->(:Application)
+(:Process)-[:INSTANCE]->(:Service)
+(:Process)-[:DEPENDS_ON]->(:Service)
+(:Process)-[:DEPENDS_ON]->(:Process)
+(:Process)-[:LISTENS]->(:Port)","{'node_props': {'DataCenter': [{'property': 'name', 'type': 'STRING', 'values': ['DC1'], 'distinct_count': 1}, {'property': 'location', 'type': 'STRING', 'values': ['Iceland, Rekjavik'], 'distinct_count': 1}], 'Router': [{'property': 'name', 'type': 'STRING', 'values': ['DC1-RE', 'DC1-R-1', 'DC1-R-2', 'DC1-R-3', 'DC1-R-4'], 'distinct_count': 5}, {'property': 'zone', 'type': 'INTEGER', 'min': '1', 'max': '4', 'distinct_count': 4}], 'Egress': [{'property': 'name', 'type': 'STRING', 'values': ['DC1-RE'], 'distinct_count': 1}], 'Interface': [{'property': 'ip', 'type': 'STRING', 'values': ['10.0.0.254', '10.1.0.254', '10.2.0.254', '10.3.0.254', '10.4.0.254', '10.1.1.254', '10.1.2.254', '10.1.3.254', '10.1.4.254', '10.1.5.254'], 'distinct_count': 8045}], 'Network': [{'property': 'ip', 'type': 'STRING', 'values': ['10.1', '10.2', '10.3', '10.4'], 'distinct_count': 4}, {'property': 'size', 'type': 'INTEGER', 'min': '16', 'max': '16', 'distinct_count': 1}, {'property': 'zone', 'type': 'INTEGER', 'min': '1', 'max': '4', 'distinct_count': 4}], 'Zone': [{'property': 'ip', 'type': 'STRING', 'values': ['10.1', '10.2', '10.3', '10.4'], 'distinct_count': 4}, {'property': 'size', 'type': 'INTEGER', 'min': '16', 'max': '16', 'distinct_count': 1}, {'property': 'zone', 'type': 'INTEGER', 'min': '1', 'max': '4', 'distinct_count': 4}], 'Rack': [{'property': 'name', 'type': 'STRING', 'values': ['DC1-RCK-1-1', 'DC1-RCK-1-2', 'DC1-RCK-1-3', 'DC1-RCK-1-4', 'DC1-RCK-1-5', 'DC1-RCK-1-6', 'DC1-RCK-1-7', 'DC1-RCK-1-8', 'DC1-RCK-1-9', 'DC1-RCK-1-10'], 'distinct_count': 40}, {'property': 'zone', 'type': 'INTEGER', 'min': '1', 'max': '4', 'distinct_count': 4}, {'property': 'rack', 'type': 'INTEGER', 'min': '1', 'max': '10', 'distinct_count': 10}], 'Switch': [{'property': 'ip', 'type': 'STRING', 'values': ['10.1.1', '10.1.2', '10.1.3', '10.1.4', '10.1.5', '10.1.6', '10.1.7', '10.1.8', '10.1.9', '10.1.10'], 'distinct_count': 40}, {'property': 'rack', 'type': 'INTEGER', 'min': '1', 'max': '10', 'distinct_count': 10}], 'Type': [{'property': 'id', 'type': 'INTEGER', 'min': '0', 'max': '5', 'distinct_count': 6}, {'property': 'type', 'type': 'STRING', 'values': ['xs', 's', 'm', 'l', 'xl', 'xxl'], 'distinct_count': 6}, {'property': 'ram', 'type': 'INTEGER', 'min': '1', 'max': '1024', 'distinct_count': 6}, {'property': 'name', 'type': 'STRING', 'values': ['xs-1/1/1', 's-2/4/5', 'm-4/16/25', 'l-8/64/125', 'xl-16/256/625', 'xxl-32/1024/3125'], 'distinct_count': 6}, {'property': 'disk', 'type': 'INTEGER', 'min': '1', 'max': '3125', 'distinct_count': 6}, {'property': 'cpu', 'type': 'INTEGER', 'min': '1', 'max': '32', 'distinct_count': 6}], 'Machine': [{'property': 'name', 'type': 'STRING', 'values': ['DC1-RCK-1-1-M-1', 'DC1-RCK-1-1-M-2', 'DC1-RCK-1-1-M-3', 'DC1-RCK-1-1-M-4', 'DC1-RCK-1-1-M-5', 'DC1-RCK-1-1-M-6', 'DC1-RCK-1-1-M-7', 'DC1-RCK-1-1-M-8', 'DC1-RCK-1-1-M-9', 'DC1-RCK-1-1-M-10'], 'distinct_count': 8000}], 'Software': [{'property': 'name', 'type': 'STRING', 'values': ['RHEL', 'Ubuntu', 'Debian', 'java', 'neo4j', 'postgres', 'couchbase', 'elasticsearch', 'webserver', 'crm'], 'distinct_count': 14}, {'property': 'versions', 'type': 'LIST', 'max_size': 4, 'min_size': 1}, {'property': 'ports', 'type': 'LIST', 'max_size': 11, 'min_size': 1}, {'property': 'dependencies', 'type': 'LIST', 'max_size': 3, 'min_size': 1}], 'OS': [{'property': 'name', 'type': 'STRING', 'values': ['RHEL', 'Ubuntu', 'Debian', '7.1', '7.2', '14.04', '17.04', '7-Wheezy', '6-Squeeze', '8-Jessie'], 'distinct_count': 13}, {'property': 'startTime', 'type': 'INTEGER', 'min': '1605733619064', 'max': '1606597376483', 'distinct_count': 8000}], 'Service': [{'property': 'name', 'type': 'STRING', 'values': ['java', 'neo4j', 'postgres', 'couchbase', 'elasticsearch']}, {'property': 'startTime', 'type': 'INTEGER', 'values': []}, {'property': 'pid', 'type': 'INTEGER', 'values': []}], 'Application': [{'property': 'name', 'type': 'STRING', 'values': ['webserver', 'crm', 'cms', 'webapp', 'logstash'], 'distinct_count': 5}, {'property': 'startTime', 'type': 'INTEGER', 'min': '1606165629748', 'max': '1607029401909', 'distinct_count': 8000}, {'property': 'pid', 'type': 'INTEGER', 'min': '0', 'max': '9999', 'distinct_count': 5541}], 'Version': [{'property': 'name', 'type': 'STRING', 'values': ['7.1', '7.2', '7.3', '14.04', '16.04', '16.10', '17.04', '6-Squeeze', '7-Wheezy', '8-Jessie'], 'distinct_count': 23}], 'Process': [{'property': 'name', 'type': 'STRING', 'values': ['7.1', 'webserver', '7.2', 'crm', '14.04']}, {'property': 'startTime', 'type': 'INTEGER', 'values': ['1605946409388', '1606178140338', '1606205018820', '1606757328692', '1605741608606']}, {'property': 'pid', 'type': 'INTEGER', 'values': ['8966', '4885']}], 'Port': [{'property': 'port', 'type': 'INTEGER', 'values': ['80', '443']}]}, 'rel_props': {}, 'relationships': [{'start': 'DataCenter', 'type': 'CONTAINS', 'end': 'Rack'}, {'start': 'DataCenter', 'type': 'CONTAINS', 'end': 'Router'}, {'start': 'DataCenter', 'type': 'CONTAINS', 'end': 'Egress'}, {'start': 'Router', 'type': 'ROUTES', 'end': 'Interface'}, {'start': 'Egress', 'type': 'ROUTES', 'end': 'Interface'}, {'start': 'Interface', 'type': 'EXPOSES', 'end': 'Port'}, {'start': 'Interface', 'type': 'CONNECTS', 'end': 'Interface'}, {'start': 'Network', 'type': 'ROUTES', 'end': 'Interface'}, {'start': 'Zone', 'type': 'ROUTES', 'end': 'Interface'}, {'start': 'Rack', 'type': 'HOLDS', 'end': 'Machine'}, {'start': 'Rack', 'type': 'HOLDS', 'end': 'Switch'}, {'start': 'Switch', 'type': 'ROUTES', 'end': 'Interface'}, {'start': 'Machine', 'type': 'RUNS', 'end': 'Application'}, {'start': 'Machine', 'type': 'RUNS', 'end': 'Process'}, {'start': 'Machine', 'type': 'RUNS', 'end': 'OS'}, {'start': 'Machine', 'type': 'RUNS', 'end': 'Service'}, {'start': 'Machine', 'type': 'ROUTES', 'end': 'Interface'}, {'start': 'Machine', 'type': 'TYPE', 'end': 'Type'}, {'start': 'Software', 'type': 'VERSION', 'end': 'Version'}, {'start': 'Software', 'type': 'DEPENDS_ON', 'end': 'Version'}, {'start': 'Software', 'type': 'DEPENDS_ON', 'end': 'Software'}, {'start': 'Software', 'type': 'DEPENDS_ON', 'end': 'Application'}, {'start': 'Software', 'type': 'DEPENDS_ON', 'end': 'Service'}, {'start': 'OS', 'type': 'INSTANCE', 'end': 'Version'}, {'start': 'Service', 'type': 'LISTENS', 'end': 'Port'}, {'start': 'Service', 'type': 'INSTANCE', 'end': 'Software'}, {'start': 'Service', 'type': 'INSTANCE', 'end': 'Service'}, {'start': 'Service', 'type': 'INSTANCE', 'end': 'Version'}, {'start': 'Service', 'type': 'INSTANCE', 'end': 'Application'}, {'start': 'Application', 'type': 'LISTENS', 'end': 'Port'}, {'start': 'Application', 'type': 'INSTANCE', 'end': 'Software'}, {'start': 'Application', 'type': 'INSTANCE', 'end': 'Application'}, {'start': 'Application', 'type': 'DEPENDS_ON', 'end': 'Service'}, {'start': 'Application', 'type': 'DEPENDS_ON', 'end': 'Process'}, {'start': 'Version', 'type': 'PREVIOUS', 'end': 'Version'}, {'start': 'Process', 'type': 'INSTANCE', 'end': 'Version'}, {'start': 'Process', 'type': 'INSTANCE', 'end': 'Software'}, {'start': 'Process', 'type': 'INSTANCE', 'end': 'Application'}, {'start': 'Process', 'type': 'INSTANCE', 'end': 'Service'}, {'start': 'Process', 'type': 'DEPENDS_ON', 'end': 'Service'}, {'start': 'Process', 'type': 'DEPENDS_ON', 'end': 'Process'}, {'start': 'Process', 'type': 'LISTENS', 'end': 'Port'}], 'metadata': {'constraint': [], 'index': [{'label': 'Software', 'properties': ['name'], 'size': 14, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 14.0}]}}"
+northwind,"Node properties:
+- **Product**
+ - `productName`: STRING Example: ""Chai""
+ - `quantityPerUnit`: STRING Example: ""10 boxes x 20 bags""
+ - `unitsOnOrder`: INTEGER Min: 0, Max: 100
+ - `supplierID`: STRING Example: ""1""
+ - `productID`: STRING Example: ""1""
+ - `discontinued`: BOOLEAN
+ - `categoryID`: STRING Available options: ['1', '2', '7', '6', '8', '4', '3', '5']
+ - `reorderLevel`: INTEGER Min: 0, Max: 30
+ - `unitsInStock`: INTEGER Min: 0, Max: 125
+ - `unitPrice`: FLOAT Min: 2.5, Max: 263.5
+- **Category**
+ - `picture`: STRING Available options: ['0x151C2F00020000000D000E0014002100FFFFFFFF4269746D']
+ - `categoryID`: STRING Available options: ['1', '2', '3', '4', '5', '6', '7', '8']
+ - `description`: STRING Available options: ['Soft drinks, coffees, teas, beers, and ales', 'Sweet and savory sauces, relishes, spreads, and se', 'Desserts, candies, and sweet breads', 'Cheeses', 'Breads, crackers, pasta, and cereal', 'Prepared meats', 'Dried fruit and bean curd', 'Seaweed and fish']
+ - `categoryName`: STRING Available options: ['Beverages', 'Condiments', 'Confections', 'Dairy Products', 'Grains/Cereals', 'Meat/Poultry', 'Produce', 'Seafood']
+- **Supplier**
+ - `companyName`: STRING Example: ""Exotic Liquids""
+ - `contactName`: STRING Example: ""Charlotte Cooper""
+ - `homePage`: STRING Available options: ['NULL', '#CAJUN.HTM#', ""Mayumi's (on the World Wide Web)#http://www.micros"", '(03) 444-6588', 'Plutzer (on the World Wide Web)#http://www.microso', '(0544) 60603', '(1) 03.83.00.62', '(02) 555-4873', '(089) 6547667', '38.76.98.58']
+ - `phone`: STRING Example: ""(171) 555-2222""
+ - `postalCode`: STRING Example: ""EC1 4SD""
+ - `contactTitle`: STRING Example: ""Purchasing Manager""
+ - `region`: STRING Example: ""NULL""
+ - `address`: STRING Example: ""49 Gilbert St.""
+ - `fax`: STRING Example: ""NULL""
+ - `supplierID`: STRING Example: ""1""
+ - `country`: STRING Example: ""UK""
+ - `city`: STRING Example: ""London""
+- **Customer**
+ - `fax`: STRING Example: ""030-0076545""
+ - `companyName`: STRING Example: ""Alfreds Futterkiste""
+ - `customerID`: STRING Example: ""ALFKI""
+ - `phone`: STRING Example: ""030-0074321""
+ - `contactName`: STRING Example: ""Maria Anders""
+ - `contactTitle`: STRING Example: ""Sales Representative""
+ - `region`: STRING Example: ""NULL""
+ - `address`: STRING Example: ""Obere Str. 57""
+ - `postalCode`: STRING Example: ""12209""
+ - `country`: STRING Example: ""Germany""
+ - `city`: STRING Example: ""Berlin""
+- **Order**
+ - `shipName`: STRING Example: ""Vins et alcools Chevalier""
+ - `requiredDate`: STRING Example: ""1996-08-01 00:00:00.000""
+ - `shipCity`: STRING Example: ""Reims""
+ - `employeeID`: STRING Available options: ['5', '6', '4', '3', '9', '1', '8', '2', '7']
+ - `shipPostalCode`: STRING Example: ""51100""
+ - `shippedDate`: STRING Example: ""1996-07-16 00:00:00.000""
+ - `freight`: STRING Example: ""32.38""
+ - `orderDate`: STRING Example: ""1996-07-04 00:00:00.000""
+ - `orderID`: STRING Example: ""10248""
+ - `shipAddress`: STRING Example: ""59 rue de l'Abbaye""
+ - `customerID`: STRING Example: ""VINET""
+ - `shipCountry`: STRING Example: ""France""
+ - `shipVia`: STRING Available options: ['3', '1', '2']
+ - `shipRegion`: STRING Example: ""NULL""
+Relationship properties:
+- **ORDERS**
+ - `orderID: STRING` Example: ""10248""
+ - `unitPrice: STRING` Example: ""34.80""
+ - `productID: STRING` Example: ""72""
+ - `quantity: INTEGER` Min: 1, Max: 130
+ - `discount: STRING` Example: ""0""
+The relationships:
+(:Product)-[:PART_OF]->(:Category)
+(:Supplier)-[:SUPPLIES]->(:Product)
+(:Customer)-[:PURCHASED]->(:Order)
+(:Order)-[:ORDERS]->(:Product)","{'node_props': {'Product': [{'property': 'productName', 'type': 'STRING', 'values': ['Chai', 'Chang', 'Aniseed Syrup', ""Chef Anton's Cajun Seasoning"", ""Chef Anton's Gumbo Mix"", ""Grandma's Boysenberry Spread"", ""Uncle Bob's Organic Dried Pears"", 'Northwoods Cranberry Sauce', 'Mishi Kobe Niku', 'Ikura'], 'distinct_count': 77}, {'property': 'quantityPerUnit', 'type': 'STRING', 'values': ['10 boxes x 20 bags', '24 - 12 oz bottles', '12 - 550 ml bottles', '48 - 6 oz jars', '36 boxes', '12 - 8 oz jars', '12 - 1 lb pkgs.', '12 - 12 oz jars', '18 - 500 g pkgs.', '12 - 200 ml jars'], 'distinct_count': 70}, {'property': 'unitsOnOrder', 'type': 'INTEGER', 'min': '0', 'max': '100', 'distinct_count': 10}, {'property': 'supplierID', 'type': 'STRING', 'values': ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'], 'distinct_count': 29}, {'property': 'productID', 'type': 'STRING', 'values': ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'], 'distinct_count': 77}, {'property': 'discontinued', 'type': 'BOOLEAN'}, {'property': 'categoryID', 'type': 'STRING', 'values': ['1', '2', '7', '6', '8', '4', '3', '5'], 'distinct_count': 8}, {'property': 'reorderLevel', 'type': 'INTEGER', 'min': '0', 'max': '30', 'distinct_count': 7}, {'property': 'unitsInStock', 'type': 'INTEGER', 'min': '0', 'max': '125', 'distinct_count': 51}, {'property': 'unitPrice', 'type': 'FLOAT', 'min': '2.5', 'max': '263.5', 'distinct_count': 62}], 'Category': [{'property': 'picture', 'type': 'STRING', 'values': ['0x151C2F00020000000D000E0014002100FFFFFFFF4269746D'], 'distinct_count': 1}, {'property': 'categoryID', 'type': 'STRING', 'values': ['1', '2', '3', '4', '5', '6', '7', '8'], 'distinct_count': 8}, {'property': 'description', 'type': 'STRING', 'values': ['Soft drinks, coffees, teas, beers, and ales', 'Sweet and savory sauces, relishes, spreads, and se', 'Desserts, candies, and sweet breads', 'Cheeses', 'Breads, crackers, pasta, and cereal', 'Prepared meats', 'Dried fruit and bean curd', 'Seaweed and fish'], 'distinct_count': 8}, {'property': 'categoryName', 'type': 'STRING', 'values': ['Beverages', 'Condiments', 'Confections', 'Dairy Products', 'Grains/Cereals', 'Meat/Poultry', 'Produce', 'Seafood'], 'distinct_count': 8}], 'Supplier': [{'property': 'companyName', 'type': 'STRING', 'values': ['Exotic Liquids', 'New Orleans Cajun Delights', ""Grandma Kelly's Homestead"", 'Tokyo Traders', ""Cooperativa de Quesos 'Las Cabras'"", ""Mayumi's"", 'Pavlova', 'Specialty Biscuits', 'PB Knäckebröd AB', 'Refrescos Americanas LTDA'], 'distinct_count': 29}, {'property': 'contactName', 'type': 'STRING', 'values': ['Charlotte Cooper', 'Shelley Burke', 'Regina Murphy', 'Yoshi Nagase', 'Antonio del Valle Saavedra', 'Mayumi Ohno', ' Ltd.', 'Lars Peterson', 'Carlos Diaz', 'Petra Winkler'], 'distinct_count': 28}, {'property': 'homePage', 'type': 'STRING', 'values': ['NULL', '#CAJUN.HTM#', ""Mayumi's (on the World Wide Web)#http://www.micros"", '(03) 444-6588', 'Plutzer (on the World Wide Web)#http://www.microso', '(0544) 60603', '(1) 03.83.00.62', '(02) 555-4873', '(089) 6547667', '38.76.98.58'], 'distinct_count': 10}, {'property': 'phone', 'type': 'STRING', 'values': ['(171) 555-2222', '(100) 555-4822', '(313) 555-5735', '(03) 3555-5011', '(98) 598 76 54', '(06) 431-7877', 'Australia', 'UK', '031-987 65 43', '(11) 555 4640'], 'distinct_count': 25}, {'property': 'postalCode', 'type': 'STRING', 'values': ['EC1 4SD', '70117', '48104', '100', '33007', '545', 'Victoria', 'NULL', 'S-345 67', '5442'], 'distinct_count': 23}, {'property': 'contactTitle', 'type': 'STRING', 'values': ['Purchasing Manager', 'Order Administrator', 'Sales Representative', 'Marketing Manager', 'Export Administrator', 'Marketing Representative', 'Ian Devling', 'Peter Wilson', 'Sales Agent', 'Sales Manager'], 'distinct_count': 18}, {'property': 'region', 'type': 'STRING', 'values': ['NULL', 'LA', 'MI', 'Asturias', 'Melbourne', 'Manchester', 'Ravenna', 'OR', 'Paris', 'MA'], 'distinct_count': 16}, {'property': 'address', 'type': 'STRING', 'values': ['49 Gilbert St.', 'P.O. Box 78934', '707 Oxford Rd.', '9-8 Sekimai Musashino-shi', 'Calle del Rosal 4', '92 Setsuko Chuo-ku', 'Marketing Manager', 'Sales Representative', 'Kaloadagatan 13', 'Av. das Americanas 12.890'], 'distinct_count': 28}, {'property': 'fax', 'type': 'STRING', 'values': ['NULL', '(313) 555-3349', '(03) 444-2343', '(161) 555-4448', '031-987 65 91', '(04721) 8714', '(0544) 60323', '(1) 03.83.00.68', '(617) 555-3389', '555-8787'], 'distinct_count': 17}, {'property': 'supplierID', 'type': 'STRING', 'values': ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10'], 'distinct_count': 29}, {'property': 'country', 'type': 'STRING', 'values': ['UK', 'USA', 'Japan', 'Spain', '3058', 'M14 GSD', 'Sweden', 'Brazil', 'Germany', '48100'], 'distinct_count': 21}, {'property': 'city', 'type': 'STRING', 'values': ['London', 'New Orleans', 'Ann Arbor', 'Tokyo', 'Oviedo', 'Osaka', '74 Rose St. Moonie Ponds', ""29 King's Way"", 'Göteborg', 'Sao Paulo'], 'distinct_count': 29}], 'Customer': [{'property': 'fax', 'type': 'STRING', 'values': ['030-0076545', '(5) 555-3745', 'NULL', '(171) 555-6750', '0921-12 34 67', '0621-08924', '88.60.15.32', '(91) 555 91 99', '91.24.45.41', '(604) 555-3745'], 'distinct_count': 70}, {'property': 'companyName', 'type': 'STRING', 'values': ['Alfreds Futterkiste', 'Ana Trujillo Emparedados y helados', 'Antonio Moreno Taquería', 'Around the Horn', 'Berglunds snabbköp', 'Blauer See Delikatessen', 'Blondesddsl père et fils', 'Bólido Comidas preparadas', ""Bon app'"", 'Bottom-Dollar Markets'], 'distinct_count': 91}, {'property': 'customerID', 'type': 'STRING', 'values': ['ALFKI', 'ANATR', 'ANTON', 'AROUT', 'BERGS', 'BLAUS', 'BLONP', 'BOLID', 'BONAP', 'BOTTM'], 'distinct_count': 91}, {'property': 'phone', 'type': 'STRING', 'values': ['030-0074321', '(5) 555-4729', '(5) 555-3932', '(171) 555-7788', '0921-12 34 65', '0621-08460', '88.60.15.31', '(91) 555 22 82', '91.24.45.40', '(604) 555-4729'], 'distinct_count': 91}, {'property': 'contactName', 'type': 'STRING', 'values': ['Maria Anders', 'Ana Trujillo', 'Antonio Moreno', 'Thomas Hardy', 'Christina Berglund', 'Hanna Moos', 'Frédérique Citeaux', 'Martín Sommer', 'Laurence Lebihan', 'Elizabeth Lincoln'], 'distinct_count': 91}, {'property': 'contactTitle', 'type': 'STRING', 'values': ['Sales Representative', 'Owner', 'Order Administrator', 'Marketing Manager', 'Accounting Manager', 'Sales Agent', 'Sales Associate', 'Sales Manager', 'Marketing Assistant', 'Assistant Sales Agent'], 'distinct_count': 12}, {'property': 'region', 'type': 'STRING', 'values': ['NULL', 'BC', 'SP', 'OR', 'DF', 'RJ', 'Táchira', 'Co. Cork', 'Isle of Wight', 'WA'], 'distinct_count': 19}, {'property': 'address', 'type': 'STRING', 'values': ['Obere Str. 57', 'Avda. de la Constitución 2222', 'Mataderos 2312', '120 Hanover Sq.', 'Berguvsvägen 8', 'Forsterstr. 57', '24, place Kléber', 'C/ Araquil, 67', ' 12, rue des Bouchers', '23 Tsawassen Blvd.'], 'distinct_count': 91}, {'property': 'postalCode', 'type': 'STRING', 'values': ['12209', '5021', '5023', 'WA1 1DP', 'S-958 22', '68306', '67000', '28023', '13008', 'T2F 8M4'], 'distinct_count': 86}, {'property': 'country', 'type': 'STRING', 'values': ['Germany', 'Mexico', 'UK', 'Sweden', 'France', 'Spain', 'Canada', 'Argentina', 'Switzerland', 'Brazil'], 'distinct_count': 21}, {'property': 'city', 'type': 'STRING', 'values': ['Berlin', 'México D.F.', 'London', 'Luleå', 'Mannheim', 'Strasbourg', 'Madrid', 'Marseille', 'Tsawassen', 'Buenos Aires'], 'distinct_count': 69}], 'Order': [{'property': 'shipName', 'type': 'STRING', 'values': ['Vins et alcools Chevalier', 'Toms Spezialitäten', 'Hanari Carnes', 'Victuailles en stock', 'Suprêmes délices', 'Chop-suey Chinese', 'Richter Supermarkt', 'Wellington Importadora', 'HILARION-Abastos', 'Ernst Handel'], 'distinct_count': 90}, {'property': 'requiredDate', 'type': 'STRING', 'values': ['1996-08-01 00:00:00.000', '1996-08-16 00:00:00.000', '1996-08-05 00:00:00.000', '1996-08-06 00:00:00.000', '1996-07-24 00:00:00.000', '1996-08-08 00:00:00.000', '1996-08-09 00:00:00.000', '1996-08-12 00:00:00.000', '1996-08-13 00:00:00.000', '1996-08-14 00:00:00.000'], 'distinct_count': 454}, {'property': 'shipCity', 'type': 'STRING', 'values': ['Reims', 'Münster', ' 67', ' rue du Commerce', ' 255', 'Bern', 'Genève', ' 12', 'San Cristóbal', 'Graz'], 'distinct_count': 74}, {'property': 'employeeID', 'type': 'STRING', 'values': ['5', '6', '4', '3', '9', '1', '8', '2', '7'], 'distinct_count': 9}, {'property': 'shipPostalCode', 'type': 'STRING', 'values': ['51100', '44087', 'RJ', 'NULL', '3012', '1204', 'SP', '5022', '8010', '05022'], 'distinct_count': 66}, {'property': 'shippedDate', 'type': 'STRING', 'values': ['1996-07-16 00:00:00.000', '1996-07-10 00:00:00.000', '1996-07-12 00:00:00.000', '1996-07-15 00:00:00.000', '1996-07-11 00:00:00.000', '1996-07-23 00:00:00.000', '1996-07-17 00:00:00.000', '1996-07-22 00:00:00.000', '1996-07-25 00:00:00.000', '1996-07-29 00:00:00.000'], 'distinct_count': 388}, {'property': 'freight', 'type': 'STRING', 'values': ['32.38', '11.61', '65.83', '41.34', '51.30', '58.17', '22.98', '148.33', '13.97', '81.91'], 'distinct_count': 799}, {'property': 'orderDate', 'type': 'STRING', 'values': ['1996-07-04 00:00:00.000', '1996-07-05 00:00:00.000', '1996-07-08 00:00:00.000', '1996-07-09 00:00:00.000', '1996-07-10 00:00:00.000', '1996-07-11 00:00:00.000', '1996-07-12 00:00:00.000', '1996-07-15 00:00:00.000', '1996-07-16 00:00:00.000', '1996-07-17 00:00:00.000'], 'distinct_count': 480}, {'property': 'orderID', 'type': 'STRING', 'values': ['10248', '10249', '10250', '10251', '10252', '10253', '10254', '10255', '10256', '10257'], 'distinct_count': 830}, {'property': 'shipAddress', 'type': 'STRING', 'values': [""59 rue de l'Abbaye"", 'Luisenstr. 48', 'Rua do Paço', '2', 'Boulevard Tirou', 'Hauptstr. 31', 'Starenweg 5', 'Rua do Mercado', 'Carrera 22 con Ave. Carlos Soublette #8-35', 'Kirchgasse 6'], 'distinct_count': 88}, {'property': 'customerID', 'type': 'STRING', 'values': ['VINET', 'TOMSP', 'HANAR', 'VICTE', 'SUPRD', 'CHOPS', 'RICSU', 'WELLI', 'HILAA', 'ERNSH'], 'distinct_count': 89}, {'property': 'shipCountry', 'type': 'STRING', 'values': ['France', 'Germany', '05454-876', '69004', 'B-6000', 'Switzerland', '08737-363', 'Venezuela', 'Austria', 'Mexico'], 'distinct_count': 40}, {'property': 'shipVia', 'type': 'STRING', 'values': ['3', '1', '2'], 'distinct_count': 3}, {'property': 'shipRegion', 'type': 'STRING', 'values': ['NULL', 'Rio de Janeiro', 'Lyon', 'Charleroi', 'Resende', 'Táchira', 'NM', 'Strasbourg', 'DF', 'WA'], 'distinct_count': 33}]}, 'rel_props': {'ORDERS': [{'property': 'orderID', 'type': 'STRING', 'values': ['10248', '10249', '10250', '10251', '10252', '10253', '10254', '10255', '10256', '10257'], 'distinct_count': 830}, {'property': 'unitPrice', 'type': 'STRING', 'values': ['34.80', '14.00', '9.80', '18.60', '42.40', '16.80', '7.70', '15.60', '27.20', '2.00'], 'distinct_count': 116}, {'property': 'productID', 'type': 'STRING', 'values': ['72', '11', '42', '14', '51', '65', '41', '22', '57', '60'], 'distinct_count': 77}, {'property': 'quantity', 'type': 'INTEGER', 'min': '1', 'max': '130', 'distinct_count': 55}, {'property': 'discount', 'type': 'STRING', 'values': ['0', '0.15', '0.05', '0.2', '0.25', '0.1', '0.02', '0.03', '0.06', '0.01'], 'distinct_count': 11}]}, 'relationships': [{'start': 'Product', 'type': 'PART_OF', 'end': 'Category'}, {'start': 'Supplier', 'type': 'SUPPLIES', 'end': 'Product'}, {'start': 'Customer', 'type': 'PURCHASED', 'end': 'Order'}, {'start': 'Order', 'type': 'ORDERS', 'end': 'Product'}], 'metadata': {'constraint': [], 'index': [{'label': 'Category', 'properties': ['categoryID'], 'size': 8, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 8.0}, {'label': 'Customer', 'properties': ['customerID'], 'size': 91, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 91.0}, {'label': 'Order', 'properties': ['orderID'], 'size': 830, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 830.0}, {'label': 'Product', 'properties': ['productID'], 'size': 77, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 77.0}, {'label': 'Supplier', 'properties': ['supplierID'], 'size': 29, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 29.0}]}}"
+offshoreleaks,"Node properties:
+- **Entity**
+ - `countries`: STRING Example: ""Hong Kong""
+ - `ibcRUC`: STRING Example: ""25221""
+ - `valid_until`: STRING Example: ""The Panama Papers data is current through 2015""
+ - `country_codes`: STRING Example: ""HKG""
+ - `service_provider`: STRING Available options: ['Appleby', 'Portcullis Trustnet', 'Mossack Fonseca', 'Commonwealth Trust Limited']
+ - `address`: STRING Example: ""ORION HOUSE SERVICES (HK) LIMITED ROOM 1401; 14/F.""
+ - `inactivation_date`: STRING Example: ""18-FEB-2013""
+ - `struck_off_date`: STRING Example: ""15-FEB-2013""
+ - `status`: STRING Example: ""Defaulted""
+ - `jurisdiction_description`: STRING Example: ""Samoa""
+ - `incorporation_date`: STRING Example: ""23-MAR-2006""
+ - `original_name`: STRING Example: ""TIANSHENG INDUSTRY AND TRADING CO., LTD.""
+ - `jurisdiction`: STRING Example: ""SAM""
+ - `name`: STRING Example: ""TIANSHENG INDUSTRY AND TRADING CO., LTD.""
+ - `internal_id`: STRING Example: ""1001256""
+ - `lastEditTimestamp`: STRING Example: ""1638311020926""
+ - `node_id`: INTEGER Min: 10000001, Max: 10000005
+ - `sourceID`: STRING Example: ""Panama Papers""
+ - `former_name`: STRING
+ - `company_type`: STRING
+ - `tax_stat_description`: STRING
+ - `note`: STRING
+ - `dorm_date`: STRING
+ - `type`: STRING
+ - `closed_date`: STRING
+ - `company_number`: STRING
+ - `comments`: STRING
+ - `entity_number`: STRING
+- **Intermediary**
+ - `countries`: STRING Example: ""South Africa""
+ - `lastEditTimestamp`: STRING Example: ""1638311034131""
+ - `address`: STRING Example: ""MICHAEL PAPAGEORGE; MR. 106 NICHOLSON STREET BROOK""
+ - `valid_until`: STRING Example: ""The Panama Papers data is current through 2015""
+ - `country_codes`: STRING Example: ""ZAF""
+ - `name`: STRING Example: ""MICHAEL PAPAGEORGE, MR.""
+ - `status`: STRING Available options: ['UNRECOVERABLE ACCOUNTS', 'CLIENT IN REPRESENTATIVE TERRITORY', 'ACTIVE', 'INACTIVE', 'SUSPENDED', 'DELINQUENT', 'PROSPECT', 'SUSPENDED LEGAL', 'ACTIVE LEGAL']
+ - `node_id`: INTEGER Min: 11000001, Max: 11000005
+ - `sourceID`: STRING Available options: ['Pandora Papers - Alemán, Cordero, Galindo & Lee (Alcogal)', 'Paradise Papers - Appleby', 'Paradise Papers - Barbados corporate registry', 'Bahamas Leaks', 'Panama Papers', 'Paradise Papers - Nevis corporate registry', 'Paradise Papers - Bahamas corporate registry', 'Offshore Leaks', 'Paradise Papers - Aruba corporate registry']
+ - `internal_id`: STRING Example: ""10001""
+ - `registered_office`: STRING
+- **Officer**
+ - `valid_until`: STRING Example: ""The Panama Papers data is current through 2015""
+ - `name`: STRING Example: ""KIM SOO IN""
+ - `sourceID`: STRING Example: ""Panama Papers""
+ - `icij_id`: STRING Example: ""E72326DEA50F1A9C2876E112AAEB42BC""
+ - `node_id`: INTEGER Min: 12000001, Max: 12000005
+ - `lastEditTimestamp`: STRING Example: ""1638311034062""
+ - `country_codes`: STRING Example: ""KOR""
+ - `countries`: STRING Example: ""South Korea""
+ - `note`: STRING
+- **Address**
+ - `original_address`: STRING Example: ""ANNEX FREDERICK & SHIRLEY STS, P. O. BOX N-4805 NA""
+ - `lastEditTimestamp`: STRING Example: ""1638311020926""
+ - `countries`: STRING Example: ""Bahamas""
+ - `address`: STRING Example: ""ANNEX FREDERICK & SHIRLEY STS, P.O. BOX N-4805, NA""
+ - `valid_until`: STRING Example: ""The Bahamas Leaks data is current through early 20""
+ - `icij_id`: STRING Example: ""7C1AAD6896EFDED57D680B82E7ADF7AB""
+ - `node_id`: INTEGER Min: 24000001, Max: 24000005
+ - `sourceID`: STRING Example: ""Bahamas Leaks""
+ - `country_codes`: STRING Example: ""BHS""
+ - `name`: STRING
+ - `addressID`: STRING
+ - `country_code`: STRING
+ - `country`: STRING
+- **Other**
+ - `lastEditTimestamp`: STRING Available options: ['1638311068329', '1638311074502', '1638311074946', '1638311075268', '1638311075503']
+ - `incorporation_date`: STRING Example: ""18-MAY-1983""
+ - `struck_off_date`: STRING Example: ""31-DEC-2002""
+ - `jurisdiction`: STRING Available options: ['AW']
+ - `jurisdiction_description`: STRING Available options: ['Aruba']
+ - `valid_until`: STRING Available options: ['Aruba corporate registry data is current through 2', 'Appleby data is current through 2014']
+ - `sourceID`: STRING Available options: ['Paradise Papers - Aruba corporate registry', 'Paradise Papers - Appleby']
+ - `name`: STRING Example: ""ANTAM ENTERPRISES N.V.""
+ - `type`: STRING Available options: ['LIMITED LIABILITY COMPANY', 'SOLE OWNERSHIP', 'FOREIGN FORMED CORPORATION']
+ - `node_id`: INTEGER Min: 80000012, Max: 85050056
+ - `closed_date`: STRING Example: ""28-NOV-2012""
+ - `note`: STRING Available options: ['Closed date stands for Cancelled date.', 'Closed date stands for Liquidation date.']
+ - `countries`: STRING Example: ""Bermuda;Isle of Man""
+ - `country_codes`: STRING Example: ""BMU;IMN""
+Relationship properties:
+- **registered_address**
+ - `link: STRING` Example: ""registered address""
+ - `sourceID: STRING` Example: ""Panama Papers""
+ - `valid_until: STRING`
+- **intermediary_of**
+ - `valid_until: STRING` Example: ""The Panama Papers data is current through 2015""
+ - `sourceID: STRING` Example: ""Panama Papers""
+ - `link: STRING` Example: ""intermediary of""
+ - `end_date: STRING`
+ - `start_date: STRING`
+- **officer_of**
+ - `link: STRING` Example: ""shareholder of""
+ - `valid_until: STRING` Example: ""The Panama Papers data is current through 2015""
+ - `sourceID: STRING` Example: ""Panama Papers""
+ - `start_date: STRING` Example: ""19-NOV-1999""
+ - `end_date: STRING` Example: ""04-JUL-2000""
+ - `status: STRING`
+- **similar**
+ - `link: STRING` Example: ""similar name and address as""
+- **same_as**
+ - `link: STRING` Available options: ['same name and registration date as', 'same address as', 'same as']
+- **same_name_as**
+ - `sourceID: STRING` Example: ""Bahamas Leaks""
+ - `link: STRING` Example: ""same name as""
+ - `valid_until: STRING` Example: ""The Bahamas Leaks data is current through early 20""
+- **same_company_as**
+ - `valid_until: STRING` Example: ""The Bahamas Leaks data is current through early 20""
+ - `sourceID: STRING` Example: ""Bahamas Leaks""
+ - `link: STRING` Example: ""same company as""
+- **same_id_as**
+ - `sourceID: STRING` Available options: ['Paradise Papers - Malta corporate registry']
+ - `link: STRING` Available options: ['same id as']
+ - `valid_until: STRING` Available options: ['Malta corporate registry data is current through 2']
+- **connected_to**
+ - `valid_until: STRING` Example: ""Aruba corporate registry data is current through 2""
+ - `link: STRING` Example: ""connected to""
+ - `sourceID: STRING` Example: ""Paradise Papers - Aruba corporate registry""
+The relationships:
+(:Entity)-[:same_as]->(:Entity)
+(:Entity)-[:registered_address]->(:Address)
+(:Entity)-[:same_company_as]->(:Entity)
+(:Entity)-[:same_name_as]->(:Other)
+(:Entity)-[:same_name_as]->(:Entity)
+(:Intermediary)-[:intermediary_of]->(:Entity)
+(:Intermediary)-[:registered_address]->(:Address)
+(:Intermediary)-[:officer_of]->(:Entity)
+(:Intermediary)-[:similar]->(:Officer)
+(:Intermediary)-[:same_name_as]->(:Intermediary)
+(:Intermediary)-[:same_name_as]->(:Officer)
+(:Intermediary)-[:same_as]->(:Officer)
+(:Officer)-[:officer_of]->(:Entity)
+(:Officer)-[:officer_of]->(:Other)
+(:Officer)-[:registered_address]->(:Address)
+(:Officer)-[:similar]->(:Officer)
+(:Officer)-[:similar]->(:Intermediary)
+(:Officer)-[:same_name_as]->(:Officer)
+(:Officer)-[:connected_to]->(:Entity)
+(:Officer)-[:same_id_as]->(:Officer)
+(:Address)-[:same_as]->(:Address)
+(:Other)-[:registered_address]->(:Address)
+(:Other)-[:connected_to]->(:Entity)
+(:Other)-[:same_name_as]->(:Entity)
+(:Other)-[:same_name_as]->(:Officer)
+(:Other)-[:same_name_as]->(:Other)","{'node_props': {'Entity': [{'property': 'countries', 'type': 'STRING', 'values': ['Hong Kong']}, {'property': 'ibcRUC', 'type': 'STRING', 'values': ['25221', '25249', '24138', '24012', 'R25638']}, {'property': 'valid_until', 'type': 'STRING', 'values': ['The Panama Papers data is current through 2015']}, {'property': 'country_codes', 'type': 'STRING', 'values': ['HKG']}, {'property': 'service_provider', 'type': 'STRING', 'values': ['Appleby', 'Portcullis Trustnet', 'Mossack Fonseca', 'Commonwealth Trust Limited'], 'distinct_count': 4}, {'property': 'address', 'type': 'STRING', 'values': ['ORION HOUSE SERVICES (HK) LIMITED ROOM 1401; 14/F.', 'LOYAL PORT LIMITED 8/F; CRAWFORD TOWER 99 JERVOIS ']}, {'property': 'inactivation_date', 'type': 'STRING', 'values': ['18-FEB-2013', '27-FEB-2014', '15-FEB-2012', '16-FEB-2009', '15-MAY-2009']}, {'property': 'struck_off_date', 'type': 'STRING', 'values': ['15-FEB-2013', '15-FEB-2014', '15-FEB-2012', '15-FEB-2009', '15-FEB-2008']}, {'property': 'status', 'type': 'STRING', 'values': ['Defaulted', 'Changed agent']}, {'property': 'jurisdiction_description', 'type': 'STRING', 'values': ['Samoa']}, {'property': 'incorporation_date', 'type': 'STRING', 'values': ['23-MAR-2006', '27-MAR-2006', '10-JAN-2006', '06-JAN-2006', '19-APR-2006']}, {'property': 'original_name', 'type': 'STRING', 'values': ['TIANSHENG INDUSTRY AND TRADING CO., LTD.', 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.', 'HOTFOCUS CO., LTD.', 'SKY-BLUE GIFTS & TOYS CO., LTD.', 'FORTUNEMAKER INVESTMENTS CORPORATION']}, {'property': 'jurisdiction', 'type': 'STRING', 'values': ['SAM']}, {'property': 'name', 'type': 'STRING', 'values': ['TIANSHENG INDUSTRY AND TRADING CO., LTD.', 'NINGBO SUNRISE ENTERPRISES UNITED CO., LTD.', 'HOTFOCUS CO., LTD.', 'SKY-BLUE GIFTS & TOYS CO., LTD.', 'FORTUNEMAKER INVESTMENTS CORPORATION']}, {'property': 'internal_id', 'type': 'STRING', 'values': ['1001256', '1001263', '1000896', '1000914', '1001266']}, {'property': 'lastEditTimestamp', 'type': 'STRING', 'values': ['1638311020926']}, {'property': 'node_id', 'type': 'INTEGER', 'min': '10000001', 'max': '10000005', 'distinct_count': 5}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Panama Papers']}, {'property': 'former_name', 'type': 'STRING', 'values': []}, {'property': 'company_type', 'type': 'STRING', 'values': []}, {'property': 'tax_stat_description', 'type': 'STRING', 'values': []}, {'property': 'note', 'type': 'STRING', 'values': []}, {'property': 'dorm_date', 'type': 'STRING', 'values': []}, {'property': 'type', 'type': 'STRING', 'values': []}, {'property': 'closed_date', 'type': 'STRING', 'values': []}, {'property': 'company_number', 'type': 'STRING', 'values': []}, {'property': 'comments', 'type': 'STRING', 'values': []}, {'property': 'entity_number', 'type': 'STRING', 'values': []}], 'Intermediary': [{'property': 'countries', 'type': 'STRING', 'values': ['South Africa', 'Liechtenstein', 'Monaco', 'Belgium', 'Lebanon']}, {'property': 'lastEditTimestamp', 'type': 'STRING', 'values': ['1638311034131']}, {'property': 'address', 'type': 'STRING', 'values': ['MICHAEL PAPAGEORGE; MR. 106 NICHOLSON STREET BROOK', '']}, {'property': 'valid_until', 'type': 'STRING', 'values': ['The Panama Papers data is current through 2015']}, {'property': 'country_codes', 'type': 'STRING', 'values': ['ZAF', 'LIE', 'MCO', 'BEL', 'LBN']}, {'property': 'name', 'type': 'STRING', 'values': ['MICHAEL PAPAGEORGE, MR.', 'CORFIDUCIA ANSTALT', 'DAVID, RONALD', 'DE BOUTSELIS, JEAN-PIERRE', 'THE LEVANT LAWYERS (TLL)']}, {'property': 'status', 'type': 'STRING', 'values': ['UNRECOVERABLE ACCOUNTS', 'CLIENT IN REPRESENTATIVE TERRITORY', 'ACTIVE', 'INACTIVE', 'SUSPENDED', 'DELINQUENT', 'PROSPECT', 'SUSPENDED LEGAL', 'ACTIVE LEGAL'], 'distinct_count': 9}, {'property': 'node_id', 'type': 'INTEGER', 'min': '11000001', 'max': '11000005', 'distinct_count': 5}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Pandora Papers - Alemán, Cordero, Galindo & Lee (Alcogal)', 'Paradise Papers - Appleby', 'Paradise Papers - Barbados corporate registry', 'Bahamas Leaks', 'Panama Papers', 'Paradise Papers - Nevis corporate registry', 'Paradise Papers - Bahamas corporate registry', 'Offshore Leaks', 'Paradise Papers - Aruba corporate registry'], 'distinct_count': 9}, {'property': 'internal_id', 'type': 'STRING', 'values': ['10001', '10004', '10014', '10015', '10029']}, {'property': 'registered_office', 'type': 'STRING', 'values': []}], 'Officer': [{'property': 'valid_until', 'type': 'STRING', 'values': ['The Panama Papers data is current through 2015']}, {'property': 'name', 'type': 'STRING', 'values': ['KIM SOO IN', 'Tian Yuan', 'GREGORY JOHN SOLOMON', 'MATSUDA MASUMI', 'HO THUY NGA']}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Panama Papers']}, {'property': 'icij_id', 'type': 'STRING', 'values': ['E72326DEA50F1A9C2876E112AAEB42BC', '58287E0FD37852000D9D5AB8B27A2581', 'F476011509FD5C2EF98E9B1D74913CCE', '974F420B2324A23EAF46F20E178AF52C', '06A0FC92656D09F63D966FE7BD076A45']}, {'property': 'node_id', 'type': 'INTEGER', 'min': '12000001', 'max': '12000005', 'distinct_count': 5}, {'property': 'lastEditTimestamp', 'type': 'STRING', 'values': ['1638311034062']}, {'property': 'country_codes', 'type': 'STRING', 'values': ['KOR', 'CHN', 'AUS', 'JPN', 'VNM']}, {'property': 'countries', 'type': 'STRING', 'values': ['South Korea', 'China', 'Australia', 'Japan', 'Viet Nam']}, {'property': 'note', 'type': 'STRING', 'values': []}], 'Address': [{'property': 'original_address', 'type': 'STRING', 'values': ['ANNEX FREDERICK & SHIRLEY STS, P. O. BOX N-4805 NA', 'SUITE E-2,UNION COURT BUILDING, P. O. BOX N-8188 N', 'Lyford Cay House, Lyford Cay, P. O. BOX N-7785 NAS', 'P.O. BOX N-3708 BAHAMAS FINANCIAL CENTRE, P. O. BO', 'LYFORD CAY HOUSE, 3rd Floor, Lyford Cay, P. O. BOX']}, {'property': 'lastEditTimestamp', 'type': 'STRING', 'values': ['1638311020926']}, {'property': 'countries', 'type': 'STRING', 'values': ['Bahamas']}, {'property': 'address', 'type': 'STRING', 'values': ['ANNEX FREDERICK & SHIRLEY STS, P.O. BOX N-4805, NA', 'SUITE E-2,UNION COURT BUILDING, P.O. BOX N-8188, N', 'LYFORD CAY HOUSE, LYFORD CAY, P.O. BOX N-7785, NAS', 'P.O. BOX N-3708 BAHAMAS FINANCIAL CENTRE, P.O. BOX', 'LYFORD CAY HOUSE, 3RD FLOOR, LYFORD CAY, P.O. BOX ']}, {'property': 'valid_until', 'type': 'STRING', 'values': ['The Bahamas Leaks data is current through early 20']}, {'property': 'icij_id', 'type': 'STRING', 'values': ['7C1AAD6896EFDED57D680B82E7ADF7AB', '5CF92908D511A6A0F283B19EC3CFCBBA', 'ADA3C3D869753691DEA39AABCA652C86', '900FA9A4DA30ED6C0B1AF471CA90F40C', 'C921353C797A114D3641EE4AB3CCA747']}, {'property': 'node_id', 'type': 'INTEGER', 'min': '24000001', 'max': '24000005', 'distinct_count': 5}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Bahamas Leaks']}, {'property': 'country_codes', 'type': 'STRING', 'values': ['BHS']}, {'property': 'name', 'type': 'STRING', 'values': []}, {'property': 'addressID', 'type': 'STRING', 'values': []}, {'property': 'country_code', 'type': 'STRING', 'values': []}, {'property': 'country', 'type': 'STRING', 'values': []}], 'Other': [{'property': 'lastEditTimestamp', 'type': 'STRING', 'values': ['1638311068329', '1638311074502', '1638311074946', '1638311075268', '1638311075503'], 'distinct_count': 5}, {'property': 'incorporation_date', 'type': 'STRING', 'values': ['18-MAY-1983', '28-JUN-1989', '19-JUL-1989', '27-JUL-1989', '01-AUG-1989', '18-AUG-1989', '22-AUG-1989', '29-AUG-1989', '04-SEP-1989', '29-SEP-1988'], 'distinct_count': 834}, {'property': 'struck_off_date', 'type': 'STRING', 'values': ['31-DEC-2002', '24-JUL-2000', '23-APR-2009', '22-OCT-1996', '30-DEC-2005', '26-AUG-2005', '31-DEC-1999', '22-FEB-2005', '10-SEP-2003', '31-DEC-2000'], 'distinct_count': 39}, {'property': 'jurisdiction', 'type': 'STRING', 'values': ['AW'], 'distinct_count': 1}, {'property': 'jurisdiction_description', 'type': 'STRING', 'values': ['Aruba'], 'distinct_count': 1}, {'property': 'valid_until', 'type': 'STRING', 'values': ['Aruba corporate registry data is current through 2', 'Appleby data is current through 2014'], 'distinct_count': 2}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Paradise Papers - Aruba corporate registry', 'Paradise Papers - Appleby'], 'distinct_count': 2}, {'property': 'name', 'type': 'STRING', 'values': ['ANTAM ENTERPRISES N.V.', 'DEVIATION N.V.', 'ARIAZI N.V.', 'FLAIRUBA N.V.', 'S.L. ARUBA FISHERIES TRADING N.V.', 'PALCOHI ARUBA N.V.', 'CHEECHO (ARUBA) N.V.', 'WINTERGARDEN N.V.', 'CRUKEL (ARUBA) II N.V.', 'CARAMBOLA N.V.'], 'distinct_count': 2892}, {'property': 'type', 'type': 'STRING', 'values': ['LIMITED LIABILITY COMPANY', 'SOLE OWNERSHIP', 'FOREIGN FORMED CORPORATION'], 'distinct_count': 3}, {'property': 'node_id', 'type': 'INTEGER', 'min': '80000012', 'max': '85050056', 'distinct_count': 2919}, {'property': 'closed_date', 'type': 'STRING', 'values': ['28-NOV-2012', '19-MAY-2004', '29-OCT-2007', '05-SEP-2016', '18-DEC-2007', '22-DEC-1999', '04-DEC-2002', '03-MAR-2010', '08-APR-2011', '22-JUN-1999'], 'distinct_count': 112}, {'property': 'note', 'type': 'STRING', 'values': ['Closed date stands for Cancelled date.', 'Closed date stands for Liquidation date.'], 'distinct_count': 2}, {'property': 'countries', 'type': 'STRING', 'values': ['Bermuda;Isle of Man', 'Cayman Islands', 'Isle of Man', 'Isle of Man;United Kingdom', 'Bahrain', 'Guernsey', 'Latvia', 'British Virgin Islands;Isle of Man', 'Mauritius', 'British Virgin Islands'], 'distinct_count': 63}, {'property': 'country_codes', 'type': 'STRING', 'values': ['BMU;IMN', 'CYM', 'IMN', 'IMN;GBR', 'BHR', 'GGY', 'LVA', 'VGB;IMN', 'MUS', 'VGB'], 'distinct_count': 63}]}, 'rel_props': {'registered_address': [{'property': 'link', 'type': 'STRING', 'values': ['registered address']}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Panama Papers']}, {'property': 'valid_until', 'type': 'STRING', 'values': []}], 'intermediary_of': [{'property': 'valid_until', 'type': 'STRING', 'values': ['The Panama Papers data is current through 2015']}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Panama Papers']}, {'property': 'link', 'type': 'STRING', 'values': ['intermediary of']}, {'property': 'end_date', 'type': 'STRING', 'values': []}, {'property': 'start_date', 'type': 'STRING', 'values': []}], 'officer_of': [{'property': 'link', 'type': 'STRING', 'values': ['shareholder of']}, {'property': 'valid_until', 'type': 'STRING', 'values': ['The Panama Papers data is current through 2015']}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Panama Papers']}, {'property': 'start_date', 'type': 'STRING', 'values': ['19-NOV-1999', '30-MAR-2012', '14-JAN-2010', '23-JUL-2012', '13-SEP-2010']}, {'property': 'end_date', 'type': 'STRING', 'values': ['04-JUL-2000', '06-JUL-2012', '']}, {'property': 'status', 'type': 'STRING', 'values': []}], 'similar': [{'property': 'link', 'type': 'STRING', 'values': ['similar name and address as']}], 'same_as': [{'property': 'link', 'type': 'STRING', 'values': ['same name and registration date as', 'same address as', 'same as'], 'distinct_count': 3}], 'same_name_as': [{'property': 'sourceID', 'type': 'STRING', 'values': ['Bahamas Leaks']}, {'property': 'link', 'type': 'STRING', 'values': ['same name as']}, {'property': 'valid_until', 'type': 'STRING', 'values': ['The Bahamas Leaks data is current through early 20']}], 'same_company_as': [{'property': 'valid_until', 'type': 'STRING', 'values': ['The Bahamas Leaks data is current through early 20']}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Bahamas Leaks']}, {'property': 'link', 'type': 'STRING', 'values': ['same company as']}], 'same_id_as': [{'property': 'sourceID', 'type': 'STRING', 'values': ['Paradise Papers - Malta corporate registry'], 'distinct_count': 1}, {'property': 'link', 'type': 'STRING', 'values': ['same id as'], 'distinct_count': 1}, {'property': 'valid_until', 'type': 'STRING', 'values': ['Malta corporate registry data is current through 2'], 'distinct_count': 1}], 'connected_to': [{'property': 'valid_until', 'type': 'STRING', 'values': ['Aruba corporate registry data is current through 2']}, {'property': 'link', 'type': 'STRING', 'values': ['connected to']}, {'property': 'sourceID', 'type': 'STRING', 'values': ['Paradise Papers - Aruba corporate registry']}]}, 'relationships': [{'start': 'Entity', 'type': 'same_as', 'end': 'Entity'}, {'start': 'Entity', 'type': 'registered_address', 'end': 'Address'}, {'start': 'Entity', 'type': 'same_company_as', 'end': 'Entity'}, {'start': 'Entity', 'type': 'same_name_as', 'end': 'Other'}, {'start': 'Entity', 'type': 'same_name_as', 'end': 'Entity'}, {'start': 'Intermediary', 'type': 'intermediary_of', 'end': 'Entity'}, {'start': 'Intermediary', 'type': 'registered_address', 'end': 'Address'}, {'start': 'Intermediary', 'type': 'officer_of', 'end': 'Entity'}, {'start': 'Intermediary', 'type': 'similar', 'end': 'Officer'}, {'start': 'Intermediary', 'type': 'same_name_as', 'end': 'Intermediary'}, {'start': 'Intermediary', 'type': 'same_name_as', 'end': 'Officer'}, {'start': 'Intermediary', 'type': 'same_as', 'end': 'Officer'}, {'start': 'Officer', 'type': 'officer_of', 'end': 'Entity'}, {'start': 'Officer', 'type': 'officer_of', 'end': 'Other'}, {'start': 'Officer', 'type': 'registered_address', 'end': 'Address'}, {'start': 'Officer', 'type': 'similar', 'end': 'Officer'}, {'start': 'Officer', 'type': 'similar', 'end': 'Intermediary'}, {'start': 'Officer', 'type': 'same_name_as', 'end': 'Officer'}, {'start': 'Officer', 'type': 'connected_to', 'end': 'Entity'}, {'start': 'Officer', 'type': 'same_id_as', 'end': 'Officer'}, {'start': 'Address', 'type': 'same_as', 'end': 'Address'}, {'start': 'Other', 'type': 'registered_address', 'end': 'Address'}, {'start': 'Other', 'type': 'connected_to', 'end': 'Entity'}, {'start': 'Other', 'type': 'same_name_as', 'end': 'Entity'}, {'start': 'Other', 'type': 'same_name_as', 'end': 'Officer'}, {'start': 'Other', 'type': 'same_name_as', 'end': 'Other'}], 'metadata': {'constraint': [{'id': 91, 'name': 'Address_node_id', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Address'], 'properties': ['node_id'], 'ownedIndex': 'Address_node_id', 'propertyType': None}, {'id': 99, 'name': 'Entity_node_id', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Entity'], 'properties': ['node_id'], 'ownedIndex': 'Entity_node_id', 'propertyType': None}, {'id': 97, 'name': 'Intermediary_node_id', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Intermediary'], 'properties': ['node_id'], 'ownedIndex': 'Intermediary_node_id', 'propertyType': None}, {'id': 93, 'name': 'Officer_node_id', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Officer'], 'properties': ['node_id'], 'ownedIndex': 'Officer_node_id', 'propertyType': None}, {'id': 95, 'name': 'Other_node_id', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Other'], 'properties': ['node_id'], 'ownedIndex': 'Other_node_id', 'propertyType': None}], 'index': [{'label': 'Address', 'properties': ['countries'], 'size': 265805, 'type': 'RANGE', 'valuesSelectivity': 0.0008916310829367393, 'distinctValues': 237.0}, {'label': 'Address', 'properties': ['country_codes'], 'size': 265805, 'type': 'RANGE', 'valuesSelectivity': 0.0008276744229792517, 'distinctValues': 220.0}, {'label': 'Address', 'properties': ['sourceID'], 'size': 390995, 'type': 'RANGE', 'valuesSelectivity': 3.0690929551528794e-05, 'distinctValues': 12.0}, {'label': 'Address', 'properties': ['lastEditTimestamp'], 'size': 390995, 'type': 'RANGE', 'valuesSelectivity': 9.207278865458637e-05, 'distinctValues': 36.0}, {'label': 'Address', 'properties': ['node_id'], 'size': 390995, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 390995.0}, {'label': 'Entity', 'properties': ['struck_off_date'], 'size': 461101, 'type': 'RANGE', 'valuesSelectivity': 0.01968332317648411, 'distinctValues': 9076.0}, {'label': 'Entity', 'properties': ['status'], 'size': 355454, 'type': 'RANGE', 'valuesSelectivity': 0.00015191839169062665, 'distinctValues': 54.00000000000001}, {'label': 'Entity', 'properties': ['incorporation_date'], 'size': 785244, 'type': 'RANGE', 'valuesSelectivity': 0.02362195699680609, 'distinctValues': 18549.0}, {'label': 'Entity', 'properties': ['inactivation_date'], 'size': 213647, 'type': 'RANGE', 'valuesSelectivity': 0.03227754192663599, 'distinctValues': 6895.999999999999}, {'label': 'Entity', 'properties': ['service_provider'], 'size': 344086, 'type': 'RANGE', 'valuesSelectivity': 1.1625000726562546e-05, 'distinctValues': 4.0}, {'label': 'Entity', 'properties': ['sourceID'], 'size': 802817, 'type': 'RANGE', 'valuesSelectivity': 1.7438594349646306e-05, 'distinctValues': 13.999999999999998}, {'label': 'Entity', 'properties': ['jurisdiction'], 'size': 798965, 'type': 'RANGE', 'valuesSelectivity': 0.00010012954259573323, 'distinctValues': 80.0}, {'label': 'Entity', 'properties': ['name'], 'size': 802792, 'type': 'RANGE', 'valuesSelectivity': 0.959800296963597, 'distinctValues': 770520.0}, {'label': 'Entity', 'properties': ['lastEditTimestamp'], 'size': 802817, 'type': 'RANGE', 'valuesSelectivity': 6.850876351646764e-05, 'distinctValues': 55.0}, {'label': 'Entity', 'properties': ['country_codes'], 'size': 501943, 'type': 'RANGE', 'valuesSelectivity': 0.001924521310188607, 'distinctValues': 966.0}, {'label': 'Entity', 'properties': ['countries'], 'size': 501943, 'type': 'RANGE', 'valuesSelectivity': 0.0019285058263587699, 'distinctValues': 968.0}, {'label': 'Entity', 'properties': ['node_id'], 'size': 802817, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 802817.0}, {'label': 'Intermediary', 'properties': ['lastEditTimestamp'], 'size': 26768, 'type': 'RANGE', 'valuesSelectivity': 0.0007845188284518828, 'distinctValues': 21.0}, {'label': 'Intermediary', 'properties': ['countries'], 'size': 23154, 'type': 'RANGE', 'valuesSelectivity': 0.012352077394834586, 'distinctValues': 286.0}, {'label': 'Intermediary', 'properties': ['country_codes'], 'size': 23154, 'type': 'RANGE', 'valuesSelectivity': 0.012352077394834586, 'distinctValues': 286.0}, {'label': 'Intermediary', 'properties': ['status'], 'size': 12621, 'type': 'RANGE', 'valuesSelectivity': 0.0007130972189208462, 'distinctValues': 9.0}, {'label': 'Intermediary', 'properties': ['name'], 'size': 26767, 'type': 'RANGE', 'valuesSelectivity': 0.9559905854223484, 'distinctValues': 25589.0}, {'label': 'Intermediary', 'properties': ['sourceID'], 'size': 26768, 'type': 'RANGE', 'valuesSelectivity': 0.00033622235505080696, 'distinctValues': 9.0}, {'label': 'Intermediary', 'properties': ['node_id'], 'size': 26768, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 26768.0}, {'label': 'Officer', 'properties': ['lastEditTimestamp'], 'size': 746949, 'type': 'RANGE', 'valuesSelectivity': 7.497165134433543e-05, 'distinctValues': 56.0}, {'label': 'Officer', 'properties': ['country_codes'], 'size': 449598, 'type': 'RANGE', 'valuesSelectivity': 0.009815435122042358, 'distinctValues': 4413.0}, {'label': 'Officer', 'properties': ['countries'], 'size': 449579, 'type': 'RANGE', 'valuesSelectivity': 0.008423436148040723, 'distinctValues': 3787.0000000000005}, {'label': 'Officer', 'properties': ['name'], 'size': 746890, 'type': 'RANGE', 'valuesSelectivity': 0.7020136834071952, 'distinctValues': 524327.0}, {'label': 'Officer', 'properties': ['sourceID'], 'size': 746949, 'type': 'RANGE', 'valuesSelectivity': 1.8742912836083856e-05, 'distinctValues': 14.0}, {'label': 'Officer', 'properties': ['node_id'], 'size': 746949, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 746949.0}, {'label': 'Other', 'properties': ['lastEditTimestamp'], 'size': 2919, 'type': 'RANGE', 'valuesSelectivity': 0.0017129153819801302, 'distinctValues': 5.0}, {'label': 'Other', 'properties': ['node_id'], 'size': 2919, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 2919.0}]}}"
+stackoverflow2,"Node properties:
+- **Question**
+ - `link`: STRING Example: ""https://stackoverflow.com/q/65697972""
+ - `accepted_answer_id`: INTEGER Min: 61447621, Max: 69272967
+ - `creation_date`: INTEGER Min: 1587746198, Max: 1632249176
+ - `view_count`: INTEGER Min: 4, Max: 1851
+ - `answer_count`: INTEGER Min: 0, Max: 4
+ - `body_markdown`: STRING Example: ""I want to create a graph from my recursive JSON fi""
+ - `uuid`: INTEGER Min: 61413144, Max: 69273945
+ - `title`: STRING Example: ""Create graph from recursive JSON data using apoc.l""
+- **User**
+ - `uuid`: INTEGER Min: deleted, Max: 16922964
+ - `display_name`: STRING Example: ""schernichkin""
+- **Tag**
+ - `name`: STRING Example: ""neo4j""
+ - `link`: STRING Example: ""https://stackoverflow.com/questions/tagged/neo4j""
+- **Answer**
+ - `link`: STRING Example: ""https://stackoverflow.com/a/69272967""
+ - `title`: STRING Example: ""Return 'biggest fan of a tag' neo4j""
+ - `is_accepted`: BOOLEAN
+ - `body_markdown`: STRING Example: ""The error is here: ``` WHERE COUNT(posted) <""
+ - `score`: INTEGER Min: -2, Max: 6
+ - `uuid`: INTEGER Min: 61445468, Max: 69273049
+- **Comment**
+ - `score`: INTEGER Min: 0, Max: 3
+ - `uuid`: INTEGER Min: 108645245, Max: 122427099
+ - `link`: STRING Example: ""https://stackoverflow.com/questions/69208813/confi""
+Relationship properties:
+
+The relationships:
+(:Question)-[:TAGGED]->(:Tag)
+(:User)-[:ASKED]->(:Question)
+(:User)-[:COMMENTED]->(:Comment)
+(:User)-[:PROVIDED]->(:Answer)
+(:Answer)-[:ANSWERED]->(:Question)
+(:Comment)-[:COMMENTED_ON]->(:Question)","{'node_props': {'Question': [{'property': 'link', 'type': 'STRING', 'values': ['https://stackoverflow.com/q/65697972', 'https://stackoverflow.com/q/65697147', 'https://stackoverflow.com/q/65694121', 'https://stackoverflow.com/q/65691774', 'https://stackoverflow.com/q/65690692', 'https://stackoverflow.com/q/65690563', 'https://stackoverflow.com/q/65687157', 'https://stackoverflow.com/q/65686699', 'https://stackoverflow.com/q/65683749', 'https://stackoverflow.com/q/65682935'], 'distinct_count': 1589}, {'property': 'accepted_answer_id', 'type': 'INTEGER', 'min': '61447621', 'max': '69272967', 'distinct_count': 619}, {'property': 'creation_date', 'type': 'INTEGER', 'min': '1587746198', 'max': '1632249176', 'distinct_count': 1589}, {'property': 'view_count', 'type': 'INTEGER', 'min': '4', 'max': '1851', 'distinct_count': 217}, {'property': 'answer_count', 'type': 'INTEGER', 'min': '0', 'max': '4', 'distinct_count': 5}, {'property': 'body_markdown', 'type': 'STRING', 'values': ['I want to create a graph from my recursive JSON fi', 'I have a dataset in java which contains an "I', 'Given the schema\r\n\r\n```graphql\r\ntype User {\r\n id:', 'I am having trouble updating nodes in a neo4j-data', 'My graph has the following entities:\r\n\r\n- Post\r\n- ', 'Well first thing this is my code\r\n\r\n LOAD CSV W', 'I am trying to run following Neo4j cypher Query:\r\n', 'In the neomodel documentation it's possible to', 'Trying the option of going with ETL as in Producti', 'I’m a total beginner in Cypher and I’m struggling '], 'distinct_count': 1576}, {'property': 'uuid', 'type': 'INTEGER', 'min': '61413144', 'max': '69273945', 'distinct_count': 1589}, {'property': 'title', 'type': 'STRING', 'values': ['Create graph from recursive JSON data using apoc.l', 'Specify a certain column as id values in Neo4j Spa', 'Why are non-unique indexes dropped and created whe', 'py2neo doesn't update database nodes', 'Unwind with Multiple OPTIONAL MATCH returns duplic', 'Neo.ClientError.Statement.ExternalResourceFailed e', 'LIMIT not working inside apoc procedure apoc.cyphe', 'Neomodel: specify neo4j database name in connectio', 'Neo4j ETL takes time to migrate from RDBMS to Grap', 'Cypher to show relationships of hidden nodes'], 'distinct_count': 1588}], 'User': [{'property': 'uuid', 'type': 'INTEGER', 'min': 'deleted', 'max': '16922964', 'distinct_count': 1365}, {'property': 'display_name', 'type': 'STRING', 'values': ['schernichkin', 'Damian Grzanka', 'sandrooco', 'Bobis', 'wanderingcatto', 'bguegan', 'Swordfish', 'Chris Wohlert', 'zulfi123786', 'Florian Bauer'], 'distinct_count': 1354}], 'Tag': [{'property': 'name', 'type': 'STRING', 'values': ['neo4j', 'subgraph', 'graph', 'cypher', 'graph-databases', 'neo4j-apoc', 'database', 'spring-boot', 'grandstack', 'search'], 'distinct_count': 476}, {'property': 'link', 'type': 'STRING', 'values': ['https://stackoverflow.com/questions/tagged/neo4j', 'https://stackoverflow.com/questions/tagged/subgrap', 'https://stackoverflow.com/questions/tagged/graph', 'https://stackoverflow.com/questions/tagged/cypher', 'https://stackoverflow.com/questions/tagged/graph-d', 'https://stackoverflow.com/questions/tagged/neo4j-a', 'https://stackoverflow.com/questions/tagged/databas', 'https://stackoverflow.com/questions/tagged/spring-', 'https://stackoverflow.com/questions/tagged/grandst', 'https://stackoverflow.com/questions/tagged/search'], 'distinct_count': 421}], 'Answer': [{'property': 'link', 'type': 'STRING', 'values': ['https://stackoverflow.com/a/69272967', 'https://stackoverflow.com/a/69267009', 'https://stackoverflow.com/a/69263731', 'https://stackoverflow.com/a/69263260', 'https://stackoverflow.com/a/69263576', 'https://stackoverflow.com/a/69251760', 'https://stackoverflow.com/a/69273018', 'https://stackoverflow.com/a/69255357', 'https://stackoverflow.com/a/69253457', 'https://stackoverflow.com/a/69256380'], 'distinct_count': 1367}, {'property': 'title', 'type': 'STRING', 'values': ['Return 'biggest fan of a tag' neo4j', 'How to simplify neo4j query with multiple CASE'', 'Returning same path after "count" operat', 'Neo4j - Get the relationship that have the latest ', 'Neo4j modeling relationship query', 'How to add additional stop words to a Neo4j Full-t', 'Neo4j query using only one core of my machine', 'Substitute for @additionalLabels in Neo4j GraphQL ', 'Graphileon Proxy Feature issue', 'Neo4j Procedure and Transactions'], 'distinct_count': 1142}, {'property': 'is_accepted', 'type': 'BOOLEAN'}, {'property': 'body_markdown', 'type': 'STRING', 'values': ['The error is here:\r\n\r\n```\r\nWHERE COUNT(posted) <', 'perhaps something along the line of this, using CO', 'Without testing, I think this would solve the issu', 'these are a couple of options depending what you e', 'I think the definition of 'competing' shou', 'AFAIK, it is not possible to write a custom analyz', 'You can use `CALL apoc.periodic.iterate()` to do p', 'There is no workaround for this at this time(20/09', 'The `body` must also be JSON so you need to do:\r\n\r', 'I figured this out and will share for those it may'], 'distinct_count': 1364}, {'property': 'score', 'type': 'INTEGER', 'min': '-2', 'max': '6', 'distinct_count': 8}, {'property': 'uuid', 'type': 'INTEGER', 'min': '61445468', 'max': '69273049', 'distinct_count': 1367}], 'Comment': [{'property': 'score', 'type': 'INTEGER', 'min': '0', 'max': '3', 'distinct_count': 4}, {'property': 'uuid', 'type': 'INTEGER', 'min': '108645245', 'max': '122427099', 'distinct_count': 1396}, {'property': 'link', 'type': 'STRING', 'values': ['https://stackoverflow.com/questions/69208813/confi', 'https://stackoverflow.com/questions/69199782/neo4j', 'https://stackoverflow.com/questions/69177409/how-t', 'https://stackoverflow.com/questions/69163777/conne', 'https://stackoverflow.com/questions/69158730/neo4j', 'https://stackoverflow.com/questions/69147992/not-a', 'https://stackoverflow.com/questions/69118543/sprin', 'https://stackoverflow.com/questions/69107479/neo4j', 'https://stackoverflow.com/questions/69104919/py2ne', 'https://stackoverflow.com/questions/69098868/short'], 'distinct_count': 546}]}, 'rel_props': {}, 'relationships': [{'start': 'Question', 'type': 'TAGGED', 'end': 'Tag'}, {'start': 'User', 'type': 'ASKED', 'end': 'Question'}, {'start': 'User', 'type': 'COMMENTED', 'end': 'Comment'}, {'start': 'User', 'type': 'PROVIDED', 'end': 'Answer'}, {'start': 'Answer', 'type': 'ANSWERED', 'end': 'Question'}, {'start': 'Comment', 'type': 'COMMENTED_ON', 'end': 'Question'}], 'metadata': {'constraint': [{'id': 20, 'name': 'constraint_32ea8862', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Comment'], 'properties': ['uuid'], 'ownedIndex': 'constraint_32ea8862', 'propertyType': None}, {'id': 18, 'name': 'constraint_401df8db', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Question'], 'properties': ['uuid'], 'ownedIndex': 'constraint_401df8db', 'propertyType': None}, {'id': 14, 'name': 'constraint_64b1b1cf', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Tag'], 'properties': ['name'], 'ownedIndex': 'constraint_64b1b1cf', 'propertyType': None}, {'id': 22, 'name': 'constraint_7e29bbac', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Answer'], 'properties': ['uuid'], 'ownedIndex': 'constraint_7e29bbac', 'propertyType': None}, {'id': 16, 'name': 'constraint_b13a3b7d', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['User'], 'properties': ['uuid'], 'ownedIndex': 'constraint_b13a3b7d', 'propertyType': None}], 'index': [{'label': 'Answer', 'properties': ['uuid'], 'size': 1367, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1367.0}, {'label': 'Comment', 'properties': ['uuid'], 'size': 1396, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1396.0}, {'label': 'Question', 'properties': ['uuid'], 'size': 1589, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1589.0}, {'label': 'Tag', 'properties': ['name'], 'size': 476, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 476.0}, {'label': 'User', 'properties': ['uuid'], 'size': 1365, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1365.0}]}}"
+twitch,"Node properties:
+- **Stream**
+ - `createdAt`: DATE_TIME Min: 2007-05-22T10:39:53.259969Z, Max: 2021-05-09T14:16:40.370294Z
+ - `id`: STRING Example: ""129004176""
+ - `description`: STRING Example: ""Welcome to my Channel, I'm Big Chase, 31 living in""
+ - `url`: STRING Example: ""https://www.twitch.tv/itsbigchase""
+ - `name`: STRING Example: ""itsbigchase""
+ - `followers`: INTEGER Min: 0, Max: 10243195
+ - `total_view_count`: INTEGER Min: 21, Max: 1451487256
+- **Game**
+ - `name`: STRING Example: ""Rust""
+- **Language**
+ - `name`: STRING Example: ""en""
+- **User**
+ - `name`: STRING Example: ""itsbigchase""
+- **Team**
+ - `createdAt`: DATE_TIME Min: 2011-10-11T23:59:43.548701Z, Max: 2021-05-07T17:19:09.946382Z
+ - `name`: STRING Example: ""ESO Stream Team""
+ - `id`: STRING Example: ""5893""
+Relationship properties:
+
+The relationships:
+(:Stream)-[:PLAYS]->(:Game)
+(:Stream)-[:HAS_LANGUAGE]->(:Language)
+(:Stream)-[:MODERATOR]->(:Stream)
+(:Stream)-[:MODERATOR]->(:User)
+(:Stream)-[:CHATTER]->(:Stream)
+(:Stream)-[:CHATTER]->(:User)
+(:Stream)-[:HAS_TEAM]->(:Team)
+(:Stream)-[:VIP]->(:Stream)
+(:Stream)-[:VIP]->(:User)
+(:User)-[:CHATTER]->(:Stream)
+(:User)-[:CHATTER]->(:User)
+(:User)-[:MODERATOR]->(:Stream)
+(:User)-[:MODERATOR]->(:User)","{'node_props': {'Stream': [{'property': 'createdAt', 'type': 'DATE_TIME', 'min': '2007-05-22T10:39:53.259969Z', 'max': '2021-05-09T14:16:40.370294Z', 'distinct_count': 5743}, {'property': 'id', 'type': 'STRING', 'values': ['129004176', '26490481', '50988750', '213749122', '30104304', '238320465', '10985633', '160504245', '50597026', '125387632'], 'distinct_count': 5743}, {'property': 'description', 'type': 'STRING', 'values': [""Welcome to my Channel, I'm Big Chase, 31 living in"", ""I'm a variety streamer(kind of). Been streaming 8 "", '感謝します。', 'Топовая студия в мире профессионального киберспорт', ""Maximilian's Livestream Of Hype! Modern fighting g"", 'PRO GAMING TEAM JUPITER #JUPWIN', '楽しんでゲームしていきます', 'spawns at midnight (pst)', 'On se tape des immenses barres.', 'Welcome to my stream! My name is Amouranth and I l'], 'distinct_count': 4967}, {'property': 'url', 'type': 'STRING', 'values': ['https://www.twitch.tv/itsbigchase', 'https://www.twitch.tv/summit1g', 'https://www.twitch.tv/stylishnoob4', 'https://www.twitch.tv/dota2mc_ru', 'https://www.twitch.tv/maximilian_dood', 'https://www.twitch.tv/jupiter_gg', 'https://www.twitch.tv/spygea', 'https://www.twitch.tv/39daph', 'https://www.twitch.tv/ponce', 'https://www.twitch.tv/amouranth'], 'distinct_count': 5787}, {'property': 'name', 'type': 'STRING', 'values': ['itsbigchase', 'summit1g', 'stylishnoob4', 'dota2mc_ru', 'maximilian_dood', 'jupiter_gg', 'spygea', '39daph', 'ponce', 'amouranth'], 'distinct_count': 5787}, {'property': 'followers', 'type': 'INTEGER', 'min': '0', 'max': '10243195', 'distinct_count': 5663}, {'property': 'total_view_count', 'type': 'INTEGER', 'min': '21', 'max': '1451487256', 'distinct_count': 5738}], 'Game': [{'property': 'name', 'type': 'STRING', 'values': ['Rust', 'DayZ', 'VALORANT', 'Dota 2', 'Resident Evil Village', 'Rocket League', 'Just Chatting', 'Fortnite', 'Grand Theft Auto V', 'Call of Duty: Warzone'], 'distinct_count': 594}], 'Language': [{'property': 'name', 'type': 'STRING', 'values': ['en', 'ja', 'en-gb', 'fr', 'it', 'ko', 'ru', 'es', 'de', 'zh-tw'], 'distinct_count': 29}], 'User': [{'property': 'name', 'type': 'STRING', 'values': ['itsbigchase', 'summit1g', 'stylishnoob4', 'dota2mc_ru', 'maximilian_dood']}], 'Team': [{'property': 'createdAt', 'type': 'DATE_TIME', 'min': '2011-10-11T23:59:43.548701Z', 'max': '2021-05-07T17:19:09.946382Z', 'distinct_count': 1468}, {'property': 'name', 'type': 'STRING', 'values': ['ESO Stream Team', 'N3RDFUSION', 'The Household', 'The Bean Bandits', 'Cloud9', 'fantasyexpo', 'THE CULT', 'COLLAB', 'UBISOFT Korea', '노잼져스'], 'distinct_count': 1466}, {'property': 'id', 'type': 'STRING', 'values': ['5893', '1886', '2717', '719', '735', '3553', '3255', '9102', '5257', '3679'], 'distinct_count': 1468}]}, 'rel_props': {}, 'relationships': [{'start': 'Stream', 'type': 'PLAYS', 'end': 'Game'}, {'start': 'Stream', 'type': 'HAS_LANGUAGE', 'end': 'Language'}, {'start': 'Stream', 'type': 'MODERATOR', 'end': 'Stream'}, {'start': 'Stream', 'type': 'MODERATOR', 'end': 'User'}, {'start': 'Stream', 'type': 'CHATTER', 'end': 'Stream'}, {'start': 'Stream', 'type': 'CHATTER', 'end': 'User'}, {'start': 'Stream', 'type': 'HAS_TEAM', 'end': 'Team'}, {'start': 'Stream', 'type': 'VIP', 'end': 'Stream'}, {'start': 'Stream', 'type': 'VIP', 'end': 'User'}, {'start': 'User', 'type': 'CHATTER', 'end': 'Stream'}, {'start': 'User', 'type': 'CHATTER', 'end': 'User'}, {'start': 'User', 'type': 'MODERATOR', 'end': 'Stream'}, {'start': 'User', 'type': 'MODERATOR', 'end': 'User'}], 'metadata': {'constraint': [{'id': 15, 'name': 'constraint_2b4f13ce', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Stream'], 'properties': ['name'], 'ownedIndex': 'constraint_2b4f13ce', 'propertyType': None}, {'id': 19, 'name': 'constraint_5018efe5', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Language'], 'properties': ['name'], 'ownedIndex': 'constraint_5018efe5', 'propertyType': None}, {'id': 13, 'name': 'constraint_5101b27d', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Team'], 'properties': ['id'], 'ownedIndex': 'constraint_5101b27d', 'propertyType': None}, {'id': 21, 'name': 'constraint_952bbd70', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['User'], 'properties': ['name'], 'ownedIndex': 'constraint_952bbd70', 'propertyType': None}, {'id': 17, 'name': 'constraint_d7191a75', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Game'], 'properties': ['name'], 'ownedIndex': 'constraint_d7191a75', 'propertyType': None}], 'index': [{'label': 'Game', 'properties': ['name'], 'size': 594, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 594.0}, {'label': 'Language', 'properties': ['name'], 'size': 29, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 29.0}, {'label': 'Stream', 'properties': ['name'], 'size': 5787, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 5787.0}, {'label': 'Team', 'properties': ['id'], 'size': 1468, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1468.0}, {'label': 'User', 'properties': ['name'], 'size': 10514229, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 10514229.0}]}}"
+twitter,"Node properties:
+- **User**
+ - `betweenness`: FLOAT Example: ""3.49332601E8""
+ - `location`: STRING Example: ""Graphs Are Everywhere""
+ - `followers`: INTEGER Example: ""34507""
+ - `following`: INTEGER Example: ""10124""
+ - `profile_image_url`: STRING Example: ""http://pbs.twimg.com/profile_images/11837552737537""
+ - `screen_name`: STRING Example: ""neo4j""
+ - `name`: STRING Example: ""Neo4j""
+ - `url`: STRING Example: ""https://t.co/JSIaZFJEaE""
+ - `statuses`: INTEGER Example: ""512""
+- **Me**
+ - `profile_image_url`: STRING Available options: ['http://pbs.twimg.com/profile_images/11837552737537']
+ - `betweenness`: FLOAT Min: 3.49332601E8, Max: 3.49332601E8
+ - `following`: INTEGER Min: 10124, Max: 10124
+ - `url`: STRING Available options: ['https://t.co/JSIaZFJEaE']
+ - `location`: STRING Available options: ['Graphs Are Everywhere']
+ - `followers`: INTEGER Min: 34507, Max: 34507
+ - `screen_name`: STRING Available options: ['neo4j']
+ - `name`: STRING Available options: ['Neo4j']
+- **Tweet**
+ - `created_at`: DATE_TIME Min: 2020-12-06T05:12:02Z, Max: 2021-03-16T15:30:07Z
+ - `id`: INTEGER Min: 690028662083612672, Max: 1371846247913512966
+ - `id_str`: STRING Example: ""1371815021265747970""
+ - `text`: STRING Example: ""Proud to help @educationgovuk deliver critical ser""
+ - `favorites`: INTEGER Min: 0, Max: 394
+ - `import_method`: STRING Available options: ['user']
+- **Hashtag**
+ - `name`: STRING Example: ""education""
+- **Link**
+ - `url`: STRING Example: ""https://twitter.com/i/web/status/13718150212657479""
+- **Source**
+ - `name`: STRING Example: ""Buffer""
+Relationship properties:
+- **SIMILAR_TO**
+ - `score: FLOAT` Min: 0.0030581039755351682, Max: 1.0
+The relationships:
+(:User)-[:FOLLOWS]->(:User)
+(:User)-[:FOLLOWS]->(:Me)
+(:User)-[:POSTS]->(:Tweet)
+(:User)-[:INTERACTS_WITH]->(:User)
+(:User)-[:SIMILAR_TO]->(:User)
+(:User)-[:SIMILAR_TO]->(:Me)
+(:Me)-[:FOLLOWS]->(:User)
+(:Me)-[:POSTS]->(:Tweet)
+(:Me)-[:INTERACTS_WITH]->(:User)
+(:Me)-[:RT_MENTIONS]->(:User)
+(:Me)-[:AMPLIFIES]->(:User)
+(:Tweet)-[:MENTIONS]->(:User)
+(:Tweet)-[:MENTIONS]->(:Me)
+(:Tweet)-[:USING]->(:Source)
+(:Tweet)-[:TAGS]->(:Hashtag)
+(:Tweet)-[:CONTAINS]->(:Link)
+(:Tweet)-[:RETWEETS]->(:Tweet)
+(:Tweet)-[:REPLY_TO]->(:Tweet)","{'node_props': {'User': [{'property': 'betweenness', 'type': 'FLOAT', 'values': ['3.49332601E8', '0.0']}, {'property': 'location', 'type': 'STRING', 'values': ['Graphs Are Everywhere', 'Jezero Crater, Mars', '', 'Nigeria']}, {'property': 'followers', 'type': 'INTEGER', 'values': ['34507', '2617355', '0', '35', '71']}, {'property': 'following', 'type': 'INTEGER', 'values': ['10124', '45', '0', '35', '71']}, {'property': 'profile_image_url', 'type': 'STRING', 'values': ['http://pbs.twimg.com/profile_images/11837552737537', 'http://pbs.twimg.com/profile_images/12356362801652', 'http://pbs.twimg.com/profile_images/13703060708459', 'http://pbs.twimg.com/profile_images/2566078294/rkk', 'http://pbs.twimg.com/profile_images/12523769466730']}, {'property': 'screen_name', 'type': 'STRING', 'values': ['neo4j', 'NASAPersevere', 'pranitahakim1', 'galeister', 'rhema_beth']}, {'property': 'name', 'type': 'STRING', 'values': ['Neo4j', ""NASA's Perseverance Mars Rover"", 'pranitahakim', 'Galeister', 'Amosun BethRhema']}, {'property': 'url', 'type': 'STRING', 'values': ['https://t.co/JSIaZFJEaE', 'https://t.co/GpTOmL7zGl']}, {'property': 'statuses', 'type': 'INTEGER', 'values': ['512']}], 'Me': [{'property': 'profile_image_url', 'type': 'STRING', 'values': ['http://pbs.twimg.com/profile_images/11837552737537'], 'distinct_count': 1}, {'property': 'betweenness', 'type': 'FLOAT', 'min': '3.49332601E8', 'max': '3.49332601E8', 'distinct_count': 1}, {'property': 'following', 'type': 'INTEGER', 'min': '10124', 'max': '10124', 'distinct_count': 1}, {'property': 'url', 'type': 'STRING', 'values': ['https://t.co/JSIaZFJEaE'], 'distinct_count': 1}, {'property': 'location', 'type': 'STRING', 'values': ['Graphs Are Everywhere'], 'distinct_count': 1}, {'property': 'followers', 'type': 'INTEGER', 'min': '34507', 'max': '34507', 'distinct_count': 1}, {'property': 'screen_name', 'type': 'STRING', 'values': ['neo4j'], 'distinct_count': 1}, {'property': 'name', 'type': 'STRING', 'values': ['Neo4j'], 'distinct_count': 1}], 'Tweet': [{'property': 'created_at', 'type': 'DATE_TIME', 'min': '2020-12-06T05:12:02Z', 'max': '2021-03-16T15:30:07Z', 'distinct_count': 2146}, {'property': 'id', 'type': 'INTEGER', 'min': '690028662083612672', 'max': '1371846247913512966', 'distinct_count': 2407}, {'property': 'id_str', 'type': 'STRING', 'values': ['1371815021265747970', '1371778287970705408', '1371687808847519748', '1371787098945114113', '1371673079517171712', '1371773486348255233', '1371672671419826177', '1371846247913512966', '1371748138491510786', '1371627279936282624'], 'distinct_count': 2146}, {'property': 'text', 'type': 'STRING', 'values': ['Proud to help @educationgovuk deliver critical ser', '[Webinar] Produktdatenmanagement mit der Graphdate', '[Webinar] Graph Data Science with #Neo4j – Italy\n\n', 'RT @rotnroll666: Neo4j Cypher-DSL 2021.1 released ', 'Discover how financial institutions can use graph ', 'RT @ElLazal: Today at 3pm UTC @lyonwj and I are go', '[Virtual Conference] Javaland 2021 – Was macht SRE', '[Live Demo] Graph Algorithms Playground – Asia Pac', 'CASE STUDY // Automotive Manufacturer Reduces Time', ""@insideBigData features Neo4j's recently appointed""], 'distinct_count': 1670}, {'property': 'favorites', 'type': 'INTEGER', 'min': '0', 'max': '394', 'distinct_count': 44}, {'property': 'import_method', 'type': 'STRING', 'values': ['user'], 'distinct_count': 1}], 'Hashtag': [{'property': 'name', 'type': 'STRING', 'values': ['education', 'neo4jauraenterprise', 'neo4j', 'antimoneylaundering', 'graphdatabases', 'automotive', 'iam', 'auraenterprise', 'graphes', 'cloud'], 'distinct_count': 344}], 'Link': [{'property': 'url', 'type': 'STRING', 'values': ['https://twitter.com/i/web/status/13718150212657479', 'https://twitter.com/i/web/status/13717782879707054', 'https://twitter.com/i/web/status/13716878088475197', 'http://neo4j-contrib.github.io/cypher-dsl/current/', 'https://twitter.com/i/web/status/13717481384915107', 'https://twitter.com/i/web/status/13716730795171717', 'https://twitter.com/i/web/status/13718462479135129', 'https://twitter.com/i/web/status/13716726714198261', 'https://twitter.com/i/web/status/13716146925280256', 'https://buff.ly/39Zwfui'], 'distinct_count': 1548}], 'Source': [{'property': 'name', 'type': 'STRING', 'values': ['Buffer', 'Tweetbot for iΟS', 'TweetDeck', 'Twitter Web App', 'SocialPilot.co', 'startup.jobs', 'Twitter for Android', 'HubSpot', 'Tweetbot for Mac', 'Twitter for iPhone'], 'distinct_count': 27}]}, 'rel_props': {'SIMILAR_TO': [{'property': 'score', 'type': 'FLOAT', 'min': '0.0030581039755351682', 'max': '1.0', 'distinct_count': 71}]}, 'relationships': [{'start': 'User', 'type': 'FOLLOWS', 'end': 'User'}, {'start': 'User', 'type': 'FOLLOWS', 'end': 'Me'}, {'start': 'User', 'type': 'POSTS', 'end': 'Tweet'}, {'start': 'User', 'type': 'INTERACTS_WITH', 'end': 'User'}, {'start': 'User', 'type': 'SIMILAR_TO', 'end': 'User'}, {'start': 'User', 'type': 'SIMILAR_TO', 'end': 'Me'}, {'start': 'Me', 'type': 'FOLLOWS', 'end': 'User'}, {'start': 'Me', 'type': 'POSTS', 'end': 'Tweet'}, {'start': 'Me', 'type': 'INTERACTS_WITH', 'end': 'User'}, {'start': 'Me', 'type': 'RT_MENTIONS', 'end': 'User'}, {'start': 'Me', 'type': 'AMPLIFIES', 'end': 'User'}, {'start': 'Tweet', 'type': 'MENTIONS', 'end': 'User'}, {'start': 'Tweet', 'type': 'MENTIONS', 'end': 'Me'}, {'start': 'Tweet', 'type': 'USING', 'end': 'Source'}, {'start': 'Tweet', 'type': 'TAGS', 'end': 'Hashtag'}, {'start': 'Tweet', 'type': 'CONTAINS', 'end': 'Link'}, {'start': 'Tweet', 'type': 'RETWEETS', 'end': 'Tweet'}, {'start': 'Tweet', 'type': 'REPLY_TO', 'end': 'Tweet'}], 'metadata': {'constraint': [{'id': 19, 'name': 'constraint_189951f0', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Source'], 'properties': ['name'], 'ownedIndex': 'constraint_189951f0', 'propertyType': None}, {'id': 21, 'name': 'constraint_5f75e2f6', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Tweet'], 'properties': ['id'], 'ownedIndex': 'constraint_5f75e2f6', 'propertyType': None}, {'id': 17, 'name': 'constraint_71a506e6', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Hashtag'], 'properties': ['name'], 'ownedIndex': 'constraint_71a506e6', 'propertyType': None}, {'id': 15, 'name': 'constraint_9191d2a4', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['User'], 'properties': ['screen_name'], 'ownedIndex': 'constraint_9191d2a4', 'propertyType': None}, {'id': 23, 'name': 'constraint_d198d4ee', 'type': 'UNIQUENESS', 'entityType': 'NODE', 'labelsOrTypes': ['Link'], 'properties': ['url'], 'ownedIndex': 'constraint_d198d4ee', 'propertyType': None}], 'index': [{'label': 'Hashtag', 'properties': ['name'], 'size': 344, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 344.0}, {'label': 'Link', 'properties': ['url'], 'size': 1561, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 1561.0}, {'label': 'Source', 'properties': ['name'], 'size': 27, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 27.0}, {'label': 'Tweet', 'properties': ['id'], 'size': 2407, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 2407.0}, {'label': 'Tweet', 'properties': ['created_at'], 'size': 2146, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 2146.0}, {'label': 'User', 'properties': ['screen_name'], 'size': 38986, 'type': 'RANGE', 'valuesSelectivity': 1.0, 'distinctValues': 38986.0}]}}"