CF Puzzle Quest

A Chia Friends Database Search Tool • Query the NFT collection using Visual Builder or SQL

Query Builder & Execution

>

📑 Saved Queries

🔍 Filters

Combine filters with:

📊 Options

💡 Advanced Mode: Write custom SQL queries. Column names are case-insensitive!

Available Columns:

id
nft_number
name
image_filename
accessories
artifacts
background
body
coins
expression
eyes
hieroglyphs
keyword
mouth
has_transparency
is_burned
created_at
updated_at

📚 Sample SQL Queries (click to use):

SELECT * FROM chia_friends ORDER BY nft_number;
SELECT * FROM chia_friends WHERE body LIKE '%Cactus%' AND eyes = 'Purple' ORDER BY nft_number LIMIT 10;
SELECT * FROM chia_friends WHERE artifacts IS NOT NULL AND artifacts != '' ORDER BY nft_number;
SELECT * FROM chia_friends WHERE background = 'Nighttime' OR background = 'Aurora & Stars' ORDER BY nft_number;
SELECT * FROM chia_friends WHERE body LIKE '%Timelord%' ORDER BY nft_number;
SELECT body, COUNT(*) as count FROM chia_friends GROUP BY body ORDER BY count DESC;
SELECT * FROM chia_friends WHERE has_transparency = TRUE ORDER BY nft_number LIMIT 20;
SELECT DISTINCT background FROM chia_friends WHERE background IS NOT NULL ORDER BY background;
SELECT * FROM chia_friends WHERE artifacts = 'XCH' ORDER BY nft_number;