Used to specify if the cache operation should not be broadcast.
Operation will not be broadcast if it is set to true as shown in this following example.
inMemoryStore.write({ // Since this is true, this operations will not be broadcast. [shouldNotBroadcastSymbol]:true, query:gql('query { currentUser: { id } }'), result: { currentUser: { id :2 } } })
Used to specify if the cache operation should not be broadcast. Operation will not be broadcast if it is set to true as shown in this following example.