Maybe there is a better way to handle a situation where your graphql query is something like (and if there is please tell me!):
query myQuery($uniqId: string) {
genericResult(uniqId: $uniqId) {
// nope no id field available here, sorry
content {
...
}
__typename
}
}
{
data: {
genericResult: {
content: <someArray>,
__typename: 'GenericResult'