relay-connection-handler-plus
v0.1.2
Published
Relay connection handler with additional functionality
Downloads
39,831
Readme
Relay Connection Handler Plus!
Relay connection handler with additional functionality.
Usage
import ConnectionHandler from 'relay-connection-handler-plus';
import { Environment } from 'relay-runtime';
function handlerProvider(handle) {
switch (handle) {
case 'connection':
return ConnectionHandler;
default:
throw new Error(`no handler configured for ${handle}`);
}
}
const environment = new Environment({
handlerProvider,
/* ... */
});
Relay Connection Handler Plus! provides an enhanced connection handler that can be used in place of the default connection handler.
This connection handler exposes an additional getConnections
method. This method allows getting all connections for a connection key, per facebook/relay#1861:
const connections = ConnectionHandler.getConnections(record, connectionKey);
The getConnections
method also allows getting a subset of connections for a given connection key that were fetched with args matching a filter function. For example, it can be used to get all connections loaded with color: "red"
, regardless of the other arguments on the connection:
const connections = ConnectionHandler.getConnections(
record,
connectionKey,
({ color }) => color === 'red',
);