mongodb和cubejs如何格式化时间类型的数据?
How to format time-type data with mongodb and cubejs?
我找到了关于此主题的 url:
- https://cube.dev/docs/types-and-formats#dimensions-formats
- https://cube.dev/docs/working-with-string-time-dimensions
我没有找到时间类型的格式。
所以我尝试使用 sql: PARSE_TIMESTAMP('%Y-%m-%d', date)
createdat: {
sql: `PARSE_TIMESTAMP('%Y-%m-%d',${CUBE}.\`createdAt\`)`,
type: `time`
},
它将return一个错误:
Error: Error: scalar function 'parse_timestamp' is not supported
createdat: {
sql: `DATE(${CUBE}.\`createdAt\`, '%Y-%m-%d')`,
type: `time`
},
谢谢
我找到了关于此主题的 url:
- https://cube.dev/docs/types-and-formats#dimensions-formats
- https://cube.dev/docs/working-with-string-time-dimensions
我没有找到时间类型的格式。
所以我尝试使用 sql: PARSE_TIMESTAMP('%Y-%m-%d', date)
createdat: {
sql: `PARSE_TIMESTAMP('%Y-%m-%d',${CUBE}.\`createdAt\`)`,
type: `time`
},
它将return一个错误:
Error: Error: scalar function 'parse_timestamp' is not supported
createdat: {
sql: `DATE(${CUBE}.\`createdAt\`, '%Y-%m-%d')`,
type: `time`
},
谢谢