Question
I'm currently facing an issue in the project I'm working on where I have two different queries:
query Screen1() {
eventList: anEventQuery(…) { … }
}
query Screen2() {
eventList: someOtherEventQuery(…) { … }
}
Unfortunately, this leads to the generated Mock in my module ending up with only one of those two variants available.
Is there a way to do this short of ensuring that the top-level fields and aliases in my queries are unique?
Question
I'm currently facing an issue in the project I'm working on where I have two different queries:
Unfortunately, this leads to the generated Mock in my module ending up with only one of those two variants available.
Is there a way to do this short of ensuring that the top-level fields and aliases in my queries are unique?