This module contains types used to annotate top-level queries which can be
built up using functions in code generated by the graphqelm
command line tool
and sent using functions in the Graphqelm.Http
module.
Type for top-level mutations which can be sent using functions
from Graphqelm.Http
.
Type for top-level queries which can be sent using functions
from Graphqelm.Http
.
Type for top-level mutations which can be sent using functions
from Graphqelm.Http
.
module Graphqelm.Operation exposing (RootMutation, RootQuery, RootSubscription)
{-| This module contains types used to annotate top-level queries which can be
built up using functions in code generated by the `graphqelm` command line tool
and sent using functions in the `Graphqelm.Http` module.
@docs RootMutation, RootQuery, RootSubscription
-}
{-| Type for top-level queries which can be sent using functions
from `Graphqelm.Http`.
-}
type RootQuery
= RootQuery
{-| Type for top-level mutations which can be sent using functions
from `Graphqelm.Http`.
-}
type RootMutation
= RootMutation
{-| Type for top-level mutations which can be sent using functions
from `Graphqelm.Http`.
-}
type RootSubscription
= RootSubscription