This project has retired. For details please refer to its Attic page.
Lens Server: QueryResultSetMetadata

QueryResultSetMetadata Data Type

Instantiates a new query result set metadata.

Properties
name data type description
columns array of array of ResultColumn The columns.
Properties inherited from ToYAMLString
fieldsToAppend array of array of FieldNameAndValue

Example

{
  "columns" : [ [ {
    "name" : "...",
    "type" : "BOOLEAN"
  }, {
    "name" : "...",
    "type" : "CHAR"
  } ], [ {
    "name" : "...",
    "type" : "CHAR"
  }, {
    "name" : "...",
    "type" : "NULL"
  } ] ],
  "fieldsToAppend" : [ [ {
    "name" : "...",
    "value" : { }
  }, {
    "name" : "...",
    "value" : { }
  } ], [ {
    "name" : "...",
    "value" : { }
  }, {
    "name" : "...",
    "value" : { }
  } ] ]
}