Last active
April 22, 2021 16:08
-
-
Save davisp/b69ce38e4708e86ae1c1274ef3174a61 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>> {"select": "@", "from": {"file": "data/emojis.jsonl"}, "where": "contains(@.name, 'woman') && contains(@.name, 'zombie')"} | |
{ | |
"results": [ | |
{ | |
"img": "https://github.githubassets.com/images/icons/emoji/unicode/1f9df-2640.png?v8", | |
"name": "zombie_woman" | |
} | |
] | |
} | |
>> {"select": "img", "from": {"file": "data/emojis.jsonl"}, "where": "contains(@.name, 'woman') && contains(@.name, 'zombie')"} | |
{ | |
"results": [ | |
"https://github.githubassets.com/images/icons/emoji/unicode/1f9df-2640.png?v8" | |
] | |
} | |
>> {"select": {"'my_img_url'": "img"}, "from": {"file": "data/emojis.jsonl"}, "where": "contains(@.name, 'woman') && contains(@.name, 'zombie')"} | |
{ | |
"results": [ | |
{ | |
"my_img_url": "https://github.githubassets.com/images/icons/emoji/unicode/1f9df-2640.png?v8" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment