You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Getting Resource Details may have long response times.
Because currently qurery command like below
SELECT*,
(SELECT*,
(->belong->subject.id)[0] AS belong_subject,
(->belong->subject.name)[0] AS subject_name
FROM tag
WHERE->tagging->resource.id CONTAINS $parent.id
) AS tags
FROM resource
WHERE id == $id"
We use subquery to get subject data.
There may be have better way, but currently, I can't figure out
Also, I don't have enough data can confirm this query is slow when large data.
Possible Solution
None
The text was updated successfully, but these errors were encountered:
But, I've encountered the date time convert error.
The error like below, I've no clue how to solve it.
Therefore, this work will be postponed when I know how to fixed it.
```
error: "invalid type: string \"2023-09-01T23:35:43.098762336Z\", expected a unix timestamp tuple"
```
## Related Issue
#3
Is there an existing issue for this?
Description
Getting
Resource
Details may have long response times.Because currently qurery command like below
We use
subquery
to get subject data.There may be have better way, but currently, I can't figure out
Also, I don't have enough data can confirm this query is slow when large data.
Possible Solution
None
The text was updated successfully, but these errors were encountered: