Skip to content

Instantly share code, notes, and snippets.

@davisp
Last active April 22, 2021 16:08
Show Gist options
  • Save davisp/b69ce38e4708e86ae1c1274ef3174a61 to your computer and use it in GitHub Desktop.
Save davisp/b69ce38e4708e86ae1c1274ef3174a61 to your computer and use it in GitHub Desktop.
>> {"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