Questions tagged [graphql-codegen]
182 questions
-2
votes
1 answer
Apollo Angular Services
Iam using grapqhl-codegen to convert my queries into injectable Services, Everything works like a charm, besides, I cannot updateQuerys anymore, since I only have services and I cannot pass the service into the updatesQuerys array. I want the…

Amnesie
- 41
- 5
-2
votes
2 answers
Can a typescript type be created that concatenates two fields?
I would like to do something like this:
interface Apple {
type: string;
color: string;
}
type RealApple = WithConcat;
So that the resulting type of RealApple is:
type RealApple = {
type: string;
color: string;
…