在SDL中使用枚举作为查询参数的graphql语法是什么?
schema {
query: Query
}
type Query {
getWordsCountByLanguage (language: LanguageIso): [WordCount]
}
enum LanguageIso {
AA
AB
}
解析以上架构会引发错误,Expected type 'language' to be a GraphQLInputType, but it wasn't!
定义包含枚举的输入类型将导致类似的错误。
在SDL中似乎无法使用枚举作为查询参数。