Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
roryc89 committed Apr 12, 2024
1 parent 6aea82a commit 6271da7
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/GraphQL/Client/ToGqlString.purs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ module GraphQL.Client.ToGqlString

import Prelude

import Data.Argonaut.Decode (class DecodeJson)
import Data.Argonaut.Encode (class EncodeJson)
import Data.Array (fold, foldMap, intercalate, length, mapWithIndex)
import Data.Array as Array
import Data.Date (Date)
Expand All @@ -49,7 +47,7 @@ import Data.Map (Map)
import Data.Map as Map
import Data.Maybe (Maybe(..), isJust, maybe)
import Data.Monoid (guard, power)
import Data.Newtype (class Newtype, unwrap)
import Data.Newtype (unwrap)
import Data.String (codePointFromChar, fromCodePointArray, joinWith, toCodePointArray)
import Data.String.CodeUnits as String
import Data.String.Regex (split)
Expand All @@ -70,8 +68,6 @@ import GraphQL.Client.NullArray (NullArray)
import GraphQL.Client.Union (GqlUnion(..))
import GraphQL.Client.Variable (Var)
import GraphQL.Client.Variables (WithVars, getQuery)
import GraphQL.Hasura.Decode (class DecodeHasura)
import GraphQL.Hasura.Encode (class EncodeHasura)
import Heterogeneous.Folding (class FoldingWithIndex, class HFoldlWithIndex, hfoldlWithIndex)
import Type.Proxy (Proxy(..))
import Unsafe.Coerce (unsafeCoerce)
Expand Down Expand Up @@ -426,9 +422,6 @@ instance propToGqlArg ::
`List.Cons`
kvs

-- pre <> reflectSymbol prop <> ": " <> toGqlArgStringImpl a
-- where
-- pre = if str == "" then "" else str <> ", "
gqlArgStringRecord
:: forall r
. HFoldlWithIndex PropToGqlArg KeyVals { | r } KeyVals
Expand Down

0 comments on commit 6271da7

Please sign in to comment.