useFetch(`/api/user/${userId}`) it'll give me the base object and if I want to include extra data like their posts I would call useFetch(`/api/user/${userId}`, { query: { includePosts: true }) and I want that response to be typed to include the includePosts key and that it exists