gemma2-mql-v2-q4 / text_to_mql_training_data.json
prabhugururaj88's picture
Upload gemma2-mql-v2 Q4_K_M GGUF + training data
69fc2cb verified
Raw
History Blame Contribute Delete
166 kB
[
{
"text": "Get the file named '/pix-images/water-droplet.tiff'",
"mql": "{\"name\": \"/pix-images/water-droplet.tiff\"}"
},
{
"text": "Find files with names containing 'water'",
"mql": "{\"name\": {\"$regex\": \".*water.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with 'horse' in the name",
"mql": "{\"name\": {\"$regex\": \".*horse.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the file water-droplet",
"mql": "{\"name\": {\"$regex\": \".*water-droplet.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me all files in the USD folder",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/USD/\", \"$options\": \"i\"}}"
},
{
"text": "Find files in the EXR directory",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/EXR/\", \"$options\": \"i\"}}"
},
{
"text": "List all files whose name starts with 'Star'",
"mql": "{\"name\": {\"$regex\": \".*/Star.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the file named CrissyField",
"mql": "{\"name\": {\"$regex\": \".*CrissyField.*\", \"$options\": \"i\"}}"
},
{
"text": "Get files with 'Golden' in the name",
"mql": "{\"name\": {\"$regex\": \".*Golden.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the astronaut file",
"mql": "{\"name\": {\"$regex\": \".*Astronaut.*\", \"$options\": \"i\"}}"
},
{
"text": "Find all tiff files",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "Show me all exr files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "List all usd files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Get all jpg files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "Find all png images",
"mql": "{\"extension\": \"png\"}"
},
{
"text": "Show files that are not exr format",
"mql": "{\"extension\": {\"$ne\": \"exr\"}}"
},
{
"text": "Find files with extension jpg or png",
"mql": "{\"extension\": {\"$in\": [\"jpg\", \"png\"]}}"
},
{
"text": "Find all files in tiff format",
"mql": "{\"format\": \"tiff\"}"
},
{
"text": "Get files in usd format",
"mql": "{\"format\": \"usd\"}"
},
{
"text": "Show me all exr format files",
"mql": "{\"format\": \"exr\"}"
},
{
"text": "Find all tiff files larger than 10MB",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$gt\": 10485760}}]}"
},
{
"text": "Find files smaller than 1KB",
"mql": "{\"size\": {\"$lt\": 1024}}"
},
{
"text": "Get files larger than 50MB",
"mql": "{\"size\": {\"$gt\": 52428800}}"
},
{
"text": "Find files between 1MB and 5MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 1048576}}, {\"size\": {\"$lte\": 5242880}}]}"
},
{
"text": "Show the largest files over 100MB",
"mql": "{\"size\": {\"$gt\": 104857600}}"
},
{
"text": "Find files smaller than 100 bytes",
"mql": "{\"size\": {\"$lt\": 100}}"
},
{
"text": "Get all files bigger than 20MB in size",
"mql": "{\"size\": {\"$gt\": 20971520}}"
},
{
"text": "Find small usd files under 5KB",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$lt\": 5120}}]}"
},
{
"text": "Show exr files larger than 3MB",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$gt\": 3145728}}]}"
},
{
"text": "Show all files",
"mql": "{\"type\": \"file\"}"
},
{
"text": "Get all entities of type file",
"mql": "{\"entity_type\": \"file\"}"
},
{
"text": "Find files that contain PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Show files without PII",
"mql": "{\"has_pii\": false}"
},
{
"text": "List all files with personal identifiable information",
"mql": "{\"has_pii\": true}"
},
{
"text": "Get files that have sensitive data",
"mql": "{\"has_pii\": true}"
},
{
"text": "Find tiff files that contain PII",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"has_pii\": true}]}"
},
{
"text": "Find files that have been processed",
"mql": "{\"processed\": true}"
},
{
"text": "Show files that are not yet processed",
"mql": "{\"processed\": false}"
},
{
"text": "Find unprocessed exr files",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"processed\": false}]}"
},
{
"text": "Get all processed tiff files",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"processed\": true}]}"
},
{
"text": "Find files created after March 1, 2026",
"mql": "{\"create_time\": {\"$gt\": {\"$date\": \"2026-03-01T00:00:00.000Z\"}}}"
},
{
"text": "Get files created before 2026-03-02",
"mql": "{\"create_time\": {\"$lt\": {\"$date\": \"2026-03-02T00:00:00.000Z\"}}}"
},
{
"text": "Show files created on March 2, 2026",
"mql": "{\"$and\": [{\"create_time\": {\"$gte\": {\"$date\": \"2026-03-02T00:00:00.000Z\"}}}, {\"create_time\": {\"$lt\": {\"$date\": \"2026-03-03T00:00:00.000Z\"}}}]}"
},
{
"text": "Find files modified after March 2, 2026",
"mql": "{\"modified_time\": {\"$gt\": {\"$date\": \"2026-03-02T00:00:00.000Z\"}}}"
},
{
"text": "Get recently modified files",
"mql": "{\"modified_time\": {\"$gt\": {\"$date\": \"2026-03-01T00:00:00.000Z\"}}}"
},
{
"text": "Find files with read-write permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw\", \"$options\": \"i\"}}"
},
{
"text": "Show files with executable permissions",
"mql": "{\"permissions.value\": {\"$regex\": \".*x.*\", \"$options\": \"i\"}}"
},
{
"text": "Get files with permissions rw-r--r--",
"mql": "{\"permissions.value\": \"rw-r--r--\"}"
},
{
"text": "Find files with rwxr-xr-x permissions",
"mql": "{\"permissions.value\": \"rwxr-xr-x\"}"
},
{
"text": "Find all newly added files",
"mql": "{\"change_type\": \"ADDED\"}"
},
{
"text": "Show files that were recently added",
"mql": "{\"change_type\": \"ADDED\"}"
},
{
"text": "Find files that have errors",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Show files without any errors",
"mql": "{\"$or\": [{\"errors\": null}, {\"errors\": []}]}"
},
{
"text": "Find files with extraction errors",
"mql": "{\"errors.code\": \"EXTRACTOR_ERROR\"}"
},
{
"text": "Get files that failed processing",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Find files that have an image description",
"mql": "{\"content_attributes.key\": \"Image Description\"}"
},
{
"text": "Find files whose content describes a bridge",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bridge.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about mountains",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*mountain.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find files describing flowers",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*flower.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files with Copyright by Industrial Light and Magic",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Copyright\", \"value\": {\"$regex\": \".*Industrial Light.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find files with no content attributes",
"mql": "{\"$or\": [{\"content_attributes\": null}, {\"content_attributes\": []}]}"
},
{
"text": "Find files whose image description mentions sunset",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sunset.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about stars or cosmos",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(star|cosmos|universe).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images that show food",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(food|burger|chicken|salad).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files with width greater than 1000 pixels",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"width\", \"value\": {\"$regex\": \".*1[0-9]{3,}.*\"}}}}"
},
{
"text": "Find large tiff files without PII",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$gt\": 10485760}}, {\"has_pii\": false}]}"
},
{
"text": "Get processed exr files larger than 2MB",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"processed\": true}, {\"size\": {\"$gt\": 2097152}}]}"
},
{
"text": "Find all usd files in the USD folder that are smaller than 10KB",
"mql": "{\"$and\": [{\"name\": {\"$regex\": \"^/pix-images/USD/\"}}, {\"extension\": \"usd\"}, {\"size\": {\"$lt\": 10240}}]}"
},
{
"text": "Show me processed jpg files with no PII",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"processed\": true}, {\"has_pii\": false}]}"
},
{
"text": "Find exr files in the EXR folder with errors",
"mql": "{\"$and\": [{\"name\": {\"$regex\": \"^/pix-images/EXR/\"}}, {\"extension\": \"exr\"}, {\"errors\": {\"$ne\": null}}]}"
},
{
"text": "Get all png files larger than 1MB that have been processed",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$gt\": 1048576}}, {\"processed\": true}]}"
},
{
"text": "Find usd files with executable permissions and size over 1MB",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"permissions.value\": \"rwxr-xr-x\"}, {\"size\": {\"$gt\": 1048576}}]}"
},
{
"text": "Show tiff files with image descriptions about nature",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(nature|flower|sea|field).*\", \"$options\": \"i\"}}}}]}"
},
{
"text": "Find files added recently that have errors",
"mql": "{\"$and\": [{\"change_type\": \"ADDED\"}, {\"errors\": {\"$ne\": null}}]}"
},
{
"text": "Get names of all tiff files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {\"extension\": \"tiff\"}, \"projection\": {\"name\": 1}}"
},
{
"text": "Show names and sizes of all exr files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {\"extension\": \"exr\"}, \"projection\": {\"name\": 1, \"size\": 1}}"
},
{
"text": "List file names in the USD folder",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {\"name\": {\"$regex\": \"^/pix-images/USD/\"}}, \"projection\": {\"name\": 1}}"
},
{
"text": "Get names and extensions of files with PII",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {\"has_pii\": true}, \"projection\": {\"name\": 1, \"extension\": 1}}"
},
{
"text": "Show name, size and has_pii for all files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"projection\": {\"name\": 1, \"size\": 1, \"has_pii\": 1}}"
},
{
"text": "Find the 5 largest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 5}"
},
{
"text": "Show the 10 smallest exr files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {\"extension\": \"exr\"}, \"sort\": {\"size\": 1}, \"limit\": 10}"
},
{
"text": "Get the most recently created files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"create_time\": -1}, \"limit\": 10}"
},
{
"text": "List files sorted by name",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"name\": 1}}"
},
{
"text": "How many tiff files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"tiff\"}}"
},
{
"text": "Count all exr files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"exr\"}}"
},
{
"text": "How many files have PII",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"has_pii\": true}}"
},
{
"text": "Count the number of usd files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"usd\"}}"
},
{
"text": "How many files are unprocessed",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"processed\": false}}"
},
{
"text": "How many files have errors",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"errors\": {\"$ne\": null}}}"
},
{
"text": "Count all png files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"png\"}}"
},
{
"text": "How many files are larger than 10MB",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"size\": {\"$gt\": 10485760}}}"
},
{
"text": "What file types exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"extension\"}"
},
{
"text": "List all unique file extensions",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"extension\"}"
},
{
"text": "What formats are available",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"format\"}"
},
{
"text": "Show all unique change types",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"change_type\"}"
},
{
"text": "Find files that are not usd format",
"mql": "{\"extension\": {\"$ne\": \"usd\"}}"
},
{
"text": "Show files that are not in the USD folder",
"mql": "{\"name\": {\"$not\": {\"$regex\": \"^/pix-images/USD/\"}}}"
},
{
"text": "Get all files except exr files",
"mql": "{\"extension\": {\"$ne\": \"exr\"}}"
},
{
"text": "Find files that have content attributes",
"mql": "{\"content_attributes\": {\"$ne\": null}, \"content_attributes.0\": {\"$exists\": true}}"
},
{
"text": "Show files that have custom attributes",
"mql": "{\"custom_attributes.0\": {\"$exists\": true}}"
},
{
"text": "What images show the Golden Gate Bridge",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*Golden Gate.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show me pictures of food",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(food|dinner|burger|chicken|fruit|vegetable).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find all 3D model files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Get high resolution images",
"mql": "{\"$and\": [{\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}, {\"size\": {\"$gt\": 5242880}}]}"
},
{
"text": "Find all image files",
"mql": "{\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}"
},
{
"text": "Show files related to Thailand",
"mql": "{\"$or\": [{\"name\": {\"$regex\": \".*thailand.*\", \"$options\": \"i\"}}, {\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*thailand.*\", \"$options\": \"i\"}}}}]}"
},
{
"text": "Find landscape photos",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(landscape|mountain|field|ocean|sunset|sunrise).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get all files about animals",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(animal|horse|bear|deer|bird).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show everything",
"mql": "{}"
},
{
"text": "List all files",
"mql": "{}"
},
{
"text": "Find all files which has open permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Find files with write permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw\", \"$options\": \"i\"}}"
},
{
"text": "Find world-readable files",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Find files readable by everyone",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Show files with read-only permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^r[^w]\", \"$options\": \"i\"}}"
},
{
"text": "Find files that are writable by owner",
"mql": "{\"permissions.value\": {\"$regex\": \"^.w\", \"$options\": \"i\"}}"
},
{
"text": "Find files with open access",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Show files with restricted permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw-------$\"}}"
},
{
"text": "Show me horse file",
"mql": "{\"name\": {\"$regex\": \".*horse.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the horse file",
"mql": "{\"name\": {\"$regex\": \".*horse.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me the clock file",
"mql": "{\"name\": {\"$regex\": \".*clock.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the piano file",
"mql": "{\"name\": {\"$regex\": \".*piano.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the boat file",
"mql": "{\"name\": {\"$regex\": \".*[Bb]oat.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me the tires file",
"mql": "{\"name\": {\"$regex\": \".*[Tt]ires.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the football file",
"mql": "{\"name\": {\"$regex\": \".*football.*\", \"$options\": \"i\"}}"
},
{
"text": "How many image files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}}"
},
{
"text": "Count all image files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}}"
},
{
"text": "How many text files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"txt\"}}"
},
{
"text": "Count all 3D model files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"usd\"}}"
},
{
"text": "How many photo files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\"]}}}"
},
{
"text": "Show me all the pictures",
"mql": "{\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}"
},
{
"text": "List all text documents",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Find all 3D assets",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Show me the largest 3 files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 3}"
},
{
"text": "Find the smallest file",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": 1}, \"limit\": 1}"
},
{
"text": "Get the file 100504_Dymaxion",
"mql": "{\"name\": {\"$regex\": \".*100504_Dymaxion.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 100504_Dymaxion",
"mql": "{\"name\": {\"$regex\": \".*100504_Dymaxion.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 100504_Dymaxion",
"mql": "{\"name\": {\"$regex\": \".*100504_Dymaxion.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 100504_Dymaxion",
"mql": "{\"name\": {\"$regex\": \".*100504_Dymaxion.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 100504_Dymaxion",
"mql": "{\"name\": {\"$regex\": \".*100504_Dymaxion.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101651_Finke_Gorge_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101651_Finke_Gorge_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101651_Finke_Gorge_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101651_Finke_Gorge_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101651_Finke_Gorge_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101651_Finke_Gorge_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101651_Finke_Gorge_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101651_Finke_Gorge_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101651_Finke_Gorge_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101651_Finke_Gorge_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 100981_Ben_Halls_Gap_National_Park",
"mql": "{\"name\": {\"$regex\": \".*100981_Ben_Halls_Gap_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 100981_Ben_Halls_Gap_National_Park",
"mql": "{\"name\": {\"$regex\": \".*100981_Ben_Halls_Gap_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 100981_Ben_Halls_Gap_National_Park",
"mql": "{\"name\": {\"$regex\": \".*100981_Ben_Halls_Gap_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 100981_Ben_Halls_Gap_National_Park",
"mql": "{\"name\": {\"$regex\": \".*100981_Ben_Halls_Gap_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 100981_Ben_Halls_Gap_National_Park",
"mql": "{\"name\": {\"$regex\": \".*100981_Ben_Halls_Gap_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 100533_A_Baldwin_Wood",
"mql": "{\"name\": {\"$regex\": \".*100533_A_Baldwin_Wood.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 100533_A_Baldwin_Wood",
"mql": "{\"name\": {\"$regex\": \".*100533_A_Baldwin_Wood.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 100533_A_Baldwin_Wood",
"mql": "{\"name\": {\"$regex\": \".*100533_A_Baldwin_Wood.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 100533_A_Baldwin_Wood",
"mql": "{\"name\": {\"$regex\": \".*100533_A_Baldwin_Wood.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 100533_A_Baldwin_Wood",
"mql": "{\"name\": {\"$regex\": \".*100533_A_Baldwin_Wood.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101906_The_Emigrants_film",
"mql": "{\"name\": {\"$regex\": \".*101906_The_Emigrants_film.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101906_The_Emigrants_film",
"mql": "{\"name\": {\"$regex\": \".*101906_The_Emigrants_film.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101906_The_Emigrants_film",
"mql": "{\"name\": {\"$regex\": \".*101906_The_Emigrants_film.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101906_The_Emigrants_film",
"mql": "{\"name\": {\"$regex\": \".*101906_The_Emigrants_film.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101906_The_Emigrants_film",
"mql": "{\"name\": {\"$regex\": \".*101906_The_Emigrants_film.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101160_Oneonta_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101160_Oneonta_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101160_Oneonta_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101160_Oneonta_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101160_Oneonta_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101160_Oneonta_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101160_Oneonta_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101160_Oneonta_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101160_Oneonta_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101160_Oneonta_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 100806_Centreville_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100806_Centreville_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 100806_Centreville_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100806_Centreville_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 100806_Centreville_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100806_Centreville_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 100806_Centreville_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100806_Centreville_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 100806_Centreville_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100806_Centreville_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101169_Georgiana_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101169_Georgiana_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101169_Georgiana_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101169_Georgiana_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101169_Georgiana_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101169_Georgiana_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101169_Georgiana_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101169_Georgiana_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101169_Georgiana_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101169_Georgiana_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 100805_Brent_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100805_Brent_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 100805_Brent_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100805_Brent_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 100805_Brent_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100805_Brent_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 100805_Brent_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100805_Brent_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 100805_Brent_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100805_Brent_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101171_McKenzie_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101171_McKenzie_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101171_McKenzie_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101171_McKenzie_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101171_McKenzie_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101171_McKenzie_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101171_McKenzie_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101171_McKenzie_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101171_McKenzie_Alabama",
"mql": "{\"name\": {\"$regex\": \".*101171_McKenzie_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 100802_Clio_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100802_Clio_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 100802_Clio_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100802_Clio_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 100802_Clio_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100802_Clio_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 100802_Clio_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100802_Clio_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 100802_Clio_Alabama",
"mql": "{\"name\": {\"$regex\": \".*100802_Clio_Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 102132_Kalamunda_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102132_Kalamunda_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 102132_Kalamunda_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102132_Kalamunda_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 102132_Kalamunda_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102132_Kalamunda_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 102132_Kalamunda_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102132_Kalamunda_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 102132_Kalamunda_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102132_Kalamunda_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 102141_Leeuwin-Naturaliste_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102141_Leeuwin-Naturaliste_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 102141_Leeuwin-Naturaliste_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102141_Leeuwin-Naturaliste_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 102141_Leeuwin-Naturaliste_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102141_Leeuwin-Naturaliste_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 102141_Leeuwin-Naturaliste_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102141_Leeuwin-Naturaliste_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 102141_Leeuwin-Naturaliste_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102141_Leeuwin-Naturaliste_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101803_Rocky_Cape_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101803_Rocky_Cape_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101803_Rocky_Cape_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101803_Rocky_Cape_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101803_Rocky_Cape_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101803_Rocky_Cape_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101803_Rocky_Cape_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101803_Rocky_Cape_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101803_Rocky_Cape_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101803_Rocky_Cape_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101863_Linear_independence",
"mql": "{\"name\": {\"$regex\": \".*101863_Linear_independence.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101863_Linear_independence",
"mql": "{\"name\": {\"$regex\": \".*101863_Linear_independence.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101863_Linear_independence",
"mql": "{\"name\": {\"$regex\": \".*101863_Linear_independence.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101863_Linear_independence",
"mql": "{\"name\": {\"$regex\": \".*101863_Linear_independence.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101863_Linear_independence",
"mql": "{\"name\": {\"$regex\": \".*101863_Linear_independence.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101808_Tasman_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101808_Tasman_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101808_Tasman_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101808_Tasman_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101808_Tasman_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101808_Tasman_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101808_Tasman_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101808_Tasman_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101808_Tasman_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101808_Tasman_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101942_Child_labour",
"mql": "{\"name\": {\"$regex\": \".*101942_Child_labour.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101942_Child_labour",
"mql": "{\"name\": {\"$regex\": \".*101942_Child_labour.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101942_Child_labour",
"mql": "{\"name\": {\"$regex\": \".*101942_Child_labour.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101942_Child_labour",
"mql": "{\"name\": {\"$regex\": \".*101942_Child_labour.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101942_Child_labour",
"mql": "{\"name\": {\"$regex\": \".*101942_Child_labour.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 102051_Transport_puzzle",
"mql": "{\"name\": {\"$regex\": \".*102051_Transport_puzzle.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 102051_Transport_puzzle",
"mql": "{\"name\": {\"$regex\": \".*102051_Transport_puzzle.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 102051_Transport_puzzle",
"mql": "{\"name\": {\"$regex\": \".*102051_Transport_puzzle.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 102051_Transport_puzzle",
"mql": "{\"name\": {\"$regex\": \".*102051_Transport_puzzle.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 102051_Transport_puzzle",
"mql": "{\"name\": {\"$regex\": \".*102051_Transport_puzzle.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101799_Mole_Creek_Karst_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101799_Mole_Creek_Karst_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101799_Mole_Creek_Karst_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101799_Mole_Creek_Karst_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101799_Mole_Creek_Karst_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101799_Mole_Creek_Karst_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101799_Mole_Creek_Karst_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101799_Mole_Creek_Karst_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101799_Mole_Creek_Karst_National_Park",
"mql": "{\"name\": {\"$regex\": \".*101799_Mole_Creek_Karst_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 102114_DEntrecasteaux_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102114_DEntrecasteaux_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 102114_DEntrecasteaux_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102114_DEntrecasteaux_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 102114_DEntrecasteaux_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102114_DEntrecasteaux_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 102114_DEntrecasteaux_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102114_DEntrecasteaux_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 102114_DEntrecasteaux_National_Park",
"mql": "{\"name\": {\"$regex\": \".*102114_DEntrecasteaux_National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get the file 101930_1000_Hours",
"mql": "{\"name\": {\"$regex\": \".*101930_1000_Hours.*\", \"$options\": \"i\"}}"
},
{
"text": "Find 101930_1000_Hours",
"mql": "{\"name\": {\"$regex\": \".*101930_1000_Hours.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for 101930_1000_Hours",
"mql": "{\"name\": {\"$regex\": \".*101930_1000_Hours.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 101930_1000_Hours",
"mql": "{\"name\": {\"$regex\": \".*101930_1000_Hours.*\", \"$options\": \"i\"}}"
},
{
"text": "Where is the file 101930_1000_Hours",
"mql": "{\"name\": {\"$regex\": \".*101930_1000_Hours.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the water-droplet file",
"mql": "{\"name\": {\"$regex\": \".*water-droplet.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me water-droplet",
"mql": "{\"name\": {\"$regex\": \".*water-droplet.*\", \"$options\": \"i\"}}"
},
{
"text": "Get water-droplet",
"mql": "{\"name\": {\"$regex\": \".*water-droplet.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the metal-ball file",
"mql": "{\"name\": {\"$regex\": \".*metal-ball.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me metal-ball",
"mql": "{\"name\": {\"$regex\": \".*metal-ball.*\", \"$options\": \"i\"}}"
},
{
"text": "Get metal-ball",
"mql": "{\"name\": {\"$regex\": \".*metal-ball.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the sea-sunlight file",
"mql": "{\"name\": {\"$regex\": \".*sea-sunlight.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me sea-sunlight",
"mql": "{\"name\": {\"$regex\": \".*sea-sunlight.*\", \"$options\": \"i\"}}"
},
{
"text": "Get sea-sunlight",
"mql": "{\"name\": {\"$regex\": \".*sea-sunlight.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the flower-girl-tiff file",
"mql": "{\"name\": {\"$regex\": \".*flower-girl-tiff.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me flower-girl-tiff",
"mql": "{\"name\": {\"$regex\": \".*flower-girl-tiff.*\", \"$options\": \"i\"}}"
},
{
"text": "Get flower-girl-tiff",
"mql": "{\"name\": {\"$regex\": \".*flower-girl-tiff.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the glass-light file",
"mql": "{\"name\": {\"$regex\": \".*glass-light.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me glass-light",
"mql": "{\"name\": {\"$regex\": \".*glass-light.*\", \"$options\": \"i\"}}"
},
{
"text": "Get glass-light",
"mql": "{\"name\": {\"$regex\": \".*glass-light.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me horse",
"mql": "{\"name\": {\"$regex\": \".*horse.*\", \"$options\": \"i\"}}"
},
{
"text": "Get horse",
"mql": "{\"name\": {\"$regex\": \".*horse.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the clock file",
"mql": "{\"name\": {\"$regex\": \".*clock.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me clock",
"mql": "{\"name\": {\"$regex\": \".*clock.*\", \"$options\": \"i\"}}"
},
{
"text": "Get clock",
"mql": "{\"name\": {\"$regex\": \".*clock.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the piano file",
"mql": "{\"name\": {\"$regex\": \".*piano.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me piano",
"mql": "{\"name\": {\"$regex\": \".*piano.*\", \"$options\": \"i\"}}"
},
{
"text": "Get piano",
"mql": "{\"name\": {\"$regex\": \".*piano.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Astronaut",
"mql": "{\"name\": {\"$regex\": \".*Astronaut.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Astronaut",
"mql": "{\"name\": {\"$regex\": \".*Astronaut.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Boat",
"mql": "{\"name\": {\"$regex\": \".*Boat.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Boat",
"mql": "{\"name\": {\"$regex\": \".*Boat.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Orc.Sword_Shout file",
"mql": "{\"name\": {\"$regex\": \".*Orc.Sword_Shout.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Orc.Sword_Shout",
"mql": "{\"name\": {\"$regex\": \".*Orc.Sword_Shout.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Orc.Sword_Shout",
"mql": "{\"name\": {\"$regex\": \".*Orc.Sword_Shout.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Tires file",
"mql": "{\"name\": {\"$regex\": \".*Tires.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Tires",
"mql": "{\"name\": {\"$regex\": \".*Tires.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Tires",
"mql": "{\"name\": {\"$regex\": \".*Tires.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the football file",
"mql": "{\"name\": {\"$regex\": \".*football.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me football",
"mql": "{\"name\": {\"$regex\": \".*football.*\", \"$options\": \"i\"}}"
},
{
"text": "Get football",
"mql": "{\"name\": {\"$regex\": \".*football.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the bear file",
"mql": "{\"name\": {\"$regex\": \".*bear.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me bear",
"mql": "{\"name\": {\"$regex\": \".*bear.*\", \"$options\": \"i\"}}"
},
{
"text": "Get bear",
"mql": "{\"name\": {\"$regex\": \".*bear.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the grama file",
"mql": "{\"name\": {\"$regex\": \".*grama.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me grama",
"mql": "{\"name\": {\"$regex\": \".*grama.*\", \"$options\": \"i\"}}"
},
{
"text": "Get grama",
"mql": "{\"name\": {\"$regex\": \".*grama.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the dart_board file",
"mql": "{\"name\": {\"$regex\": \".*dart_board.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me dart_board",
"mql": "{\"name\": {\"$regex\": \".*dart_board.*\", \"$options\": \"i\"}}"
},
{
"text": "Get dart_board",
"mql": "{\"name\": {\"$regex\": \".*dart_board.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Steam file",
"mql": "{\"name\": {\"$regex\": \".*Steam.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Steam",
"mql": "{\"name\": {\"$regex\": \".*Steam.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Steam",
"mql": "{\"name\": {\"$regex\": \".*Steam.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Cooper file",
"mql": "{\"name\": {\"$regex\": \".*Cooper.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Cooper",
"mql": "{\"name\": {\"$regex\": \".*Cooper.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Cooper",
"mql": "{\"name\": {\"$regex\": \".*Cooper.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Mathews file",
"mql": "{\"name\": {\"$regex\": \".*Mathews.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Mathews",
"mql": "{\"name\": {\"$regex\": \".*Mathews.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Mathews",
"mql": "{\"name\": {\"$regex\": \".*Mathews.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Kettle_Seat file",
"mql": "{\"name\": {\"$regex\": \".*Kettle_Seat.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Kettle_Seat",
"mql": "{\"name\": {\"$regex\": \".*Kettle_Seat.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Kettle_Seat",
"mql": "{\"name\": {\"$regex\": \".*Kettle_Seat.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Cline file",
"mql": "{\"name\": {\"$regex\": \".*Cline.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Cline",
"mql": "{\"name\": {\"$regex\": \".*Cline.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Cline",
"mql": "{\"name\": {\"$regex\": \".*Cline.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the ball file",
"mql": "{\"name\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me ball",
"mql": "{\"name\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}"
},
{
"text": "Get ball",
"mql": "{\"name\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Worker file",
"mql": "{\"name\": {\"$regex\": \".*Worker.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Worker",
"mql": "{\"name\": {\"$regex\": \".*Worker.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Worker",
"mql": "{\"name\": {\"$regex\": \".*Worker.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Debra file",
"mql": "{\"name\": {\"$regex\": \".*Debra.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Debra",
"mql": "{\"name\": {\"$regex\": \".*Debra.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Debra",
"mql": "{\"name\": {\"$regex\": \".*Debra.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the RackLong_A1 file",
"mql": "{\"name\": {\"$regex\": \".*RackLong_A1.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me RackLong_A1",
"mql": "{\"name\": {\"$regex\": \".*RackLong_A1.*\", \"$options\": \"i\"}}"
},
{
"text": "Get RackLong_A1",
"mql": "{\"name\": {\"$regex\": \".*RackLong_A1.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the RackLarge_A1 file",
"mql": "{\"name\": {\"$regex\": \".*RackLarge_A1.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me RackLarge_A1",
"mql": "{\"name\": {\"$regex\": \".*RackLarge_A1.*\", \"$options\": \"i\"}}"
},
{
"text": "Get RackLarge_A1",
"mql": "{\"name\": {\"$regex\": \".*RackLarge_A1.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Orc file",
"mql": "{\"name\": {\"$regex\": \".*Orc.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Orc",
"mql": "{\"name\": {\"$regex\": \".*Orc.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Orc",
"mql": "{\"name\": {\"$regex\": \".*Orc.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Orc.Orc_Idle_Pose file",
"mql": "{\"name\": {\"$regex\": \".*Orc.Orc_Idle_Pose.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Orc.Orc_Idle_Pose",
"mql": "{\"name\": {\"$regex\": \".*Orc.Orc_Idle_Pose.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Orc.Orc_Idle_Pose",
"mql": "{\"name\": {\"$regex\": \".*Orc.Orc_Idle_Pose.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the IsaacWarehouse file",
"mql": "{\"name\": {\"$regex\": \".*IsaacWarehouse.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me IsaacWarehouse",
"mql": "{\"name\": {\"$regex\": \".*IsaacWarehouse.*\", \"$options\": \"i\"}}"
},
{
"text": "Get IsaacWarehouse",
"mql": "{\"name\": {\"$regex\": \".*IsaacWarehouse.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Koenigsegg_Ragnarok file",
"mql": "{\"name\": {\"$regex\": \".*Koenigsegg_Ragnarok.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Koenigsegg_Ragnarok",
"mql": "{\"name\": {\"$regex\": \".*Koenigsegg_Ragnarok.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Koenigsegg_Ragnarok",
"mql": "{\"name\": {\"$regex\": \".*Koenigsegg_Ragnarok.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the NewtonsCradle file",
"mql": "{\"name\": {\"$regex\": \".*NewtonsCradle.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me NewtonsCradle",
"mql": "{\"name\": {\"$regex\": \".*NewtonsCradle.*\", \"$options\": \"i\"}}"
},
{
"text": "Get NewtonsCradle",
"mql": "{\"name\": {\"$regex\": \".*NewtonsCradle.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the business-f-0002 file",
"mql": "{\"name\": {\"$regex\": \".*business-f-0002.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me business-f-0002",
"mql": "{\"name\": {\"$regex\": \".*business-f-0002.*\", \"$options\": \"i\"}}"
},
{
"text": "Get business-f-0002",
"mql": "{\"name\": {\"$regex\": \".*business-f-0002.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the party-m-0001 file",
"mql": "{\"name\": {\"$regex\": \".*party-m-0001.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me party-m-0001",
"mql": "{\"name\": {\"$regex\": \".*party-m-0001.*\", \"$options\": \"i\"}}"
},
{
"text": "Get party-m-0001",
"mql": "{\"name\": {\"$regex\": \".*party-m-0001.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the uniform_f_0001 file",
"mql": "{\"name\": {\"$regex\": \".*uniform_f_0001.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me uniform_f_0001",
"mql": "{\"name\": {\"$regex\": \".*uniform_f_0001.*\", \"$options\": \"i\"}}"
},
{
"text": "Get uniform_f_0001",
"mql": "{\"name\": {\"$regex\": \".*uniform_f_0001.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Worker.Kitchen_CleanTable_M file",
"mql": "{\"name\": {\"$regex\": \".*Worker.Kitchen_CleanTable_M.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Worker.Kitchen_CleanTable_M",
"mql": "{\"name\": {\"$regex\": \".*Worker.Kitchen_CleanTable_M.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Worker.Kitchen_CleanTable_M",
"mql": "{\"name\": {\"$regex\": \".*Worker.Kitchen_CleanTable_M.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the GoldenGate file",
"mql": "{\"name\": {\"$regex\": \".*GoldenGate.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me GoldenGate",
"mql": "{\"name\": {\"$regex\": \".*GoldenGate.*\", \"$options\": \"i\"}}"
},
{
"text": "Get GoldenGate",
"mql": "{\"name\": {\"$regex\": \".*GoldenGate.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the StarField file",
"mql": "{\"name\": {\"$regex\": \".*StarField.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me StarField",
"mql": "{\"name\": {\"$regex\": \".*StarField.*\", \"$options\": \"i\"}}"
},
{
"text": "Get StarField",
"mql": "{\"name\": {\"$regex\": \".*StarField.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Flowers file",
"mql": "{\"name\": {\"$regex\": \".*Flowers.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Flowers",
"mql": "{\"name\": {\"$regex\": \".*Flowers.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Flowers",
"mql": "{\"name\": {\"$regex\": \".*Flowers.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Carrots file",
"mql": "{\"name\": {\"$regex\": \".*Carrots.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Carrots",
"mql": "{\"name\": {\"$regex\": \".*Carrots.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Carrots",
"mql": "{\"name\": {\"$regex\": \".*Carrots.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Blobbies file",
"mql": "{\"name\": {\"$regex\": \".*Blobbies.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Blobbies",
"mql": "{\"name\": {\"$regex\": \".*Blobbies.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Blobbies",
"mql": "{\"name\": {\"$regex\": \".*Blobbies.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Leaves file",
"mql": "{\"name\": {\"$regex\": \".*Leaves.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Leaves",
"mql": "{\"name\": {\"$regex\": \".*Leaves.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Leaves",
"mql": "{\"name\": {\"$regex\": \".*Leaves.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the CandleGlass file",
"mql": "{\"name\": {\"$regex\": \".*CandleGlass.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me CandleGlass",
"mql": "{\"name\": {\"$regex\": \".*CandleGlass.*\", \"$options\": \"i\"}}"
},
{
"text": "Get CandleGlass",
"mql": "{\"name\": {\"$regex\": \".*CandleGlass.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Bonita file",
"mql": "{\"name\": {\"$regex\": \".*Bonita.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Bonita",
"mql": "{\"name\": {\"$regex\": \".*Bonita.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Bonita",
"mql": "{\"name\": {\"$regex\": \".*Bonita.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Cannon file",
"mql": "{\"name\": {\"$regex\": \".*Cannon.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Cannon",
"mql": "{\"name\": {\"$regex\": \".*Cannon.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Cannon",
"mql": "{\"name\": {\"$regex\": \".*Cannon.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Balls file",
"mql": "{\"name\": {\"$regex\": \".*Balls.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Balls",
"mql": "{\"name\": {\"$regex\": \".*Balls.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Balls",
"mql": "{\"name\": {\"$regex\": \".*Balls.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Impact file",
"mql": "{\"name\": {\"$regex\": \".*Impact.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Impact",
"mql": "{\"name\": {\"$regex\": \".*Impact.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Impact",
"mql": "{\"name\": {\"$regex\": \".*Impact.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Desk file",
"mql": "{\"name\": {\"$regex\": \".*Desk.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Desk",
"mql": "{\"name\": {\"$regex\": \".*Desk.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Desk",
"mql": "{\"name\": {\"$regex\": \".*Desk.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the MtTamWest file",
"mql": "{\"name\": {\"$regex\": \".*MtTamWest.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me MtTamWest",
"mql": "{\"name\": {\"$regex\": \".*MtTamWest.*\", \"$options\": \"i\"}}"
},
{
"text": "Get MtTamWest",
"mql": "{\"name\": {\"$regex\": \".*MtTamWest.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Rec709 file",
"mql": "{\"name\": {\"$regex\": \".*Rec709.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Rec709",
"mql": "{\"name\": {\"$regex\": \".*Rec709.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Rec709",
"mql": "{\"name\": {\"$regex\": \".*Rec709.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the PrismsLenses file",
"mql": "{\"name\": {\"$regex\": \".*PrismsLenses.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me PrismsLenses",
"mql": "{\"name\": {\"$regex\": \".*PrismsLenses.*\", \"$options\": \"i\"}}"
},
{
"text": "Get PrismsLenses",
"mql": "{\"name\": {\"$regex\": \".*PrismsLenses.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the StillLife file",
"mql": "{\"name\": {\"$regex\": \".*StillLife.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me StillLife",
"mql": "{\"name\": {\"$regex\": \".*StillLife.*\", \"$options\": \"i\"}}"
},
{
"text": "Get StillLife",
"mql": "{\"name\": {\"$regex\": \".*StillLife.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the Adjuster file",
"mql": "{\"name\": {\"$regex\": \".*Adjuster.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me Adjuster",
"mql": "{\"name\": {\"$regex\": \".*Adjuster.*\", \"$options\": \"i\"}}"
},
{
"text": "Get Adjuster",
"mql": "{\"name\": {\"$regex\": \".*Adjuster.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the GrayRampsDiagonal file",
"mql": "{\"name\": {\"$regex\": \".*GrayRampsDiagonal.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me GrayRampsDiagonal",
"mql": "{\"name\": {\"$regex\": \".*GrayRampsDiagonal.*\", \"$options\": \"i\"}}"
},
{
"text": "Get GrayRampsDiagonal",
"mql": "{\"name\": {\"$regex\": \".*GrayRampsDiagonal.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the RgbRampsDiagonal file",
"mql": "{\"name\": {\"$regex\": \".*RgbRampsDiagonal.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me RgbRampsDiagonal",
"mql": "{\"name\": {\"$regex\": \".*RgbRampsDiagonal.*\", \"$options\": \"i\"}}"
},
{
"text": "Get RgbRampsDiagonal",
"mql": "{\"name\": {\"$regex\": \".*RgbRampsDiagonal.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the WideFloatRange file",
"mql": "{\"name\": {\"$regex\": \".*WideFloatRange.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me WideFloatRange",
"mql": "{\"name\": {\"$regex\": \".*WideFloatRange.*\", \"$options\": \"i\"}}"
},
{
"text": "Get WideFloatRange",
"mql": "{\"name\": {\"$regex\": \".*WideFloatRange.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the ColorCodedLevels file",
"mql": "{\"name\": {\"$regex\": \".*ColorCodedLevels.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me ColorCodedLevels",
"mql": "{\"name\": {\"$regex\": \".*ColorCodedLevels.*\", \"$options\": \"i\"}}"
},
{
"text": "Get ColorCodedLevels",
"mql": "{\"name\": {\"$regex\": \".*ColorCodedLevels.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the t02 file",
"mql": "{\"name\": {\"$regex\": \".*t02.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me t02",
"mql": "{\"name\": {\"$regex\": \".*t02.*\", \"$options\": \"i\"}}"
},
{
"text": "Get t02",
"mql": "{\"name\": {\"$regex\": \".*t02.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the t07 file",
"mql": "{\"name\": {\"$regex\": \".*t07.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me t07",
"mql": "{\"name\": {\"$regex\": \".*t07.*\", \"$options\": \"i\"}}"
},
{
"text": "Get t07",
"mql": "{\"name\": {\"$regex\": \".*t07.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the multipart.0001 file",
"mql": "{\"name\": {\"$regex\": \".*multipart.0001.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me multipart.0001",
"mql": "{\"name\": {\"$regex\": \".*multipart.0001.*\", \"$options\": \"i\"}}"
},
{
"text": "Get multipart.0001",
"mql": "{\"name\": {\"$regex\": \".*multipart.0001.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the multipart.0002 file",
"mql": "{\"name\": {\"$regex\": \".*multipart.0002.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me multipart.0002",
"mql": "{\"name\": {\"$regex\": \".*multipart.0002.*\", \"$options\": \"i\"}}"
},
{
"text": "Get multipart.0002",
"mql": "{\"name\": {\"$regex\": \".*multipart.0002.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the sample_1280\u00d7853 file",
"mql": "{\"name\": {\"$regex\": \".*sample_1280\u00d7853.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me sample_1280\u00d7853",
"mql": "{\"name\": {\"$regex\": \".*sample_1280\u00d7853.*\", \"$options\": \"i\"}}"
},
{
"text": "Get sample_1280\u00d7853",
"mql": "{\"name\": {\"$regex\": \".*sample_1280\u00d7853.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the thachomphu-railway-bridge-white-bridge-sunrise-lamphun-thailand file",
"mql": "{\"name\": {\"$regex\": \".*thachomphu-railway-bridge-white-bridge-sunrise-lamphun-thailand.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me thachomphu-railway-bridge-white-bridge-sunrise-lamphun-thailand",
"mql": "{\"name\": {\"$regex\": \".*thachomphu-railway-bridge-white-bridge-sunrise-lamphun-thailand.*\", \"$options\": \"i\"}}"
},
{
"text": "Get thachomphu-railway-bridge-white-bridge-sunrise-lamphun-thailand",
"mql": "{\"name\": {\"$regex\": \".*thachomphu-railway-bridge-white-bridge-sunrise-lamphun-thailand.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the tourism-wallpaper file",
"mql": "{\"name\": {\"$regex\": \".*tourism-wallpaper.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me tourism-wallpaper",
"mql": "{\"name\": {\"$regex\": \".*tourism-wallpaper.*\", \"$options\": \"i\"}}"
},
{
"text": "Get tourism-wallpaper",
"mql": "{\"name\": {\"$regex\": \".*tourism-wallpaper.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the thunder-light file",
"mql": "{\"name\": {\"$regex\": \".*thunder-light.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me thunder-light",
"mql": "{\"name\": {\"$regex\": \".*thunder-light.*\", \"$options\": \"i\"}}"
},
{
"text": "Get thunder-light",
"mql": "{\"name\": {\"$regex\": \".*thunder-light.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the fried-chicken-breast-cheese-tomato-french-fries-ketchup-green-salad-side-view-jpg file",
"mql": "{\"name\": {\"$regex\": \".*fried-chicken-breast-cheese-tomato-french-fries-ketchup-green-salad-side-view-jpg.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me fried-chicken-breast-cheese-tomato-french-fries-ketchup-green-salad-side-view-jpg",
"mql": "{\"name\": {\"$regex\": \".*fried-chicken-breast-cheese-tomato-french-fries-ketchup-green-salad-side-view-jpg.*\", \"$options\": \"i\"}}"
},
{
"text": "Get fried-chicken-breast-cheese-tomato-french-fries-ketchup-green-salad-side-view-jpg",
"mql": "{\"name\": {\"$regex\": \".*fried-chicken-breast-cheese-tomato-french-fries-ketchup-green-salad-side-view-jpg.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the sample-boat-400x300 file",
"mql": "{\"name\": {\"$regex\": \".*sample-boat-400x300.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me sample-boat-400x300",
"mql": "{\"name\": {\"$regex\": \".*sample-boat-400x300.*\", \"$options\": \"i\"}}"
},
{
"text": "Get sample-boat-400x300",
"mql": "{\"name\": {\"$regex\": \".*sample-boat-400x300.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the nettapp_bangalore file",
"mql": "{\"name\": {\"$regex\": \".*nettapp_bangalore.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me nettapp_bangalore",
"mql": "{\"name\": {\"$regex\": \".*nettapp_bangalore.*\", \"$options\": \"i\"}}"
},
{
"text": "Get nettapp_bangalore",
"mql": "{\"name\": {\"$regex\": \".*nettapp_bangalore.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the galaxy file",
"mql": "{\"name\": {\"$regex\": \".*galaxy.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me galaxy",
"mql": "{\"name\": {\"$regex\": \".*galaxy.*\", \"$options\": \"i\"}}"
},
{
"text": "Get galaxy",
"mql": "{\"name\": {\"$regex\": \".*galaxy.*\", \"$options\": \"i\"}}"
},
{
"text": "Find the 7-wonders-montage file",
"mql": "{\"name\": {\"$regex\": \".*7-wonders-montage.*\", \"$options\": \"i\"}}"
},
{
"text": "Show me 7-wonders-montage",
"mql": "{\"name\": {\"$regex\": \".*7-wonders-montage.*\", \"$options\": \"i\"}}"
},
{
"text": "Get 7-wonders-montage",
"mql": "{\"name\": {\"$regex\": \".*7-wonders-montage.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing Alabama",
"mql": "{\"name\": {\"$regex\": \".*Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with Alabama in the name",
"mql": "{\"name\": {\"$regex\": \".*Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have Alabama in their name",
"mql": "{\"name\": {\"$regex\": \".*Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching Alabama",
"mql": "{\"name\": {\"$regex\": \".*Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing Park",
"mql": "{\"name\": {\"$regex\": \".*Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with Park in the name",
"mql": "{\"name\": {\"$regex\": \".*Park.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have Park in their name",
"mql": "{\"name\": {\"$regex\": \".*Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching Park",
"mql": "{\"name\": {\"$regex\": \".*Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing National",
"mql": "{\"name\": {\"$regex\": \".*National.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with National in the name",
"mql": "{\"name\": {\"$regex\": \".*National.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have National in their name",
"mql": "{\"name\": {\"$regex\": \".*National.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching National",
"mql": "{\"name\": {\"$regex\": \".*National.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing bridge",
"mql": "{\"name\": {\"$regex\": \".*bridge.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with bridge in the name",
"mql": "{\"name\": {\"$regex\": \".*bridge.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have bridge in their name",
"mql": "{\"name\": {\"$regex\": \".*bridge.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching bridge",
"mql": "{\"name\": {\"$regex\": \".*bridge.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing light",
"mql": "{\"name\": {\"$regex\": \".*light.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with light in the name",
"mql": "{\"name\": {\"$regex\": \".*light.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have light in their name",
"mql": "{\"name\": {\"$regex\": \".*light.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching light",
"mql": "{\"name\": {\"$regex\": \".*light.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing star",
"mql": "{\"name\": {\"$regex\": \".*star.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with star in the name",
"mql": "{\"name\": {\"$regex\": \".*star.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have star in their name",
"mql": "{\"name\": {\"$regex\": \".*star.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching star",
"mql": "{\"name\": {\"$regex\": \".*star.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing ball",
"mql": "{\"name\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with ball in the name",
"mql": "{\"name\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have ball in their name",
"mql": "{\"name\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching ball",
"mql": "{\"name\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing flower",
"mql": "{\"name\": {\"$regex\": \".*flower.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with flower in the name",
"mql": "{\"name\": {\"$regex\": \".*flower.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have flower in their name",
"mql": "{\"name\": {\"$regex\": \".*flower.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching flower",
"mql": "{\"name\": {\"$regex\": \".*flower.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing water",
"mql": "{\"name\": {\"$regex\": \".*water.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with water in the name",
"mql": "{\"name\": {\"$regex\": \".*water.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have water in their name",
"mql": "{\"name\": {\"$regex\": \".*water.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching water",
"mql": "{\"name\": {\"$regex\": \".*water.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing thunder",
"mql": "{\"name\": {\"$regex\": \".*thunder.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with thunder in the name",
"mql": "{\"name\": {\"$regex\": \".*thunder.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have thunder in their name",
"mql": "{\"name\": {\"$regex\": \".*thunder.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching thunder",
"mql": "{\"name\": {\"$regex\": \".*thunder.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing sea",
"mql": "{\"name\": {\"$regex\": \".*sea.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with sea in the name",
"mql": "{\"name\": {\"$regex\": \".*sea.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have sea in their name",
"mql": "{\"name\": {\"$regex\": \".*sea.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching sea",
"mql": "{\"name\": {\"$regex\": \".*sea.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing glass",
"mql": "{\"name\": {\"$regex\": \".*glass.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with glass in the name",
"mql": "{\"name\": {\"$regex\": \".*glass.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have glass in their name",
"mql": "{\"name\": {\"$regex\": \".*glass.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching glass",
"mql": "{\"name\": {\"$regex\": \".*glass.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing metal",
"mql": "{\"name\": {\"$regex\": \".*metal.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with metal in the name",
"mql": "{\"name\": {\"$regex\": \".*metal.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have metal in their name",
"mql": "{\"name\": {\"$regex\": \".*metal.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching metal",
"mql": "{\"name\": {\"$regex\": \".*metal.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing galaxy",
"mql": "{\"name\": {\"$regex\": \".*galaxy.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with galaxy in the name",
"mql": "{\"name\": {\"$regex\": \".*galaxy.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have galaxy in their name",
"mql": "{\"name\": {\"$regex\": \".*galaxy.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching galaxy",
"mql": "{\"name\": {\"$regex\": \".*galaxy.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing boat",
"mql": "{\"name\": {\"$regex\": \".*boat.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with boat in the name",
"mql": "{\"name\": {\"$regex\": \".*boat.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have boat in their name",
"mql": "{\"name\": {\"$regex\": \".*boat.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching boat",
"mql": "{\"name\": {\"$regex\": \".*boat.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing chicken",
"mql": "{\"name\": {\"$regex\": \".*chicken.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with chicken in the name",
"mql": "{\"name\": {\"$regex\": \".*chicken.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have chicken in their name",
"mql": "{\"name\": {\"$regex\": \".*chicken.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching chicken",
"mql": "{\"name\": {\"$regex\": \".*chicken.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing tourism",
"mql": "{\"name\": {\"$regex\": \".*tourism.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with tourism in the name",
"mql": "{\"name\": {\"$regex\": \".*tourism.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have tourism in their name",
"mql": "{\"name\": {\"$regex\": \".*tourism.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching tourism",
"mql": "{\"name\": {\"$regex\": \".*tourism.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing Golden",
"mql": "{\"name\": {\"$regex\": \".*Golden.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with Golden in the name",
"mql": "{\"name\": {\"$regex\": \".*Golden.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have Golden in their name",
"mql": "{\"name\": {\"$regex\": \".*Golden.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching Golden",
"mql": "{\"name\": {\"$regex\": \".*Golden.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing Rack",
"mql": "{\"name\": {\"$regex\": \".*Rack.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with Rack in the name",
"mql": "{\"name\": {\"$regex\": \".*Rack.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have Rack in their name",
"mql": "{\"name\": {\"$regex\": \".*Rack.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching Rack",
"mql": "{\"name\": {\"$regex\": \".*Rack.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing Worker",
"mql": "{\"name\": {\"$regex\": \".*Worker.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with Worker in the name",
"mql": "{\"name\": {\"$regex\": \".*Worker.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have Worker in their name",
"mql": "{\"name\": {\"$regex\": \".*Worker.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching Worker",
"mql": "{\"name\": {\"$regex\": \".*Worker.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files containing Orc",
"mql": "{\"name\": {\"$regex\": \".*Orc.*\", \"$options\": \"i\"}}"
},
{
"text": "Search for files with Orc in the name",
"mql": "{\"name\": {\"$regex\": \".*Orc.*\", \"$options\": \"i\"}}"
},
{
"text": "List files that have Orc in their name",
"mql": "{\"name\": {\"$regex\": \".*Orc.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all files matching Orc",
"mql": "{\"name\": {\"$regex\": \".*Orc.*\", \"$options\": \"i\"}}"
},
{
"text": "Show all files in USD directory",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/USD/\", \"$options\": \"i\"}}"
},
{
"text": "List files under the USD folder",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/USD/\", \"$options\": \"i\"}}"
},
{
"text": "Get files from the USD path",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/USD/\", \"$options\": \"i\"}}"
},
{
"text": "Find everything in USD",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/USD/\", \"$options\": \"i\"}}"
},
{
"text": "Show all files in EXR directory",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/EXR/\", \"$options\": \"i\"}}"
},
{
"text": "List files under the EXR folder",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/EXR/\", \"$options\": \"i\"}}"
},
{
"text": "Get files from the EXR path",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/EXR/\", \"$options\": \"i\"}}"
},
{
"text": "Find everything in EXR",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/EXR/\", \"$options\": \"i\"}}"
},
{
"text": "Show all files in pix-images directory",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/\", \"$options\": \"i\"}}"
},
{
"text": "List files under the pix-images folder",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/\", \"$options\": \"i\"}}"
},
{
"text": "Get files from the pix-images path",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/\", \"$options\": \"i\"}}"
},
{
"text": "Find everything in pix-images",
"mql": "{\"name\": {\"$regex\": \"^/pix-images/\", \"$options\": \"i\"}}"
},
{
"text": "Show all files in confidential directory",
"mql": "{\"name\": {\"$regex\": \"^/confidential/\", \"$options\": \"i\"}}"
},
{
"text": "List files under the confidential folder",
"mql": "{\"name\": {\"$regex\": \"^/confidential/\", \"$options\": \"i\"}}"
},
{
"text": "Get files from the confidential path",
"mql": "{\"name\": {\"$regex\": \"^/confidential/\", \"$options\": \"i\"}}"
},
{
"text": "Find everything in confidential",
"mql": "{\"name\": {\"$regex\": \"^/confidential/\", \"$options\": \"i\"}}"
},
{
"text": "Find all text files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Show me text files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "List text files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Get every text file",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Find all txt files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Show me txt files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "List txt files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Get every txt file",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "How many txt files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"txt\"}}"
},
{
"text": "Find all text document files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Show me text document files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "List text document files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Get every text document file",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "How many text document files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"txt\"}}"
},
{
"text": "Find all plain text files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Show me plain text files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "List plain text files",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "Get every plain text file",
"mql": "{\"extension\": \"txt\"}"
},
{
"text": "How many plain text files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"txt\"}}"
},
{
"text": "Show me tiff files",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "List tiff files",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "Get every tiff file",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "Find all tif files",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "Show me tif files",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "List tif files",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "Get every tif file",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "How many tif files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"tiff\"}}"
},
{
"text": "Find all tiff image files",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "Show me tiff image files",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "List tiff image files",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "Get every tiff image file",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "How many tiff image files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"tiff\"}}"
},
{
"text": "Find all usd files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Show me usd files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "List usd files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Get every usd file",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "How many usd files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"usd\"}}"
},
{
"text": "Show me 3D model files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "List 3D model files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Get every 3D model file",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "How many 3D model files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"usd\"}}"
},
{
"text": "Find all 3D asset files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Show me 3D asset files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "List 3D asset files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Get every 3D asset file",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "How many 3D asset files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"usd\"}}"
},
{
"text": "Find all 3D file files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Show me 3D file files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "List 3D file files",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Get every 3D file file",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "How many 3D file files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"usd\"}}"
},
{
"text": "Find all exr files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "Show me exr files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "List exr files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "Get every exr file",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "How many exr files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"exr\"}}"
},
{
"text": "Find all OpenEXR files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "Show me OpenEXR files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "List OpenEXR files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "Get every OpenEXR file",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "How many OpenEXR files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"exr\"}}"
},
{
"text": "Find all HDR image files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "Show me HDR image files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "List HDR image files",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "Get every HDR image file",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "How many HDR image files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"exr\"}}"
},
{
"text": "Find all jpg files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "Show me jpg files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "List jpg files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "Get every jpg file",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "How many jpg files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"jpg\"}}"
},
{
"text": "Find all jpeg files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "Show me jpeg files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "List jpeg files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "Get every jpeg file",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "How many jpeg files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"jpg\"}}"
},
{
"text": "Find all photograph files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "Show me photograph files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "List photograph files",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "Get every photograph file",
"mql": "{\"extension\": \"jpg\"}"
},
{
"text": "How many photograph files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"jpg\"}}"
},
{
"text": "Find all png files",
"mql": "{\"extension\": \"png\"}"
},
{
"text": "Show me png files",
"mql": "{\"extension\": \"png\"}"
},
{
"text": "List png files",
"mql": "{\"extension\": \"png\"}"
},
{
"text": "Get every png file",
"mql": "{\"extension\": \"png\"}"
},
{
"text": "How many png files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"png\"}}"
},
{
"text": "Find all png image files",
"mql": "{\"extension\": \"png\"}"
},
{
"text": "Show me png image files",
"mql": "{\"extension\": \"png\"}"
},
{
"text": "List png image files",
"mql": "{\"extension\": \"png\"}"
},
{
"text": "Get every png image file",
"mql": "{\"extension\": \"png\"}"
},
{
"text": "How many png image files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"png\"}}"
},
{
"text": "Find all jpg or png files",
"mql": "{\"extension\": {\"$in\": [\"jpg\", \"png\"]}}"
},
{
"text": "Show jpg or png files",
"mql": "{\"extension\": {\"$in\": [\"jpg\", \"png\"]}}"
},
{
"text": "Count jpg or png files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"jpg\", \"png\"]}}}"
},
{
"text": "How many jpg or png files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"jpg\", \"png\"]}}}"
},
{
"text": "Find all jpg, png or tiff files",
"mql": "{\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\"]}}"
},
{
"text": "Show jpg, png or tiff files",
"mql": "{\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\"]}}"
},
{
"text": "Count jpg, png or tiff files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\"]}}}"
},
{
"text": "How many jpg, png or tiff files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\"]}}}"
},
{
"text": "Show image files",
"mql": "{\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}"
},
{
"text": "Count image files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}}"
},
{
"text": "How many image files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}}"
},
{
"text": "Find all exr or tiff files",
"mql": "{\"extension\": {\"$in\": [\"exr\", \"tiff\"]}}"
},
{
"text": "Show exr or tiff files",
"mql": "{\"extension\": {\"$in\": [\"exr\", \"tiff\"]}}"
},
{
"text": "Count exr or tiff files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"exr\", \"tiff\"]}}}"
},
{
"text": "How many exr or tiff files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": {\"$in\": [\"exr\", \"tiff\"]}}}"
},
{
"text": "Find files that are not txt",
"mql": "{\"extension\": {\"$ne\": \"txt\"}}"
},
{
"text": "Show everything except txt files",
"mql": "{\"extension\": {\"$ne\": \"txt\"}}"
},
{
"text": "Find files that are not tiff",
"mql": "{\"extension\": {\"$ne\": \"tiff\"}}"
},
{
"text": "Show everything except tiff files",
"mql": "{\"extension\": {\"$ne\": \"tiff\"}}"
},
{
"text": "Find files that are not usd",
"mql": "{\"extension\": {\"$ne\": \"usd\"}}"
},
{
"text": "Show everything except usd files",
"mql": "{\"extension\": {\"$ne\": \"usd\"}}"
},
{
"text": "Find files that are not exr",
"mql": "{\"extension\": {\"$ne\": \"exr\"}}"
},
{
"text": "Show everything except exr files",
"mql": "{\"extension\": {\"$ne\": \"exr\"}}"
},
{
"text": "Find files that are not jpg",
"mql": "{\"extension\": {\"$ne\": \"jpg\"}}"
},
{
"text": "Show everything except jpg files",
"mql": "{\"extension\": {\"$ne\": \"jpg\"}}"
},
{
"text": "Find files that are not png",
"mql": "{\"extension\": {\"$ne\": \"png\"}}"
},
{
"text": "Show everything except png files",
"mql": "{\"extension\": {\"$ne\": \"png\"}}"
},
{
"text": "Find files larger than 100 bytes",
"mql": "{\"size\": {\"$gt\": 100}}"
},
{
"text": "Get files bigger than 100 bytes",
"mql": "{\"size\": {\"$gt\": 100}}"
},
{
"text": "Show files under 100 bytes",
"mql": "{\"size\": {\"$lt\": 100}}"
},
{
"text": "Find files larger than 512 bytes",
"mql": "{\"size\": {\"$gt\": 512}}"
},
{
"text": "Find files smaller than 512 bytes",
"mql": "{\"size\": {\"$lt\": 512}}"
},
{
"text": "Get files bigger than 512 bytes",
"mql": "{\"size\": {\"$gt\": 512}}"
},
{
"text": "Show files under 512 bytes",
"mql": "{\"size\": {\"$lt\": 512}}"
},
{
"text": "Find files larger than 1KB",
"mql": "{\"size\": {\"$gt\": 1024}}"
},
{
"text": "Get files bigger than 1KB",
"mql": "{\"size\": {\"$gt\": 1024}}"
},
{
"text": "Show files under 1KB",
"mql": "{\"size\": {\"$lt\": 1024}}"
},
{
"text": "Find files larger than 5KB",
"mql": "{\"size\": {\"$gt\": 5120}}"
},
{
"text": "Find files smaller than 5KB",
"mql": "{\"size\": {\"$lt\": 5120}}"
},
{
"text": "Get files bigger than 5KB",
"mql": "{\"size\": {\"$gt\": 5120}}"
},
{
"text": "Show files under 5KB",
"mql": "{\"size\": {\"$lt\": 5120}}"
},
{
"text": "Find files larger than 10KB",
"mql": "{\"size\": {\"$gt\": 10240}}"
},
{
"text": "Find files smaller than 10KB",
"mql": "{\"size\": {\"$lt\": 10240}}"
},
{
"text": "Get files bigger than 10KB",
"mql": "{\"size\": {\"$gt\": 10240}}"
},
{
"text": "Show files under 10KB",
"mql": "{\"size\": {\"$lt\": 10240}}"
},
{
"text": "Find files larger than 50KB",
"mql": "{\"size\": {\"$gt\": 51200}}"
},
{
"text": "Find files smaller than 50KB",
"mql": "{\"size\": {\"$lt\": 51200}}"
},
{
"text": "Get files bigger than 50KB",
"mql": "{\"size\": {\"$gt\": 51200}}"
},
{
"text": "Show files under 50KB",
"mql": "{\"size\": {\"$lt\": 51200}}"
},
{
"text": "Find files larger than 100KB",
"mql": "{\"size\": {\"$gt\": 102400}}"
},
{
"text": "Find files smaller than 100KB",
"mql": "{\"size\": {\"$lt\": 102400}}"
},
{
"text": "Get files bigger than 100KB",
"mql": "{\"size\": {\"$gt\": 102400}}"
},
{
"text": "Show files under 100KB",
"mql": "{\"size\": {\"$lt\": 102400}}"
},
{
"text": "Find files larger than 500KB",
"mql": "{\"size\": {\"$gt\": 524288}}"
},
{
"text": "Find files smaller than 500KB",
"mql": "{\"size\": {\"$lt\": 524288}}"
},
{
"text": "Get files bigger than 500KB",
"mql": "{\"size\": {\"$gt\": 524288}}"
},
{
"text": "Show files under 500KB",
"mql": "{\"size\": {\"$lt\": 524288}}"
},
{
"text": "Find files larger than 1MB",
"mql": "{\"size\": {\"$gt\": 1048576}}"
},
{
"text": "Find files smaller than 1MB",
"mql": "{\"size\": {\"$lt\": 1048576}}"
},
{
"text": "Get files bigger than 1MB",
"mql": "{\"size\": {\"$gt\": 1048576}}"
},
{
"text": "Show files under 1MB",
"mql": "{\"size\": {\"$lt\": 1048576}}"
},
{
"text": "Find files larger than 2MB",
"mql": "{\"size\": {\"$gt\": 2097152}}"
},
{
"text": "Find files smaller than 2MB",
"mql": "{\"size\": {\"$lt\": 2097152}}"
},
{
"text": "Get files bigger than 2MB",
"mql": "{\"size\": {\"$gt\": 2097152}}"
},
{
"text": "Show files under 2MB",
"mql": "{\"size\": {\"$lt\": 2097152}}"
},
{
"text": "Find files larger than 5MB",
"mql": "{\"size\": {\"$gt\": 5242880}}"
},
{
"text": "Find files smaller than 5MB",
"mql": "{\"size\": {\"$lt\": 5242880}}"
},
{
"text": "Get files bigger than 5MB",
"mql": "{\"size\": {\"$gt\": 5242880}}"
},
{
"text": "Show files under 5MB",
"mql": "{\"size\": {\"$lt\": 5242880}}"
},
{
"text": "Find files larger than 10MB",
"mql": "{\"size\": {\"$gt\": 10485760}}"
},
{
"text": "Find files smaller than 10MB",
"mql": "{\"size\": {\"$lt\": 10485760}}"
},
{
"text": "Get files bigger than 10MB",
"mql": "{\"size\": {\"$gt\": 10485760}}"
},
{
"text": "Show files under 10MB",
"mql": "{\"size\": {\"$lt\": 10485760}}"
},
{
"text": "Find files larger than 20MB",
"mql": "{\"size\": {\"$gt\": 20971520}}"
},
{
"text": "Find files smaller than 20MB",
"mql": "{\"size\": {\"$lt\": 20971520}}"
},
{
"text": "Get files bigger than 20MB",
"mql": "{\"size\": {\"$gt\": 20971520}}"
},
{
"text": "Show files under 20MB",
"mql": "{\"size\": {\"$lt\": 20971520}}"
},
{
"text": "Find files larger than 50MB",
"mql": "{\"size\": {\"$gt\": 52428800}}"
},
{
"text": "Find files smaller than 50MB",
"mql": "{\"size\": {\"$lt\": 52428800}}"
},
{
"text": "Get files bigger than 50MB",
"mql": "{\"size\": {\"$gt\": 52428800}}"
},
{
"text": "Show files under 50MB",
"mql": "{\"size\": {\"$lt\": 52428800}}"
},
{
"text": "Find files larger than 100MB",
"mql": "{\"size\": {\"$gt\": 104857600}}"
},
{
"text": "Find files smaller than 100MB",
"mql": "{\"size\": {\"$lt\": 104857600}}"
},
{
"text": "Get files bigger than 100MB",
"mql": "{\"size\": {\"$gt\": 104857600}}"
},
{
"text": "Show files under 100MB",
"mql": "{\"size\": {\"$lt\": 104857600}}"
},
{
"text": "Find txt files larger than 5MB",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$gt\": 5242880}}]}"
},
{
"text": "Get txt files smaller than 5MB",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$lt\": 5242880}}]}"
},
{
"text": "Find txt files larger than 512 bytes",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$gt\": 512}}]}"
},
{
"text": "Get txt files smaller than 512 bytes",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$lt\": 512}}]}"
},
{
"text": "Find txt files larger than 100 bytes",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$gt\": 100}}]}"
},
{
"text": "Get txt files smaller than 100 bytes",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$lt\": 100}}]}"
},
{
"text": "Find tiff files larger than 10MB",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$gt\": 10485760}}]}"
},
{
"text": "Get tiff files smaller than 10MB",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$lt\": 10485760}}]}"
},
{
"text": "Find tiff files larger than 10KB",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$gt\": 10240}}]}"
},
{
"text": "Get tiff files smaller than 10KB",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$lt\": 10240}}]}"
},
{
"text": "Find tiff files larger than 5KB",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$gt\": 5120}}]}"
},
{
"text": "Get tiff files smaller than 5KB",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$lt\": 5120}}]}"
},
{
"text": "Find usd files larger than 5KB",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$gt\": 5120}}]}"
},
{
"text": "Get usd files smaller than 5KB",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$lt\": 5120}}]}"
},
{
"text": "Find usd files larger than 1KB",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$gt\": 1024}}]}"
},
{
"text": "Get usd files smaller than 1KB",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$lt\": 1024}}]}"
},
{
"text": "Find usd files larger than 10MB",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$gt\": 10485760}}]}"
},
{
"text": "Get usd files smaller than 10MB",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$lt\": 10485760}}]}"
},
{
"text": "Find exr files larger than 512 bytes",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$gt\": 512}}]}"
},
{
"text": "Get exr files smaller than 512 bytes",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$lt\": 512}}]}"
},
{
"text": "Find exr files larger than 5MB",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$gt\": 5242880}}]}"
},
{
"text": "Get exr files smaller than 5MB",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$lt\": 5242880}}]}"
},
{
"text": "Find exr files larger than 10MB",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$gt\": 10485760}}]}"
},
{
"text": "Get exr files smaller than 10MB",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$lt\": 10485760}}]}"
},
{
"text": "Find jpg files larger than 100MB",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$gt\": 104857600}}]}"
},
{
"text": "Get jpg files smaller than 100MB",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$lt\": 104857600}}]}"
},
{
"text": "Find jpg files larger than 1MB",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$gt\": 1048576}}]}"
},
{
"text": "Get jpg files smaller than 1MB",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$lt\": 1048576}}]}"
},
{
"text": "Find jpg files larger than 512 bytes",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$gt\": 512}}]}"
},
{
"text": "Get jpg files smaller than 512 bytes",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$lt\": 512}}]}"
},
{
"text": "Find png files larger than 2MB",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$gt\": 2097152}}]}"
},
{
"text": "Get png files smaller than 2MB",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$lt\": 2097152}}]}"
},
{
"text": "Find png files larger than 100KB",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$gt\": 102400}}]}"
},
{
"text": "Get png files smaller than 100KB",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$lt\": 102400}}]}"
},
{
"text": "Find png files larger than 100 bytes",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$gt\": 100}}]}"
},
{
"text": "Get png files smaller than 100 bytes",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$lt\": 100}}]}"
},
{
"text": "Find files between 100 bytes and 1MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 100}}, {\"size\": {\"$lte\": 1048576}}]}"
},
{
"text": "Find files between 5KB and 2MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 5120}}, {\"size\": {\"$lte\": 2097152}}]}"
},
{
"text": "Find files between 100 bytes and 20MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 100}}, {\"size\": {\"$lte\": 20971520}}]}"
},
{
"text": "Find files between 5KB and 50MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 5120}}, {\"size\": {\"$lte\": 52428800}}]}"
},
{
"text": "Find files between 100KB and 2MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 102400}}, {\"size\": {\"$lte\": 2097152}}]}"
},
{
"text": "Find files between 500KB and 20MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 524288}}, {\"size\": {\"$lte\": 20971520}}]}"
},
{
"text": "Find files between 10KB and 100MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 10240}}, {\"size\": {\"$lte\": 104857600}}]}"
},
{
"text": "Find files between 100 bytes and 100MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 100}}, {\"size\": {\"$lte\": 104857600}}]}"
},
{
"text": "Find files between 1KB and 50MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 1024}}, {\"size\": {\"$lte\": 52428800}}]}"
},
{
"text": "Find files between 100KB and 5MB",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 102400}}, {\"size\": {\"$lte\": 5242880}}]}"
},
{
"text": "Find files with PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Show files with PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "List all files with PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Get files with PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Find files without PII",
"mql": "{\"has_pii\": false}"
},
{
"text": "List all files without PII",
"mql": "{\"has_pii\": false}"
},
{
"text": "Get files without PII",
"mql": "{\"has_pii\": false}"
},
{
"text": "Find files containing PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Show files containing PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "List all files containing PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Get files containing PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Find files that contain personal data",
"mql": "{\"has_pii\": true}"
},
{
"text": "Show files that contain personal data",
"mql": "{\"has_pii\": true}"
},
{
"text": "List all files that contain personal data",
"mql": "{\"has_pii\": true}"
},
{
"text": "Get files that contain personal data",
"mql": "{\"has_pii\": true}"
},
{
"text": "Find files with sensitive information",
"mql": "{\"has_pii\": true}"
},
{
"text": "Show files with sensitive information",
"mql": "{\"has_pii\": true}"
},
{
"text": "List all files with sensitive information",
"mql": "{\"has_pii\": true}"
},
{
"text": "Get files with sensitive information",
"mql": "{\"has_pii\": true}"
},
{
"text": "Find files with no sensitive data",
"mql": "{\"has_pii\": false}"
},
{
"text": "Show files with no sensitive data",
"mql": "{\"has_pii\": false}"
},
{
"text": "List all files with no sensitive data",
"mql": "{\"has_pii\": false}"
},
{
"text": "Get files with no sensitive data",
"mql": "{\"has_pii\": false}"
},
{
"text": "Find files without personal information",
"mql": "{\"has_pii\": false}"
},
{
"text": "Show files without personal information",
"mql": "{\"has_pii\": false}"
},
{
"text": "List all files without personal information",
"mql": "{\"has_pii\": false}"
},
{
"text": "Get files without personal information",
"mql": "{\"has_pii\": false}"
},
{
"text": "Find files that have PII detected",
"mql": "{\"has_pii\": true}"
},
{
"text": "Show files that have PII detected",
"mql": "{\"has_pii\": true}"
},
{
"text": "List all files that have PII detected",
"mql": "{\"has_pii\": true}"
},
{
"text": "Get files that have PII detected",
"mql": "{\"has_pii\": true}"
},
{
"text": "Find files marked as having PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Show files marked as having PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "List all files marked as having PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Get files marked as having PII",
"mql": "{\"has_pii\": true}"
},
{
"text": "Find files clean files without PII",
"mql": "{\"has_pii\": false}"
},
{
"text": "Show files clean files without PII",
"mql": "{\"has_pii\": false}"
},
{
"text": "List all files clean files without PII",
"mql": "{\"has_pii\": false}"
},
{
"text": "Get files clean files without PII",
"mql": "{\"has_pii\": false}"
},
{
"text": "Find processed files",
"mql": "{\"processed\": true}"
},
{
"text": "Show processed files",
"mql": "{\"processed\": true}"
},
{
"text": "Find unprocessed files",
"mql": "{\"processed\": false}"
},
{
"text": "Show unprocessed files",
"mql": "{\"processed\": false}"
},
{
"text": "Find that have been processed files",
"mql": "{\"processed\": true}"
},
{
"text": "Show that have been processed files",
"mql": "{\"processed\": true}"
},
{
"text": "Find not yet processed files",
"mql": "{\"processed\": false}"
},
{
"text": "Show not yet processed files",
"mql": "{\"processed\": false}"
},
{
"text": "Find pending processing files",
"mql": "{\"processed\": false}"
},
{
"text": "Show pending processing files",
"mql": "{\"processed\": false}"
},
{
"text": "Find already scanned files",
"mql": "{\"processed\": true}"
},
{
"text": "Show already scanned files",
"mql": "{\"processed\": true}"
},
{
"text": "Find completed processing files",
"mql": "{\"processed\": true}"
},
{
"text": "Show completed processing files",
"mql": "{\"processed\": true}"
},
{
"text": "Find txt files with PII",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"has_pii\": true}]}"
},
{
"text": "Find txt files without PII",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"has_pii\": false}]}"
},
{
"text": "Find tiff files with PII",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"has_pii\": true}]}"
},
{
"text": "Find tiff files without PII",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"has_pii\": false}]}"
},
{
"text": "Find usd files with PII",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"has_pii\": true}]}"
},
{
"text": "Find usd files without PII",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"has_pii\": false}]}"
},
{
"text": "Find exr files with PII",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"has_pii\": true}]}"
},
{
"text": "Find exr files without PII",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"has_pii\": false}]}"
},
{
"text": "Find jpg files with PII",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"has_pii\": true}]}"
},
{
"text": "Find jpg files without PII",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"has_pii\": false}]}"
},
{
"text": "Find png files with PII",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"has_pii\": true}]}"
},
{
"text": "Find png files without PII",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"has_pii\": false}]}"
},
{
"text": "Find files with open permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Show files with open permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have open permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Find files with world-readable",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Show files with world-readable",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have world-readable",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Find files with readable by everyone",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Show files with readable by everyone",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have readable by everyone",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Find files with publicly accessible",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Show files with publicly accessible",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have publicly accessible",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..r..\", \"$options\": \"i\"}}"
},
{
"text": "Find files with read-write for owner",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw\", \"$options\": \"i\"}}"
},
{
"text": "Show files with read-write for owner",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have read-write for owner",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw\", \"$options\": \"i\"}}"
},
{
"text": "Find files with writable",
"mql": "{\"permissions.value\": {\"$regex\": \"^.w\", \"$options\": \"i\"}}"
},
{
"text": "Show files with writable",
"mql": "{\"permissions.value\": {\"$regex\": \"^.w\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have writable",
"mql": "{\"permissions.value\": {\"$regex\": \"^.w\", \"$options\": \"i\"}}"
},
{
"text": "Find files with executable",
"mql": "{\"permissions.value\": {\"$regex\": \"x\", \"$options\": \"i\"}}"
},
{
"text": "Show files with executable",
"mql": "{\"permissions.value\": {\"$regex\": \"x\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have executable",
"mql": "{\"permissions.value\": {\"$regex\": \"x\", \"$options\": \"i\"}}"
},
{
"text": "Find files with owner-only access",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw-------$\", \"$options\": \"i\"}}"
},
{
"text": "Show files with owner-only access",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw-------$\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have owner-only access",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw-------$\", \"$options\": \"i\"}}"
},
{
"text": "Find files with restricted permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw-------\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have restricted permissions",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw-------\", \"$options\": \"i\"}}"
},
{
"text": "Find files with private files",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw-------\", \"$options\": \"i\"}}"
},
{
"text": "Show files with private files",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw-------\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have private files",
"mql": "{\"permissions.value\": {\"$regex\": \"^rw-------\", \"$options\": \"i\"}}"
},
{
"text": "Find files with group readable",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r\", \"$options\": \"i\"}}"
},
{
"text": "Show files with group readable",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have group readable",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r\", \"$options\": \"i\"}}"
},
{
"text": "Find files with no world access",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..---$\", \"$options\": \"i\"}}"
},
{
"text": "Show files with no world access",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..---$\", \"$options\": \"i\"}}"
},
{
"text": "List all files that have no world access",
"mql": "{\"permissions.value\": {\"$regex\": \"^r..r..---$\", \"$options\": \"i\"}}"
},
{
"text": "Find files with permissions rw-r--r--",
"mql": "{\"permissions.value\": \"rw-r--r--\"}"
},
{
"text": "Get files with rw-r--r-- permission",
"mql": "{\"permissions.value\": \"rw-r--r--\"}"
},
{
"text": "Find files with permissions rwxr-xr-x",
"mql": "{\"permissions.value\": \"rwxr-xr-x\"}"
},
{
"text": "Get files with rwxr-xr-x permission",
"mql": "{\"permissions.value\": \"rwxr-xr-x\"}"
},
{
"text": "Find files with permissions rw-------",
"mql": "{\"permissions.value\": \"rw-------\"}"
},
{
"text": "Get files with rw------- permission",
"mql": "{\"permissions.value\": \"rw-------\"}"
},
{
"text": "Find files with permissions rw-r-----",
"mql": "{\"permissions.value\": \"rw-r-----\"}"
},
{
"text": "Get files with rw-r----- permission",
"mql": "{\"permissions.value\": \"rw-r-----\"}"
},
{
"text": "Find files with errors",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Show files that have errors",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Get all files with errors",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Show files that have extraction errors",
"mql": "{\"errors.code\": \"EXTRACTOR_ERROR\"}"
},
{
"text": "Get all files with extraction errors",
"mql": "{\"errors.code\": \"EXTRACTOR_ERROR\"}"
},
{
"text": "Find files with processing failures",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Show files that have processing failures",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Get all files with processing failures",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Find files with failed to process",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Show files that have failed to process",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Get all files with failed to process",
"mql": "{\"errors\": {\"$ne\": null}}"
},
{
"text": "Find files with no errors",
"mql": "{\"$or\": [{\"errors\": null}, {\"errors\": []}]}"
},
{
"text": "Show files that have no errors",
"mql": "{\"$or\": [{\"errors\": null}, {\"errors\": []}]}"
},
{
"text": "Get all files with no errors",
"mql": "{\"$or\": [{\"errors\": null}, {\"errors\": []}]}"
},
{
"text": "Find files with successfully processed",
"mql": "{\"$and\": [{\"processed\": true}, {\"$or\": [{\"errors\": null}, {\"errors\": []}]}]}"
},
{
"text": "Show files that have successfully processed",
"mql": "{\"$and\": [{\"processed\": true}, {\"$or\": [{\"errors\": null}, {\"errors\": []}]}]}"
},
{
"text": "Get all files with successfully processed",
"mql": "{\"$and\": [{\"processed\": true}, {\"$or\": [{\"errors\": null}, {\"errors\": []}]}]}"
},
{
"text": "Find images showing bridge",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bridge.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about bridge",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bridge.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions bridge",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bridge.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing mountain",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*mountain.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about mountain",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*mountain.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions mountain",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*mountain.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing sunset",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sunset.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about sunset",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sunset.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions sunset",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sunset.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing sunrise",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sunrise.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about sunrise",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sunrise.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions sunrise",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sunrise.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing flower",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*flower.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about flower",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*flower.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions flower",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*flower.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing star",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*star.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about star",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*star.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions star",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*star.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing cosmos",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*cosmos.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about cosmos",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*cosmos.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions cosmos",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*cosmos.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing universe",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*universe.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about universe",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*universe.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions universe",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*universe.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing food",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*food.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about food",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*food.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions food",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*food.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing burger",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*burger.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about burger",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*burger.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions burger",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*burger.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing chicken",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*chicken.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about chicken",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*chicken.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions chicken",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*chicken.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing salad",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*salad.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about salad",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*salad.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions salad",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*salad.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing boat",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*boat.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about boat",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*boat.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions boat",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*boat.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing lake",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*lake.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about lake",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*lake.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions lake",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*lake.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing ocean",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*ocean.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about ocean",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*ocean.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions ocean",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*ocean.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing field",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*field.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about field",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*field.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions field",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*field.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing tree",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*tree.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about tree",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*tree.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions tree",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*tree.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing car",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*car.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about car",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*car.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions car",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*car.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing wheel",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*wheel.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about wheel",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*wheel.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions wheel",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*wheel.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing tire",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*tire.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about tire",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*tire.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions tire",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*tire.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing chair",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*chair.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about chair",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*chair.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions chair",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*chair.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing table",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*table.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about table",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*table.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions table",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*table.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing candle",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*candle.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about candle",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*candle.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions candle",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*candle.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing glass",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*glass.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about glass",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*glass.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions glass",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*glass.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing ball",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about ball",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions ball",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*ball.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing sword",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sword.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about sword",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sword.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions sword",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sword.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing horse",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*horse.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about horse",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*horse.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions horse",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*horse.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing bear",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bear.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about bear",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bear.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions bear",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bear.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing deer",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*deer.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about deer",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*deer.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions deer",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*deer.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing bird",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bird.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about bird",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bird.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions bird",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bird.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing dragon",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*dragon.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about dragon",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*dragon.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions dragon",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*dragon.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing person",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*person.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about person",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*person.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions person",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*person.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing woman",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*woman.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about woman",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*woman.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions woman",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*woman.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing man",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*man.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about man",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*man.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions man",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*man.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing building",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*building.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about building",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*building.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions building",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*building.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing city",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*city.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about city",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*city.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions city",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*city.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing sky",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sky.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about sky",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sky.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions sky",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*sky.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing cloud",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*cloud.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about cloud",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*cloud.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions cloud",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*cloud.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing rain",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*rain.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about rain",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*rain.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions rain",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*rain.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing snow",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*snow.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about snow",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*snow.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions snow",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*snow.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing winter",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*winter.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about winter",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*winter.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions winter",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*winter.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing garden",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*garden.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about garden",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*garden.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions garden",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*garden.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing fruit",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*fruit.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about fruit",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*fruit.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions fruit",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*fruit.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing vegetable",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*vegetable.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about vegetable",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*vegetable.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions vegetable",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*vegetable.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing piano",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*piano.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about piano",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*piano.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions piano",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*piano.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing clock",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*clock.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about clock",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*clock.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions clock",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*clock.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing astronaut",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*astronaut.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about astronaut",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*astronaut.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions astronaut",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*astronaut.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing statue",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*statue.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about statue",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*statue.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions statue",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*statue.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images showing landmark",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*landmark.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files with content about landmark",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*landmark.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Get files whose description mentions landmark",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*landmark.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images of sunset or sunrise",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(sunset|sunrise).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images of food or drink",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(food|drink|burger|chicken|salad|dinner).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images of nature scenes",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(mountain|field|ocean|sunset|sunrise|forest|garden|lake).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images of animals",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(animal|horse|bear|deer|bird|dragon).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images of architecture or buildings",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(building|architecture|tower|bridge|structure).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find images of people or portraits",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(person|woman|man|people|portrait).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show the 1 largest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 1}"
},
{
"text": "Show the 1 smallest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": 1}, \"limit\": 1}"
},
{
"text": "Get top 1 files by size",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 1}"
},
{
"text": "Show 1 most recently created files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"create_time\": -1}, \"limit\": 1}"
},
{
"text": "Get the 1 most recently modified files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"modified_time\": -1}, \"limit\": 1}"
},
{
"text": "Show the 3 largest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 3}"
},
{
"text": "Show the 3 smallest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": 1}, \"limit\": 3}"
},
{
"text": "Get top 3 files by size",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 3}"
},
{
"text": "Show 3 most recently created files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"create_time\": -1}, \"limit\": 3}"
},
{
"text": "Get the 3 most recently modified files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"modified_time\": -1}, \"limit\": 3}"
},
{
"text": "Show the 5 largest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 5}"
},
{
"text": "Show the 5 smallest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": 1}, \"limit\": 5}"
},
{
"text": "Get top 5 files by size",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 5}"
},
{
"text": "Show 5 most recently created files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"create_time\": -1}, \"limit\": 5}"
},
{
"text": "Get the 5 most recently modified files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"modified_time\": -1}, \"limit\": 5}"
},
{
"text": "Show the 10 largest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 10}"
},
{
"text": "Show the 10 smallest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": 1}, \"limit\": 10}"
},
{
"text": "Get top 10 files by size",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 10}"
},
{
"text": "Show 10 most recently created files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"create_time\": -1}, \"limit\": 10}"
},
{
"text": "Get the 10 most recently modified files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"modified_time\": -1}, \"limit\": 10}"
},
{
"text": "Show the 20 largest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 20}"
},
{
"text": "Show the 20 smallest files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": 1}, \"limit\": 20}"
},
{
"text": "Get top 20 files by size",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 20}"
},
{
"text": "Show 20 most recently created files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"create_time\": -1}, \"limit\": 20}"
},
{
"text": "Get the 20 most recently modified files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"modified_time\": -1}, \"limit\": 20}"
},
{
"text": "Find the biggest file",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}, \"limit\": 1}"
},
{
"text": "What is the smallest file",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": 1}, \"limit\": 1}"
},
{
"text": "Show files sorted by name",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"name\": 1}}"
},
{
"text": "List files sorted by size descending",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"size\": -1}}"
},
{
"text": "Show newest files first",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"find\", \"filter\": {}, \"sort\": {\"create_time\": -1}}"
},
{
"text": "Find txt files larger than 10KB with PII",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$gt\": 10240}}, {\"has_pii\": true}]}"
},
{
"text": "Find txt files larger than 10KB without PII",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$gt\": 10240}}, {\"has_pii\": false}]}"
},
{
"text": "Find txt files larger than 1KB with PII",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$gt\": 1024}}, {\"has_pii\": true}]}"
},
{
"text": "Find txt files larger than 1KB without PII",
"mql": "{\"$and\": [{\"extension\": \"txt\"}, {\"size\": {\"$gt\": 1024}}, {\"has_pii\": false}]}"
},
{
"text": "Find tiff files larger than 5KB with PII",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$gt\": 5120}}, {\"has_pii\": true}]}"
},
{
"text": "Find tiff files larger than 5KB without PII",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$gt\": 5120}}, {\"has_pii\": false}]}"
},
{
"text": "Find tiff files larger than 20MB with PII",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$gt\": 20971520}}, {\"has_pii\": true}]}"
},
{
"text": "Find tiff files larger than 20MB without PII",
"mql": "{\"$and\": [{\"extension\": \"tiff\"}, {\"size\": {\"$gt\": 20971520}}, {\"has_pii\": false}]}"
},
{
"text": "Find usd files larger than 50KB with PII",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$gt\": 51200}}, {\"has_pii\": true}]}"
},
{
"text": "Find usd files larger than 50KB without PII",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$gt\": 51200}}, {\"has_pii\": false}]}"
},
{
"text": "Find usd files larger than 512 bytes with PII",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$gt\": 512}}, {\"has_pii\": true}]}"
},
{
"text": "Find usd files larger than 512 bytes without PII",
"mql": "{\"$and\": [{\"extension\": \"usd\"}, {\"size\": {\"$gt\": 512}}, {\"has_pii\": false}]}"
},
{
"text": "Find exr files larger than 512 bytes with PII",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$gt\": 512}}, {\"has_pii\": true}]}"
},
{
"text": "Find exr files larger than 512 bytes without PII",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$gt\": 512}}, {\"has_pii\": false}]}"
},
{
"text": "Find exr files larger than 100KB with PII",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$gt\": 102400}}, {\"has_pii\": true}]}"
},
{
"text": "Find exr files larger than 100KB without PII",
"mql": "{\"$and\": [{\"extension\": \"exr\"}, {\"size\": {\"$gt\": 102400}}, {\"has_pii\": false}]}"
},
{
"text": "Find jpg files larger than 512 bytes with PII",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$gt\": 512}}, {\"has_pii\": true}]}"
},
{
"text": "Find jpg files larger than 512 bytes without PII",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$gt\": 512}}, {\"has_pii\": false}]}"
},
{
"text": "Find jpg files larger than 50KB with PII",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$gt\": 51200}}, {\"has_pii\": true}]}"
},
{
"text": "Find jpg files larger than 50KB without PII",
"mql": "{\"$and\": [{\"extension\": \"jpg\"}, {\"size\": {\"$gt\": 51200}}, {\"has_pii\": false}]}"
},
{
"text": "Find png files larger than 50MB with PII",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$gt\": 52428800}}, {\"has_pii\": true}]}"
},
{
"text": "Find png files larger than 50MB without PII",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$gt\": 52428800}}, {\"has_pii\": false}]}"
},
{
"text": "Find png files larger than 50KB with PII",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$gt\": 51200}}, {\"has_pii\": true}]}"
},
{
"text": "Find png files larger than 50KB without PII",
"mql": "{\"$and\": [{\"extension\": \"png\"}, {\"size\": {\"$gt\": 51200}}, {\"has_pii\": false}]}"
},
{
"text": "Find usd files in /pix-images/USD/ larger than 2MB",
"mql": "{\"$and\": [{\"name\": {\"$regex\": \"^/pix-images/USD/\"}}, {\"extension\": \"usd\"}, {\"size\": {\"$gt\": 2097152}}]}"
},
{
"text": "Find usd files in /pix-images/USD/ larger than 10KB",
"mql": "{\"$and\": [{\"name\": {\"$regex\": \"^/pix-images/USD/\"}}, {\"extension\": \"usd\"}, {\"size\": {\"$gt\": 10240}}]}"
},
{
"text": "Find exr files in /pix-images/EXR/ larger than 20MB",
"mql": "{\"$and\": [{\"name\": {\"$regex\": \"^/pix-images/EXR/\"}}, {\"extension\": \"exr\"}, {\"size\": {\"$gt\": 20971520}}]}"
},
{
"text": "Find exr files in /pix-images/EXR/ larger than 100 bytes",
"mql": "{\"$and\": [{\"name\": {\"$regex\": \"^/pix-images/EXR/\"}}, {\"extension\": \"exr\"}, {\"size\": {\"$gt\": 100}}]}"
},
{
"text": "How many txt files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"txt\"}}"
},
{
"text": "Count txt files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"txt\"}}"
},
{
"text": "What is the total number of txt files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"txt\"}}"
},
{
"text": "How many tiff files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"tiff\"}}"
},
{
"text": "Count tiff files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"tiff\"}}"
},
{
"text": "What is the total number of tiff files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"tiff\"}}"
},
{
"text": "How many usd files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"usd\"}}"
},
{
"text": "Count usd files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"usd\"}}"
},
{
"text": "What is the total number of usd files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"usd\"}}"
},
{
"text": "How many exr files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"exr\"}}"
},
{
"text": "Count exr files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"exr\"}}"
},
{
"text": "What is the total number of exr files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"exr\"}}"
},
{
"text": "How many jpg files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"jpg\"}}"
},
{
"text": "Count jpg files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"jpg\"}}"
},
{
"text": "What is the total number of jpg files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"jpg\"}}"
},
{
"text": "How many png files exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"png\"}}"
},
{
"text": "Count png files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"png\"}}"
},
{
"text": "What is the total number of png files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"extension\": \"png\"}}"
},
{
"text": "What extensions exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"extension\"}"
},
{
"text": "List all unique extensions",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"extension\"}"
},
{
"text": "Show distinct extensions",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"extension\"}"
},
{
"text": "List all unique file types",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"extension\"}"
},
{
"text": "Show distinct file types",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"extension\"}"
},
{
"text": "What formats exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"format\"}"
},
{
"text": "List all unique formats",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"format\"}"
},
{
"text": "Show distinct formats",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"format\"}"
},
{
"text": "What change types exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"change_type\"}"
},
{
"text": "List all unique change types",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"change_type\"}"
},
{
"text": "Show distinct change types",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"change_type\"}"
},
{
"text": "What permission types exist",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"permissions.value\"}"
},
{
"text": "List all unique permission types",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"permissions.value\"}"
},
{
"text": "Show distinct permission types",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"distinct\", \"field\": \"permissions.value\"}"
},
{
"text": "How many files are there in total",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {}}"
},
{
"text": "Count all files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {}}"
},
{
"text": "What is the total file count",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {}}"
},
{
"text": "Count files with errors",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"errors\": {\"$ne\": null}}}"
},
{
"text": "How many processed files are there",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"processed\": true}}"
},
{
"text": "Count unprocessed files",
"mql": "{\"collection\": \"EntityViews\", \"method\": \"count\", \"filter\": {\"processed\": false}}"
},
{
"text": "Give me all the data",
"mql": "{}"
},
{
"text": "What do we have",
"mql": "{}"
},
{
"text": "Show the full catalog",
"mql": "{}"
},
{
"text": "Display all records",
"mql": "{}"
},
{
"text": "Find all photos of food",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(food|burger|chicken|salad|dinner|fruit).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show me nature photos",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*(mountain|field|ocean|sunset|sunrise|forest|garden|lake|landscape).*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find all the Alabama files",
"mql": "{\"name\": {\"$regex\": \".*Alabama.*\", \"$options\": \"i\"}}"
},
{
"text": "Show files about national parks",
"mql": "{\"name\": {\"$regex\": \".*National_Park.*\", \"$options\": \"i\"}}"
},
{
"text": "Get all confidential files",
"mql": "{\"name\": {\"$regex\": \".*confidential.*\", \"$options\": \"i\"}}"
},
{
"text": "Find files related to Industrial Light and Magic",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Copyright\", \"value\": {\"$regex\": \".*Industrial Light.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show large image files",
"mql": "{\"$and\": [{\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}, {\"size\": {\"$gt\": 5242880}}]}"
},
{
"text": "Find tiny files",
"mql": "{\"size\": {\"$lt\": 1024}}"
},
{
"text": "Show huge files",
"mql": "{\"size\": {\"$gt\": 52428800}}"
},
{
"text": "Get medium sized files",
"mql": "{\"$and\": [{\"size\": {\"$gte\": 1048576}}, {\"size\": {\"$lte\": 10485760}}]}"
},
{
"text": "Find all sensitive files that are large",
"mql": "{\"$and\": [{\"has_pii\": true}, {\"size\": {\"$gt\": 1048576}}]}"
},
{
"text": "Show unprocessed files with errors",
"mql": "{\"$and\": [{\"processed\": false}, {\"errors\": {\"$ne\": null}}]}"
},
{
"text": "Find processed images without PII",
"mql": "{\"$and\": [{\"extension\": {\"$in\": [\"jpg\", \"png\", \"tiff\", \"exr\"]}}, {\"processed\": true}, {\"has_pii\": false}]}"
},
{
"text": "What 3D models do we have",
"mql": "{\"extension\": \"usd\"}"
},
{
"text": "Show all photographs",
"mql": "{\"extension\": {\"$in\": [\"jpg\", \"png\"]}}"
},
{
"text": "Find HDR images",
"mql": "{\"extension\": \"exr\"}"
},
{
"text": "Get all scanned documents",
"mql": "{\"extension\": \"tiff\"}"
},
{
"text": "Find the Golden Gate image",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*Golden Gate.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Show files about bridges",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*bridge.*\", \"$options\": \"i\"}}}}"
},
{
"text": "Find files with stars in the description",
"mql": "{\"content_attributes\": {\"$elemMatch\": {\"key\": \"Image Description\", \"value\": {\"$regex\": \".*star.*\", \"$options\": \"i\"}}}}"
}
]