Select the types of activity you want to include in your feed.
1export const noteKeys = { 2 all: () => ['notes'] as const, 3 note: (id: string) => [...noteKeys.all(), id] as const, 4 bySembleUrl: (url: string) => [...noteKeys.all(), url], 5 infinite: () => [...noteKeys.all(), 'infinite'], 6};