Previously, queries that check against JSON columns couldn't be used alongside this adapter. With the changes in this PR, we can now do this. see an example below:
from(e in Model.Employee)
|> where([e], e.metadata["twitter"] == "@andrew_fuller")
|> Repo.one!()
Alongside these changes is a contribution from @evadne to support the delete_all function on the adapter.
Previously, queries that check against JSON columns couldn't be used alongside this adapter. With the changes in this PR, we can now do this. see an example below:
Alongside these changes is a contribution from @evadne to support the
delete_all
function on the adapter.