import { queryOptions } from "@tanstack/react-query"; import { getComments } from "../api"; export const getCommentsQueryOptions = (pluginSlug: string) => { return queryOptions({ queryKey: ['comments', pluginSlug], queryFn: () => getComments(pluginSlug), }); };