在GraphQL中验证属性

时间:2017-08-29 07:28:34

标签: graphql graphiql

input MessageInput {
  content: String
  author: String
}

type Message {
  id: ID!
  content: String
  author: String
}

type Query {
  getMessage(id: ID!): Message
}

type Mutation {
  createMessage(input: MessageInput): Message
}

邮件内容的最大长度为255.如何记录最大长度为255个字符?如何/在何处进行此验证?

1 个答案:

答案 0 :(得分:0)

在服务器端,您将在解析器中验证createMessage突变。

我还建议进行某种客户端验证!