gql_dedupe_link 4.0.0 
gql_dedupe_link: ^4.0.0 copied to clipboard
GQL Link to deduplicate identical in-flight execution requests
A GQL Link to deduplicate in-flight requests.
By default only queries and subscriptions are deduplicated. Mutations are always forwarded.
Usage #
A simple usage example:
import "package:gql_link/gql_link.dart";
import "package:gql_dedupe_link/gql_dedupe_link.dart";
void main () {
  final link = Link.from([
    // SomeLink(),
    DedupeLink(),
    // SomeTerminatingLink(),
  ]);
}
Features and bugs #
Please file feature requests and bugs at the GitHub.