apollo-state-sync - API Reference (Users)
    Preparing search index...

    Variable shouldNotBroadcastSymbolConst

    shouldNotBroadcastSymbol: typeof shouldNotBroadcastSymbol = ...

    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.

    const inMemoryStore = new InMemoryCacheSynced(inMemoryCacheConfig)

    inMemoryStore.write({
    // Since this is true, this operations will not be broadcast.
    [shouldNotBroadcastSymbol]: true,
    query: gql('query { currentUser: { id } }'),
    result: {
    currentUser: { id : 2 }
    }
    })