在 GraphQL 架构中使用数字作为键?

2024-01-17

您可以使用 GraphQL Schema 语言在 GraphQL Schema 中使用数字作为键吗?即(这是一个小片段......)

type tax_code_allocation_country_KOR_states {
  "11": tax_code_allocation_state_tax_query
  "26": tax_code_allocation_state_tax_query
  "27": tax_code_allocation_state_tax_query
}

或者下面的,我意识到这是不正确的 JSON:

type tax_code_allocation_country_KOR_states {
  11: tax_code_allocation_state_tax_query
  26: tax_code_allocation_state_tax_query
  27: tax_code_allocation_state_tax_query
}

不可以,这是国家禁止的规格 https://graphql.github.io/graphql-spec/June2018/#sec-Names。可以在数字前添加下划线:

type tax_code_allocation_country_KOR_states {
  _11: tax_code_allocation_state_tax_query
  _26: tax_code_allocation_state_tax_query
  _27: tax_code_allocation_state_tax_query
}

或者根本不在类型级别上执行此操作,而是映射查询或简单地运行过滤器查询:

type tax_code_allocation_country_KOR_states {
  tax(code: 11): tax_code_allocation_state_tax_query
  tax(codes: [11, 26, 27]): [tax_code_allocation_state_tax_query]
}

# query subselection
{ _11: tax(code: 11), _26: tax(code: 26), _27: tax(code: 27) }
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

在 GraphQL 架构中使用数字作为键? 的相关文章

随机推荐