@dillonkearns/elm-graphql
Version:
<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">
15 lines (10 loc) • 318 B
Flow
// @flow
import {getOperationType} from "@jumpn/utils-graphql";
import type {GqlRequest, Notifier} from "../types";
const create = (request: GqlRequest<any>): Notifier<*> => ({
request,
observers: [],
operationType: getOperationType(request.operation),
subscriptionId: undefined
});
export default create;