Created
July 16, 2018 10:47
-
-
Save sgrove/2033ea3a81dfa6e7024ed6b5b7b893c6 to your computer and use it in GitHub Desktop.
Example Descuri (URLHound?) Queries
This file contains 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
{ | |
descuri(url: "https://news.ycombinator.com/user?id=tlrobinson") { | |
twitter { | |
links | |
} | |
youTube { | |
uri | |
} | |
other { | |
uri | |
descuri { | |
twitter { | |
links | |
} | |
youTube { | |
uri | |
} | |
} | |
} | |
} | |
} | |
{ | |
descuri(url: "https://news.ycombinator.com/user?id=dwwoelfel") { | |
twitter { | |
links | |
} | |
youTube { | |
uri | |
} | |
other { | |
uri | |
descuri { | |
twitter { | |
links | |
} | |
youTube { | |
uri | |
} | |
gitHub { | |
uri | |
} | |
stackoverflow { | |
uri | |
} | |
Facebook { | |
uri | |
} | |
discord { | |
uri | |
} | |
} | |
} | |
} | |
} |
This file contains 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
{ | |
"data": { | |
"descuri": { | |
"twitter": { | |
"links": [ | |
"tlrobinson" | |
] | |
}, | |
"youTube": [], | |
"other": [ | |
{ | |
"uri": "http://tlrobinson.net/", | |
"descuri": { | |
"twitter": { | |
"links": [ | |
"tlrobinson" | |
] | |
}, | |
"youTube": [ | |
{ | |
"uri": "https://www.youtube.com/watch?v=SKMs-84UkPw" | |
} | |
] | |
} | |
}, | |
{ | |
"uri": "http://www.metabase.com/", | |
"descuri": { | |
"twitter": { | |
"links": [ | |
"metabase" | |
] | |
}, | |
"youTube": [] | |
} | |
}, | |
{ | |
"uri": "http://www.crunchbase.com/company/280-north", | |
"descuri": { | |
"twitter": { | |
"links": [ | |
"cappuccino", | |
"crunchbase" | |
] | |
}, | |
"youTube": [] | |
} | |
}, | |
{ | |
"uri": "http://www.cappuccino-project.org/", | |
"descuri": { | |
"twitter": { | |
"links": [ | |
"cappuccino" | |
] | |
}, | |
"youTube": [] | |
} | |
}, | |
{ | |
"uri": "https://keybase.io/tlrobinson;", | |
"descuri": { | |
"twitter": { | |
"links": [] | |
}, | |
"youTube": [] | |
} | |
}, | |
{ | |
"uri": "https://keybase.io/tlrobinson/sigs/ACUCWanol3C8qekzbGJuwxU_JUBrzYqNSS_GdkgphDI", | |
"descuri": { | |
"twitter": { | |
"links": [ | |
"tlrobinson" | |
] | |
}, | |
"youTube": [] | |
} | |
} | |
] | |
} | |
} | |
} |
This file contains 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
{ | |
"data": { | |
"descuri": { | |
"twitter": { | |
"links": [ | |
"danielwoelfel" | |
] | |
}, | |
"youTube": [], | |
"other": [ | |
{ | |
"uri": "https://dwwoelfel.github.io/", | |
"descuri": { | |
"twitter": { | |
"links": [ | |
"danielwoelfel" | |
] | |
}, | |
"youTube": [], | |
"gitHub": [ | |
{ | |
"uri": "https://github.com/dwwoelfel" | |
} | |
], | |
"stackoverflow": [], | |
"Facebook": [], | |
"discord": [] | |
} | |
} | |
] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment