Here are two new root queries for GraphQL, both needed for my Alexa skill:
channelSoundex(name: ""): this query will return a channel where the channel's name is the best soundex match to the name supplied as an argument. For example, supplying codebasealfa as the argument should return the channel information for codebasealpha. The name passed in should be in lowercase and have all spaces and periods removed.
liveChannels: returns a list of channels that are currently live (on Twitch only currently)
The Alexa skill will use these queries to find channels based upon voice input, and to inform the skill user of channels that are currently live.
Here are two new root queries for GraphQL, both needed for my Alexa skill:
The Alexa skill will use these queries to find channels based upon voice input, and to inform the skill user of channels that are currently live.