如何使用 Lacinia Pedestal 设置 COR?

How to set CORs using Lacinia Pedestal?

我正在使用 Clojure 设置一个 lacinia-pedestal graphql 服务器,并尝试使用 apollo 通过客户端 javascript 代码访问它。但是,我无法访问本地主机上的 /graphql 端点,因为我试图从 COR 不允许的本地主机源 (localhost:3000) 访问它。如何使用 lacinia-pedestal 设置 COR?

这是服务器端代码(使用 lacinia 教程设置 https://lacinia.readthedocs.io/en/latest/tutorial/component.html

(ns project.server
  (:require [com.stuartsierra.component :as component]
            [com.walmartlabs.lacinia.pedestal :as lp]
            [io.pedestal.http :as http]))

(defrecord Server [schema-provider server]

  component/Lifecycle

  (start [this]
    (assoc this :server (-> schema-provider
                            :schema
                            (lp/service-map {:graphiql true})
                            http/create-server
                            http/start)))

  (stop [this]
    (http/stop server)
    (assoc this :server nil)))

(defn new-server
  []
  {:server (-> {}
               map->Server
               (component/using [:schema-provider]))})

客户端代码超级简单(使用Apollo):

const client = new ApolloClient({
  uri: "http://localhost:8888/graphql"
});

更新:我设法通过将我的 lacinia 基座服务地图与标准基座服务地图合并来解决这个问题。

 (start [this]
    (assoc this :server (-> schema-provider
                            :schema
                            (lp/service-map {:graphiql true})
                            (merge {::http/allowed-origins (constantly true)})
                            http/create-server
                            http/start)))