Replies: 1 comment
-
Hi nckre👋, This joins task_text with tasks using task_id since text is in another table.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does someone have a good example on how to adapt the table filters for nested data?
e.g. consider the following schema
-Table 'tasks'
-id
-status
-Table 'task_text'
-id
-task_id
-text
-language
How could I do a DataTableFilterField for
task.text
when making a drizzle query likedb.findMany.tasks { with: text }
which returnstext
as an object insidetask
?In the cells I can easily render this with an accessor function, but struggling to combine this with filters.
Beta Was this translation helpful? Give feedback.
All reactions