필드 지정하지 않은 경우

모두 표시됩니다.

- path: properties/active
  blocks:
  - type: query
    resource: mysql.qa
    sqlType: select
    sql: SELECT * FROM properties ORDER BY id ASC LIMIT 100

Screen Shot 2022-04-01 at 5.36.15 PM.png

필드 지정한 경우

지정한 필드만 표시됩니다.

- path: properties/active
  blocks:
  - type: query
    resource: mysql.qa
    sqlType: select
    sql: SELECT * FROM properties ORDER BY id ASC LIMIT 100
    ***columnOptions:
    - field: id
    - field: name
    - field: address***

Screen Shot 2022-04-01 at 5.35.31 PM.png

필드를 지정하고 레이블 입력

- path: properties/active
  blocks:
  - type: query
    resource: mysql.qa
    sqlType: select
    sql: SELECT * FROM properties ORDER BY id ASC LIMIT 100
    columnOptions:
    - field: id
    - field: name
      ***label: 업체명***
    - field: address
      ***label: 주소***

Screen Shot 2022-04-01 at 5.47.23 PM.png

지정한 원하는 필드만 바꾸고싶은 경우

전체 표시하고 옵션이 추가로 부분 적용됩니다.

- path: properties/active
  blocks:
  - type: query
    resource: mysql.qa
    sqlType: select
    sql: SELECT *  FROM properties ORDER BY id ASC LIMIT 100
    ***columnOptionsAppend: true***
    columnOptions:
    - field: id
    ***- field: name
      label: 업체명***
    - field: address