datascript

oly 2021-09-09T07:40:54.017400Z

anyone know if I can search a sub vector so given i have this data in the db

{:title "hello"
 :tags ["one" "two" "three"]}
Can i build a where that will return all entities with tags of two ? I basically want to use some on tags in essence.

lilactown 2021-09-09T17:37:57.018300Z

[:find ?e
 :where
 [?e :tags "two"]]
? I think that you'll have to mark :tags as multi cardinality in your schema