OBJECT

SupplementalField

link GraphQL Schema definition

  • type SupplementalField {
  • # Whether the field is Mandatory, Conditional, or Optional
  • required: RequiredDesignation!
  • # The name of the supplemental field
  • name: String
  • # INLT code for field used in the API (see PGAInput)
  • code: String!
  • # INLT type used in GraphQL schema
  • type: String!
  • # Whether the field is a list of types
  • list: Boolean
  • # If type is not a scalar, the sub-fields of the type
  • fields: [SupplementalField!]
  • # Description of field, including logic for conditional requirement
  • description: String
  • }