ENUM

UpdateChannelCategoryShelfError

The possible error returned.

link GraphQL Schema definition

1enum UpdateChannelCategoryShelfError {
2
3# The user making the update is not authorized to do so.
4FORBIDDEN
5
6# One or more of the category IDs in the input are invalid.
7INVALID_CATEGORY
8
9# The same category ID cannot be both shown and hidden.
10CANNOT_SHOW_AND_HIDE_CATEGORY
11}