NQL
1 program
Added 2026-03-05T10:02:39Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Notation Query Language, Ghost NQL
Provenance: commit 40f6fe64db · authored 2026-03-05T11:03:03+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Content Filtering Queries
Provenance: commit 40f6fe64db · authored 2026-03-05T11:03:03+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
# Ghost NQL (Notation Query Language) - Content filtering examples
# Find published tutorials with comments
status:published+tag:tutorial+count.comments:>0
# Find featured posts (excluding specific tags)
featured:true+(tag:-spam,tag:-test)+published_at:>2020-01-01
# Find recent posts by multiple authors on specific topics
(author:alice,author:bob)+tag:programming+published_at:>=2023-01-01+count.likes:>5
# Complex nested query: (published OR scheduled) AND (featured OR popular)
(status:published,status:scheduled)+(featured:true,count.comments:>=10)+tag:news