我正在尝试在我的graphql实现中接收JSON字符串,但是由于定义为处理JSON的自定义标量,总是会出错。
我已经定义了一个自定义标量,以正确地将JSON序列化为长生不老药图。在代码到达自定义标量的解析阶段之前,我收到错误消息,指出数据类型无效。我正在尝试使用https://github.com/absinthe-graphql/absinthe/wiki/Scalar-Recipes#json-using-jason创建标量,但是我已经修改为使用Poison而不是Jason。
我使用我创建的:json标量类型的苦艾酒变种器。
@desc "Update user"
field :update_user, type: :user do
arg(:email, :string)
arg(:password, :string)
arg(:first_name, :string)
arg(:last_name, :string)
arg(:age, :integer)
arg(:client_store, :json)
resolve(handle_errors(&Resolvers.User_Resolver.update_user/3))
end
我的标量定义和graphql模式定义
scalar :json, name: "Json" do
description("""
The `Json` scalar type represents arbitrary json string data, represented as UTF-8
character sequences. The Json type is most often used to represent a free-form
human-readable json string.
""")
serialize(&encode/1)
parse(&decode/1)
end
# @spec decode(Absinthe.Blueprint.Input.String.t) :: {:ok, :string} | :error
# @spec decode(Absinthe.Blueprint.Input.Null.t) :: {:ok, nil}
defp decode(%Absinthe.Blueprint.Input.String{value: value}) do
Logger.info "decoded input value:"
case Poison.decode(value) do
{:ok, result} -> {:ok, result}
_ -> :error
end
end
defp decode(%Absinthe.Blueprint.Input.Null{}) do
{:ok, nil}
end
defp decode(_) do
:error
end
defp encode(value), do: value
object :user do
field(:id, :id)
field(:email, :string)
field(:password, :string)
field(:first_name, :string)
field(:last_name, :string)
field(:age, :integer)
field(:client_store, :json)
end
发送以下查询时:
mutation updateUser{
updateUser(client_store: "{"key":"value"}"){
id
}
}
我收到一个syntax error before: \"\\\":\\\"\"
mutation updateUser{
updateUser(client_store: "hello"){
id
}
}
我收到一个"Argument \"client_store\" has invalid value \"hello\"
通过Phoenix.ConnTest
通过单元测试发送GraphQL查询
query = """
mutation updateUser{
updateUser(client_store: "{\"key\":\"value\"}"){
id
}
}
"""
res =
context.conn
|> put_req_header("content-type", "text")
|> put_req_header("authorization", token)
|> post("/api", query)
答案 0 :(得分:0)
问题在于您的突变,您需要对字符串中的引号进行转义,如下所示:
mutation updateUser{
updateUser(client_store: "{\"key\": \"value\"}"){
id
}
}
否则,解释是第二个引号引起了字符串的结尾,因此您基本上拥有字符串"{"
后跟key":"value"}"
,这在语法上是无效的。
请注意,在单元测试中发送突变时,您已经将突变定义为字符串,因此您需要进一步转义引号:
query = """
mutation updateUser{
updateUser(client_store: "{\\\"key\\\":\\\"value\\\"}"){
id
}
}
"""
一开始可能很难理解,但是打印出来更清晰:
iex(1)> """
...(1)> mutation updateUser{
...(1)> updateUser(client_store: "{\"key\":\"value\"}"){
...(1)> id
...(1)> }
...(1)> }
...(1)> """ |> IO.puts()
mutation updateUser{
updateUser(client_store: "{"key":"value"}"){
id
}
}
iex(2)> """
...(2)> mutation updateUser{
...(2)> updateUser(client_store: "{\\\"key\\\":\\\"value\\\"}"){
...(2)> id
...(2)> }
...(2)> }
...(2)> """ |> IO.puts()
mutation updateUser{
updateUser(client_store: "{\"key\":\"value\"}"){
id
}
}
最后一个有效的原因是,当对字符串进行求值时,结果是原始的突变,该突变不包含引号。
答案 1 :(得分:0)
我正在这样测试
test "should get an existing key" do
{:ok, user} = Api.Auth.Users.create_user(%{name: "Test User"})
{:ok, app} = Api.Auth.Apps.create_app(%{owner_id: %{type: :user, id: user.id}, name: "name"})
{:ok, key} = Api.Auth.Keys.create_key(%{app_id: app.id})
%{resp_body: response} =
build_conn()
|> post("graphql", %{
"query" => """
query {
key(id: "#{key.id}") {
id
}
}
"""
})
%{"data" => %{"key" => %{"id" => id}}} = Jason.decode!(response)
assert key.id == id
end
end