a moment ago I asked this question and now I have a follow up one :)
Please consider the following code:
import { ClassConstructor } from "class-transformer";
import { useQuery as useApolloQuery } from "@apollo/client";
class Book {
readonly many = "books" as const;
bookData: any;
}
export const useQueryWrapper = <T>(cls: ClassConstructor<T>, queryString) => {
return useApolloQuery<{ [cls.prototype.many]: T[] }>(queryString);
};
const { data } = useQueryWrapper(Book, "..."); // Book or any other class with a literal `many` prop
TS recognizes data as the following type:
const data: {} | undefined
I'd like TS to know that data has a property books
const data: {
books: Book[];
} | undefined
Is it possible?
This is possible with a combination of index access types and mapped types (playground):