OBJECT

LensField

Lens Fields contain extra information based on an underlying datasource field

link GraphQL Schema definition

  • type LensField {
  • # Unique identifier used by the metadata API. Not the same as the numeric ID used
  • # on server
  • id: ID!
  • # Name of field shown locally in Ask Data. If null or empty, use name inherited
  • # from datasource field.
  • name: String
  • # Description of field shown in Ask Data. If null or empty, use description
  • # inherited from datasource field.
  • description: String
  • # Underlying datasource field this lens field is based on
  • datasourceField: Field!
  • # The Lens which contains this lens field
  • containingLens: Lens
  • }

link Require by