MoongraphMoongraph
Guides

Advanced Queries

Learn advanced query techniques for Moongraph.

Advanced Queries

Go beyond basic search with advanced query capabilities.

Query Syntax

Moongraph supports structured query syntax for precise searches.

Boolean Operators

Combine terms with logical operators:

budget AND 2024
revenue OR profit
security NOT deprecated

Phrase Matching

Use quotes for exact phrases:

"quarterly earnings report"
"John Smith"

Wildcards

Use * for partial matching:

secur* (matches security, secure, secured)
*tion (matches action, section, organization)

Entity-Specific Queries

Target specific entity types:

type:person "John"
type:organization "Acme"
type:location country

Available Types

  • person — People and named individuals
  • organization — Companies, agencies, groups
  • location — Places, addresses, regions
  • date — Dates and time periods
  • concept — Abstract ideas and topics

Relationship Queries

Find entities by their connections:

connected_to:"Acme Corp"
relationship:"works at"

Path Queries

Find paths between entities:

path:"John Smith" -> "Project X"

Filtering by Source

Limit queries to specific documents:

document:"annual-report-2024.pdf" type:person

Saving Queries

Save frequently used queries:

  1. Run your query
  2. Click Save Query
  3. Give it a name
  4. Access from Saved Queries panel

Next Steps

On this page