higress
higress copied to clipboard
DeGraphQL 不支持GraphQLBigInt 类型
DeGraphQL 配置如下
endpoint: "/graphql"
namespace: "dev"
serviceName: "graphqlServer"
servicePort: 8000
serviceSource: "k8s"
timeout: 5000
gql: |
query ($id:GraphQLBigInt!){
test(filter: { id: { _eq: "$id" } }) { id } }
}
请求 为
curl -X GET -v "http://foo.bar.com/graphql?id=1"
发给server端的请求中没有带上变量id 的值