Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm using an introspection to query InputTypes to generically create a form to alter an entity.

(我正在使用内省来查询InputType,以一般性地创建表单来更改实体。)

query introspection($updateInputName: String!) {
  __type(name: $updateInputName) {
    inputFields {
      name
      type {
        name
        kind
        ofType {
          kind
          name
        }
      }
    }
  }
}

As far as I understood the type.kind information should return NON_NULL for required/non-null fields.

(据我了解,type.kind信息对于必填/非空字段应该返回NON_NULL。)

But I receive SCALAR, ...

(但是我收到了SCALAR,...)

How can I get the information about the required fields of the queried inputField?

(如何获取有关查询的inputField的必填字段的信息?)

  ask by Fabian translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
953 views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...