Last active
March 26, 2018 21:05
-
-
Save thomsbg/ffea66bd800634c080ced7a8eff5b243 to your computer and use it in GitHub Desktop.
volume + sbn schema stitching
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
# in tower: | |
query { | |
volumeProjects(communityId: 441, q: "Hillary") { | |
name # from volume api | |
contributorIds # from volume api, chorus user ids of the video's "contributors" (not sure if this is a thing, just an example) | |
contributors { | |
fullName # from sbn api, able to be efficiently resolved by batching multiple user-by-ids queries. | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment