Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@robinmetral
Created April 21, 2019 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinmetral/2525168f63c73f8bc0d6dcc0f58490df to your computer and use it in GitHub Desktop.
Save robinmetral/2525168f63c73f8bc0d6dcc0f58490df to your computer and use it in GitHub Desktop.
Query Twemoji with GitHub GraphQL API V4
{
repository(owner: "twitter", name: "twemoji") {
... on Repository {
object(expression: "gh-pages:2/svg/1f310.svg") {
... on Blob {
text
}
}
}
}
}
@robinmetral
Copy link
Author

Queries the SVG path for globe with meridians (U+1f310)

Try it out in the GitHub GraphQL Explorer.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment