INPUT_OBJECT

StreamRecommendationsFilters

StreamRecommendationsFilters defines parameters which filter down stream recommendation results.

link GraphQL Schema definition

1input StreamRecommendationsFilters {
10
2# Stream recommendation results will only include streams with these category ids.
3# Clients can use this filtering option for flows where a user can select
4# categories to filter on.
5# The category IDs should be available from queries in the previous step of the
6# user flow.
7# Example: categoryIDs: ["513143", "33214"] where "513143" and "33214" are coming
8# from categories selected by the user in the previous page.
9categoryIDs: [ID!]
11}