const GET_QUESTION = gql `
query getQuestion($id:String!){
question(id:$id) {
id
text
title
}
isEditMode @client
}
`
I am running this above query where isEditMode is from Apollo Link State and in this situtation the cache is empty and therefore isEditMode is not defined in the cache so the whole query comes back undefined. Is this always the case with Apollo Batching. Solutions?