📜  graphql 模式中的 delcare 字符串数组 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:42.308000             🧑  作者: Mango

代码示例1
type Spy {
  # This spy's real name
  realName: String!
  # Any other names that this spy goes by
  aliases: [String!]
}