BaseX focuses on storing, querying, and visualizing large XML and JSON documents and collections.
Is there any way to query MongoDB documents and use BaseX visualizing ability?
BaseX focuses on storing, querying, and visualizing large XML and JSON documents and collections.
Is there any way to query MongoDB documents and use BaseX visualizing ability?
Let me try to help, the information comes from: http://docs.basex.org/wiki/JSON
Example: Converts a JSON string with simple objects and arrays Query:
json:parse('{
"title": "Talk On Travel Pool",
"link": "http://www.flickr.com/groups/talkontravel/pool/",
"description": "Travel and vacation photos from around the world.",
"modified": "2014-02-02T11:10:27Z",
"generator": "http://www.flickr.com/"
}')
Result:
<json type="object">
<title>Talk On Travel Pool</title>
<link>http://www.flickr.com/groups/talkontravel/pool/</link>
<description>Travel and vacation photos from around the world. </description>
<modified>2014-02-02T11:10:27Z</modified>
<generator>http://www.flickr.com/</generator>