Giter VIP home page Giter VIP logo

gql_websocket_link's Introduction

MIT License PRs Welcome Watch on GitHub Star on GitHub Watch on GitHub Discord

GQL WebSocket link to execute subscriptions as well as mutations & queries against a GraphQL backend. This link support autoReconnect and will resubscribe after reconnecting.

Usage

A simple usage example:

import "package:gql_link/gql_link.dart";
import "package:gql_websocket_link/gql_websocket_link.dart";

void main () {
  final link = Link.from([
    // SomeLink(),
    WebSocketLink("ws://<GRAPHQL_SERVER_ENDPOINT>/graphql"),
  ]);
}

Make sure you have WebSocket transport supported on your GraphQL server.

Features and bugs

Please file feature requests and bugs at the GitHub.

Attribution

This code was adapted with minor changed from the graphql-flutter repo

gql_websocket_link's People

Contributors

timonbozzapps avatar

Watchers

 avatar

gql_websocket_link's Issues

Need help - Subscriptions

Hello
I need some helps to implement subscription.
I try to implement something like that:

void waitConfirmations(
    String address, {
    onResult,
    onError,
    onCancel,
    onStart,
    onAbort,
  }) {
    String host =
        Uri.parse(endpoint!).host + ':' + Uri.parse(endpoint!).port.toString();

    AbsintheSocket _socket =
        AbsintheSocket('ws://' + host + '/socket/websocket');

    final String operation =
        """subscription { transactionConfirmed(address: "$address") { nbConfirmations } }""";

    Observer _observer = Observer(
      onAbort: onAbort,
      onCancel: onCancel,
      onError: onError,
      onResult: onResult,
      onStart: onStart,
    );

    Notifier notifier =
        _socket.send(GqlRequest(operation: operation), 'notifierKey');
    notifier.observe(_observer);
  }

could you tell me if your project could do something like that ?
thx

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.