summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--kolam/http.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/kolam/http.scm b/kolam/http.scm
index b4d4beb..2098ef1 100644
--- a/kolam/http.scm
+++ b/kolam/http.scm
@@ -55,7 +55,7 @@ response and a response body. This function is suitable for use with
 run-server from guile's (web server)."
   (let ((evaluator (graphql-evaluator schema)))
     (lambda (request body)
-      (values '((content-type application-json))
+      (values '((content-type application/graphql+json))
               (scm->json-string
                (match (graphql-string->scm
                        (assoc-ref (graphql-request-alist request body)