mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
Fix tag history date
This commit is contained in:
parent
75f5668887
commit
89b98ae77a
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ class TrendsDB {
|
||||||
getTagHistory({ tag, since, until, limit = 7, offset = 0 }: GetTagHistoryOpts) {
|
getTagHistory({ tag, since, until, limit = 7, offset = 0 }: GetTagHistoryOpts) {
|
||||||
return this.#db.query<string[]>(
|
return this.#db.query<string[]>(
|
||||||
`
|
`
|
||||||
SELECT inserted_at, COUNT(DISTINCT pubkey8), COUNT(*)
|
SELECT date(inserted_at), COUNT(DISTINCT pubkey8), COUNT(*)
|
||||||
FROM tag_usages
|
FROM tag_usages
|
||||||
WHERE tag = ? AND inserted_at >= ? AND inserted_at < ?
|
WHERE tag = ? AND inserted_at >= ? AND inserted_at < ?
|
||||||
GROUP BY date(inserted_at)
|
GROUP BY date(inserted_at)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue