Laravel 灯塔 JSON 类型
Laravel lighthouse JSON type
如何将 JSON
类型添加到灯塔?
我看过这个包,但我不知道如何使用它,也没有任何可用的文档:https://github.com/mll-lab/graphql-php-scalars
安装后,在 schema.graphql
中定义要使用的每个标量,例如:
scalar JSON @scalar(class: "MLL\GraphQLScalars\JSON")
# Then just use it, like:
type User {
id: ID!
meta: JSON!
}
如何将 JSON
类型添加到灯塔?
我看过这个包,但我不知道如何使用它,也没有任何可用的文档:https://github.com/mll-lab/graphql-php-scalars
安装后,在 schema.graphql
中定义要使用的每个标量,例如:
scalar JSON @scalar(class: "MLL\GraphQLScalars\JSON")
# Then just use it, like:
type User {
id: ID!
meta: JSON!
}