From d77e837faad44d217e4aa9900adb2a016f4a9e57 Mon Sep 17 00:00:00 2001 From: Erwin Rooijakkers Date: Wed, 23 Mar 2022 17:12:07 +0100 Subject: [PATCH] Add ChunkedSeq concrete type to protocol Solves https://github.com/district0x/graphql-query/issues/9 --- src/graphql_query/core.cljc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/graphql_query/core.cljc b/src/graphql_query/core.cljc index 290e5dd..d1ddb94 100644 --- a/src/graphql_query/core.cljc +++ b/src/graphql_query/core.cljc @@ -58,6 +58,8 @@ (arg->str [arg] (str "{" (arguments->str arg) "}")) PersistentVector (arg->str [arg] (sequential->str arg)) + ChunkedSeq + (arg->str [arg] (sequential->str arg)) IndexedSeq (arg->str [arg] (sequential->str arg)) LazySeq