You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Readme updates, added a full example of using the package.
Fixed the required database driver packages in the setup file.
Improved the query handling for unqlite databases, to maintain a query style compatible with mongodb databases:
For instance, queries like the following are now supported in unqlite as well.
collection.find({field: 1}), will return documents like:
[
{<doc_id>: },
{<doc_id>: },
...
]
This provides a more consistent experience across different noSQL databases into handle projections similar to mongoDB.
Corrections in the Ontology module prefixes and in the sparkQL queries to match the new ontology prefixes.
Changed the default named args from metadata and parameters from "FromMetadata" and "FromParameters" to "metadata" and "params" respectively.
Changed the data object sent to the BM function from a dictionary to a simple object with attributes, now data inside a BM is accessible by using:
data.metadata instead of data['metadata']
data.params instead of data['params']