function sharedUpdater(store, user, deletedId) {
  const userProxy = store.get(user.id);

  const connection = _relayRuntime.ConnectionHandler.getConnection(userProxy, 'EnsayoList_Ensayos');
  if (connection) {
    _relayRuntime.ConnectionHandler.deleteNode(connection, deletedId);
  }
}
function sharedUpdater(store, user, EnsayosEdge) {
  const userProxy = store.get(user.id)

  const connection = ConnectionHandler.getConnection(userProxy, 'EnsayoList_Ensayos')
  if (connection) {
    ConnectionHandler.insertEdgeAfter(connection, EnsayosEdge)
  }
}
function sharedUpdater(store, user, EnsayosEdge) {
  const userProxy = store.get(user.id);

  const connection = _relayRuntime.ConnectionHandler.getConnection(userProxy, 'EnsayoList_Ensayos');
  if (connection) {
    _relayRuntime.ConnectionHandler.insertEdgeAfter(connection, EnsayosEdge);
  }
}
function sharedUpdater( store, user, TranslaticiarumsEdge ) {
  const userProxy = store.get( user.id )

  const connection = ConnectionHandler.getConnection(
    userProxy,
    'TranslaticiarumList_Translaticiarums',
  )
  if ( connection ) {
    ConnectionHandler.insertEdgeAfter( connection, TranslaticiarumsEdge )
  }
}
function sharedUpdater( store, user, deletedId ) {
  const userProxy = store.get( user.id )

  const connection = ConnectionHandler.getConnection(
    userProxy,
    'TranslaticiarumList_Translaticiarums',
  )
  if ( connection ) {
    ConnectionHandler.deleteNode( connection, deletedId )
  }
}
function sharedUpdater( store, user, deletedId ) {
  const userProxy = store.get( user.id )

  const connection = ConnectionHandler.getConnection(
    userProxy,
    'InscriptioList_Inscriptios'
  )
  if ( connection ) {
    ConnectionHandler.deleteNode( connection, deletedId )
  }
}
Example #7
0
const sharedUpdater = (store, deletedId, userId) => {
  const viewerProxy = store.get('viewer-fixed');
  const connection = ConnectionHandler.getConnection(
    viewerProxy,
    'WebList_allWebs',
    {
      ...queryFilters(userId),
      orderBy: 'createdAt_ASC',
    },
  );
  // https://github.com/facebook/relay/issues/1808#issuecomment-304519883
  if (!connection) {
    // eslint-disable-next-line no-console
    console.warn('Undefined connection. Check getConnection arguments.');
  }
  ConnectionHandler.deleteNode(connection, deletedId);
};
['any','active'].forEach(function(status){
var connection=_relayRuntime.ConnectionHandler.getConnection(userProxy,'ToDoList_ToDos',{status:status});
if(connection){
_relayRuntime.ConnectionHandler.insertEdgeAfter(connection,ToDosEdge);
}
});
 ;['any', 'active', 'completed'].forEach(status => {
   const connection = ConnectionHandler.getConnection(userProxy, 'ToDoList_ToDos', { status })
   if (connection) {
     ConnectionHandler.deleteNode(connection, deletedId)
   }
 })