6 ms·
yes, I have plans to try adding some query helpers eventually. One could imagine representing queries as compound terms, like: q(user(id=Id, name=like("Bob%"),
by tatut 2y ago
yes, I have plans to try adding some query helpers eventually.
One could imagine representing queries as compound terms, like:
q(user(id=Id, name=like("Bob%"), email=Email))
which would query, from user table and bind Id and Email for all matches.
I plan to experiment with something like that.