我在应用程序中使用了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