We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attribute of composite tuple starting with colon is not working in js
A minimal reproduction is provided on stackblitz
const d = require('datascript') const db = d.db_with( d.empty_db({ 'a+b': { ':db/tupleAttrs': [':a', 'b'] } }), [{ ':a': 'A', b: 'B' }] ) console.log(d.q('[:find ?e ?a+b :where [?e "a+b" ?a+b]]', db))
[ [ 1, [ null, 'B' ] ] ]
[ [ 1, [ 'A', 'B' ] ] ]
#422
The text was updated successfully, but these errors were encountered:
Thanks for reporting!
Sorry, something went wrong.
No branches or pull requests
Description
Attribute of composite tuple starting with colon is not working in js
Reproduction
A minimal reproduction is provided on stackblitz
Actual Output
Expected Output
Version
Maybe Related
#422
The text was updated successfully, but these errors were encountered: