( user?: LoggedUser, feedId?: string, )
| 14 | import { gqlClient } from '../graphql/common'; |
| 15 | |
| 16 | export const getFeedSettingsQueryKey = ( |
| 17 | user?: LoggedUser, |
| 18 | feedId?: string, |
| 19 | ): string[] => [user?.id, RequestKey.FeedSettings, feedId]; |
| 20 | |
| 21 | export interface FeedSettingsReturnType { |
| 22 | tagsCategories: TagCategory[]; |
no outgoing calls
no test coverage detected