diff --git a/src/graphql_query/core.cljc b/src/graphql_query/core.cljc index b2b8b83..4666814 100644 --- a/src/graphql_query/core.cljc +++ b/src/graphql_query/core.cljc @@ -26,7 +26,7 @@ (apply str))) (defn escape-chars [s] - (clojure.string/escape s {\" "\\\""})) + (clojure.string/escape s {\" "\\\"" \\ "\\\\"})) (defn sequential->str "Given something that is sequential format it to be like a JSON array."