# MongoDB-RDF **Repository Path**: mirrors_ant0ine/MongoDB-RDF ## Basic Information - **Project Name**: MongoDB-RDF - **Description**: Stores RDF-JSON documents in MongoDB - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README NAME MongoDB::RDF - Stores RDF-JSON documents in MongoDB. SYNOPSIS my $mrdf = MongoDB::RDF->new( database => MongoDB::Connection->new(host => 'localhost', port => 27017)->test_rdf ); my $graph = $mrdf->default_graph; my $r = MongoDB::RDF::Resource->new('http://example.org/0'); $r->dc_title('my title'); $graph->save($r); METHODS new( database => $mdb ) Takes a MongoDB::Database in argument. default_graph Returns the default graph object. get_graph( $name ) Returns the graph named $name, creates it if it doesn't exist. (A graph is mapped to a MongoDB::Collection) ACCESSING UNDERLYING MONGODB OBJECTS. database Returns the MongoDB::Database object. AUTHOR Antoine Imbert, `' LICENSE AND COPYRIGHT Copyright 2010 Antoine Imbert. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information.