如何使用GraphQL Client Extensions传递布尔参数?

时间:2019-06-24 12:58:57

标签: c# graphql

我在应用程序中使用了GraphQL Client Extension(https://github.com/charlesdevandiere/graphql-client-extensions),我需要传递布尔参数。

我的查询如下:

var query = new Query<Orders>("orders").AddArguments(new { imported = true }).AddField(h => h.total);

导致此错误:

InvalidDataException:查询参数不受支持,找不到类型:System.Boolean

0 个答案:

没有答案