// A list of todosinjectQuery(() => ({ queryKey: ['todos'], ... }))
// Something else, whatever!injectQuery(() => ({ queryKey: ['something', 'special'], ... }))
// An individual todoinjectQuery(() => ({queryKey: ['todo', 5], ...}))
// An individual todo in a "preview" formatinjectQuery(() => ({queryKey: ['todo', 5, {preview: true}], ...}))
// A list of todos that are "done"injectQuery(() => ({queryKey: ['todos', {type: 'done'}], ...}))