├── .gitignore ├── LICENSE ├── README-github.md ├── README.md ├── _cover.jpg ├── _cover.png ├── _cover_small.jpg ├── _cover_small.png ├── book.toml ├── cover.psd ├── src ├── README.md ├── SUMMARY.md ├── Upgrading-Distributed-Environment.md ├── _cover.jpg ├── _cover.png ├── _cover_small.jpg ├── _cover_small.png ├── admin │ ├── Backup-and-Restore.md │ ├── Configuration.md │ ├── Docker-Home.md │ ├── Export-Format.md │ ├── Export-and-Import.md │ ├── Export-to-and-Import-from-JSON.md │ ├── Functions-Creation.md │ ├── Functions-DB-Access.md │ ├── Functions-Server.md │ ├── Functions-Use.md │ ├── Functions.md │ ├── Import-From-RDBMS.md │ ├── Import-RDBMS-to-Document-Model.md │ ├── Import-RDBMS-to-Graph-Model.md │ ├── Import-from-Neo4j-into-OrientDB.md │ ├── Import-from-Neo4j-using-GraphML.md │ ├── Incremental-Backup-And-Restore.md │ ├── JMX.md │ ├── Logging.md │ ├── Monitoring.md │ ├── README.md │ ├── Scheduler.md │ ├── Unix-Service.md │ ├── Windows-Service.md │ └── installation │ │ ├── Installation-from-Source.md │ │ ├── Prerequisites.md │ │ └── README.md ├── apis-and-drivers │ └── README.md ├── console │ ├── Console-Command-Backup.md │ ├── Console-Command-Browse-Class.md │ ├── Console-Command-Browse-Cluster.md │ ├── Console-Command-Check-Database.md │ ├── Console-Command-Classes.md │ ├── Console-Command-Cluster-Status.md │ ├── Console-Command-Clusters.md │ ├── Console-Command-Config-Get.md │ ├── Console-Command-Config-Set.md │ ├── Console-Command-Config.md │ ├── Console-Command-Connect-Env.md │ ├── Console-Command-Connect.md │ ├── Console-Command-Create-Database.md │ ├── Console-Command-Declare-Intent.md │ ├── Console-Command-Dictionary-Get.md │ ├── Console-Command-Dictionary-Keys.md │ ├── Console-Command-Dictionary-Put.md │ ├── Console-Command-Dictionary-Remove.md │ ├── Console-Command-Disconnect.md │ ├── Console-Command-Display-Raw-Record.md │ ├── Console-Command-Display-Record.md │ ├── Console-Command-Drop-Database.md │ ├── Console-Command-Drop-Server-User.md │ ├── Console-Command-Export-Record.md │ ├── Console-Command-Export.md │ ├── Console-Command-Freeze-Db.md │ ├── Console-Command-Get.md │ ├── Console-Command-Import.md │ ├── Console-Command-Indexes.md │ ├── Console-Command-Info-Class.md │ ├── Console-Command-Info-Property.md │ ├── Console-Command-Info.md │ ├── Console-Command-Js.md │ ├── Console-Command-Jss.md │ ├── Console-Command-List-Connections.md │ ├── Console-Command-List-Databases.md │ ├── Console-Command-List-Server-Users.md │ ├── Console-Command-List-Servers.md │ ├── Console-Command-Load-Record.md │ ├── Console-Command-Load-Script.md │ ├── Console-Command-Open.md │ ├── Console-Command-Profiler.md │ ├── Console-Command-Properties.md │ ├── Console-Command-Release-Db.md │ ├── Console-Command-Reload-Record.md │ ├── Console-Command-Repair-Database.md │ ├── Console-Command-Restore.md │ ├── Console-Command-Set-Server-User.md │ ├── Console-Command-Set.md │ ├── Console-Commands.md │ ├── Console-Custom-Commands.md │ ├── Console-Modes.md │ ├── README.md │ └── old │ │ ├── Console-Command-Begin.md │ │ ├── Console-Command-Commit.md │ │ ├── Console-Command-Create-Cluster.md │ │ ├── Console-Command-Create-Index.md │ │ ├── Console-Command-Create-Link.md │ │ ├── Console-Command-Create-Property.md │ │ ├── Console-Command-Delete.md │ │ ├── Console-Command-Drop-Cluster.md │ │ ├── Console-Command-Grant.md │ │ ├── Console-Command-Gremlin.md │ │ ├── Console-Command-Insert.md │ │ ├── Console-Command-Revoke.md │ │ ├── Console-Command-Rollback.md │ │ └── Console-Command-Sleep.md ├── css │ └── custom.css ├── datamodeling │ ├── Concepts.md │ ├── Multi-Tenant.md │ └── Tutorial-Document-and-graph-model.md ├── distributed │ ├── Data-Centers.md │ ├── Distributed-Architecture-Lifecycle.md │ ├── Distributed-Architecture.md │ ├── Distributed-Configuration-Tuning.md │ ├── Distributed-Configuration.md │ ├── Distributed-Runtime.md │ ├── Distributed-Server-Manager.md │ ├── Distributed-Sharding.md │ └── Replication.md ├── dotnet │ ├── NET-Database-Clusters.md │ ├── NET-Database-Command.md │ ├── NET-Database-GetClusterIdFor.md │ ├── NET-Database-GetClusterNameFor.md │ ├── NET-Database-GetClusters.md │ ├── NET-Database-Gremlin.md │ ├── NET-Database-Insert.md │ ├── NET-Database-JS.md │ ├── NET-Database-Query.md │ ├── NET-Database-Select.md │ ├── NET-Database-SqlBatch.md │ ├── NET-Database-Update.md │ ├── NET-Database.md │ ├── NET-Query-Conditions.md │ ├── NET-Query-Limiter.md │ ├── NET-Query-Sort.md │ ├── NET-Query.md │ ├── NET-Server-ConfigGet.md │ ├── NET-Server-ConfigList.md │ ├── NET-Server-ConfigSet.md │ ├── NET-Server-CreateDatabase.md │ ├── NET-Server-DatabaseExists.md │ ├── NET-Server-Databases.md │ ├── NET-Server-DropDatabase.md │ ├── NET-Server.md │ ├── NET-Transactions-Add.md │ ├── NET-Transactions-AddEdge.md │ ├── NET-Transactions-AddOrUpdate.md │ ├── NET-Transactions-Delete.md │ ├── NET-Transactions-GetPendingObject.md │ ├── NET-Transactions-Update.md │ ├── NET-Transactions.md │ └── NET.md ├── ee │ ├── .DS_Store │ ├── Auditing.md │ ├── Backup-Management.md │ ├── Cluster-Management.md │ ├── Dashboard.md │ ├── Enterprise-Edition.md │ ├── Neo4j-Importer.md │ ├── Profiler.md │ ├── Security.md │ ├── Server-Management.md │ ├── Server-Profiler.md │ ├── Settings.md │ ├── Teleporter.md │ └── images │ │ ├── .DS_Store │ │ ├── studio-auditing-configuration.png │ │ ├── studio-auditing-log.png │ │ ├── studio-backup-00-fresh-scheduler.png │ │ ├── studio-backup-01-backup-scheduler-right-panel.png │ │ ├── studio-backup-02-full-backup-scheduling.png │ │ ├── studio-backup-03-incremental-backup-scheduling.png │ │ ├── studio-backup-04-full-incr-backup-scheduling.png │ │ ├── studio-backup-05-granularity.png │ │ ├── studio-backup-05.1- calendar-not-empty.png │ │ ├── studio-backup-06-backup-event.png │ │ ├── studio-backup-07-restore-from-full.png │ │ ├── studio-backup-08-restore-from-incremental.png │ │ ├── studio-backup-09-restore-from-full-incr.png │ │ ├── studio-cluster-management-databases.png │ │ ├── studio-cluster-management-overview.png │ │ ├── studio-dashboard-ee.png │ │ ├── studio-global-configurations.png │ │ ├── studio-monitoring-connections.png │ │ ├── studio-monitoring-threads.png │ │ ├── studio-neo4j-importer │ │ ├── studio-neo4jimporter-job-completed.png │ │ ├── studio-neo4jimporter-job-running.png │ │ ├── studio-neo4jimporter-step1-tryConnection.png │ │ └── studio-neo4jimporter-step2.png │ │ ├── studio-query-profiler-running.png │ │ ├── studio-query-profiler-stats.png │ │ ├── studio-security-configuration.png │ │ ├── studio-server-management.png │ │ ├── studio-settings-permissions.png │ │ ├── studio-settings-profiler.png │ │ └── studio-teleporter │ │ ├── studio-teleporter-job-completed.png │ │ ├── studio-teleporter-job-running.png │ │ ├── studio-teleporter-step1-tryConnection.png │ │ ├── studio-teleporter-step2.png │ │ ├── studio-teleporter-step3-filtering-1.png │ │ ├── studio-teleporter-step3-filtering-2.png │ │ ├── studio-teleporter-step3-filtering-3.png │ │ ├── studio-teleporter-step3-filtering-4.png │ │ ├── studio-teleporter-step4-add-edge-button.png │ │ ├── studio-teleporter-step4-add-edge-drag.png │ │ ├── studio-teleporter-step4-add-edge-modal1.png │ │ ├── studio-teleporter-step4-add-edge-modal2.png │ │ ├── studio-teleporter-step4-add-prop-button.png │ │ ├── studio-teleporter-step4-add-prop-modal1.png │ │ ├── studio-teleporter-step4-add-prop-modal2.png │ │ ├── studio-teleporter-step4-aggr-edge-rel-view-1.png │ │ ├── studio-teleporter-step4-aggr-edge-rel-view-2.png │ │ ├── studio-teleporter-step4-aggr-edge-rendering.png │ │ ├── studio-teleporter-step4-aggregated-graph+legend.png │ │ ├── studio-teleporter-step4-drop-edge-class.png │ │ ├── studio-teleporter-step4-drop-edge-instance.png │ │ ├── studio-teleporter-step4-drop-prop-modal.png │ │ ├── studio-teleporter-step4-edit-prop-modal.png │ │ ├── studio-teleporter-step4-excluded-props.png │ │ ├── studio-teleporter-step4-graph+selected-vertex.png │ │ ├── studio-teleporter-step4-only-graph.png │ │ ├── studio-teleporter-step4-reincluded-props.png │ │ ├── studio-teleporter-step4-rename-class-button.png │ │ ├── studio-teleporter-step4-rename-class-modal.png │ │ ├── studio-teleporter-step4-search-bar.png │ │ ├── studio-teleporter-step4-simple-edge-rel-view.png │ │ └── studio-teleporter-step4-simple-edge-rendering.png ├── etl │ ├── Block.md │ ├── Configuration-File.md │ ├── ETL-Introduction.md │ ├── Extractor.md │ ├── Import-a-tree-structure.md │ ├── Import-from-CSV-to-a-Graph.md │ ├── Import-from-DBMS.md │ ├── Import-from-DBPedia.md │ ├── Import-from-JSON.md │ ├── Import-from-PARSE.md │ ├── Loader.md │ ├── Source.md │ └── Transformer.md ├── fiveminute │ ├── README.md │ ├── images │ │ ├── idea-main.png │ │ ├── idea-main2.png │ │ ├── idea-new-class.png │ │ ├── idea-new-maven.png │ │ ├── idea-new-maven2.png │ │ ├── idea-new.png │ │ ├── idea-pom.png │ │ ├── studio-browser-2.png │ │ ├── studio-browser.png │ │ ├── studio-create-database-3.2.png │ │ ├── studio-create-database.png │ │ ├── studio-login.png │ │ └── studio-schema.png │ ├── java-1.md │ ├── java-2.md │ ├── java-3.md │ ├── java-4.md │ └── java.md ├── general │ ├── Concurrency.md │ ├── Inheritance.md │ ├── Managing-Dates.md │ ├── README.md │ ├── Schema.md │ ├── Types.md │ └── include-file-1.md ├── gettingstarted │ ├── Chat-use-case.md │ ├── Distributed-Architecture.md │ ├── Key-Value-use-case.md │ ├── Queue-use-case.md │ ├── README.md │ ├── Time-series-use-case.md │ ├── Tutorial-Classes.md │ ├── Tutorial-Clusters.md │ ├── Tutorial-Installation-Operations.md │ ├── Tutorial-Installation.md │ ├── Tutorial-Introduction-to-the-NoSQL-world.md │ ├── Tutorial-Java-Hooks.md │ ├── Tutorial-Record-ID.md │ ├── Tutorial-Relationships.md │ ├── Tutorial-Run-the-console.md │ ├── Tutorial-Run-the-server.md │ ├── Tutorial-Run-the-studio.md │ ├── Tutorial-SQL.md │ ├── Tutorial-Using-schema-with-graphs.md │ ├── Tutorial-Working-with-graphs.md │ ├── Users-Roles-Security.md │ ├── demodb │ │ ├── DemoDB-DataModel.md │ │ ├── DemoDB-Graph-Portions.md │ │ ├── DemoDB-Introduction.md │ │ ├── README.md │ │ ├── include-demodb-version-warning.md │ │ └── queries │ │ │ ├── DemoDB-Queries-Attractions.md │ │ │ ├── DemoDB-Queries-Business-Opportunities.md │ │ │ ├── DemoDB-Queries-Countries.md │ │ │ ├── DemoDB-Queries-Customers.md │ │ │ ├── DemoDB-Queries-Friendship.md │ │ │ ├── DemoDB-Queries-Locations.md │ │ │ ├── DemoDB-Queries-Orders.md │ │ │ ├── DemoDB-Queries-Polymorphism.md │ │ │ ├── DemoDB-Queries-Profiles.md │ │ │ ├── DemoDB-Queries-Recommendations.md │ │ │ ├── DemoDB-Queries-Reviews.md │ │ │ ├── DemoDB-Queries-Services.md │ │ │ ├── DemoDB-Queries-Shortest-Paths.md │ │ │ ├── DemoDB-Queries-Traverses.md │ │ │ ├── README.md │ │ │ ├── include-file-1.md │ │ │ ├── include-file-10.md │ │ │ ├── include-file-2.md │ │ │ ├── include-file-3.md │ │ │ ├── include-file-4.md │ │ │ ├── include-file-5.md │ │ │ ├── include-file-6.md │ │ │ ├── include-file-7.md │ │ │ ├── include-file-8.md │ │ │ └── include-file-9.md │ └── tutorials │ │ ├── Import-Tutorials.md │ │ ├── Import-the-Database-of-Beers.md │ │ ├── README.md │ │ ├── Tutorial-Importing-the-Movie-Database-from-Neo4j.md │ │ ├── Tutorial-Importing-the-northwind-Database-from-Neo4j.md │ │ ├── Tutorial-Setup-a-distributed-database.md │ │ └── Tutorial-Working-with-distributed-graph-database.md ├── gremlin │ └── Gremlin.md ├── images │ ├── AddVertex1.png │ ├── AddVertex2.png │ ├── EditorMenu.png │ ├── GraphEditor.png │ ├── GraphEditor2.png │ ├── ORecordHierarchy.png │ ├── PersonClass.png │ ├── Property.png │ ├── README.md │ ├── Roles2.png │ ├── Settings.png │ ├── addEdge.png │ ├── addEdge1.png │ ├── addEdge2.png │ ├── auditing-configuration.png │ ├── auditing-logs.png │ ├── beers.jpg │ ├── bookmarks.png │ ├── browse.png │ ├── class.png │ ├── cloud │ │ ├── backup-s3.png │ │ ├── backup-ssh.png │ │ ├── cloud-account-change-password.png │ │ ├── cloud-account-login.png │ │ ├── cloud-account-organizations-new.png │ │ ├── cloud-account-organizations.png │ │ ├── cloud-account-register.png │ │ ├── cloud-account-settings.png │ │ ├── cloud-dropdown-menu.png │ │ ├── cloud-organization-addproject.png │ │ ├── cloud-organization-adduser.png │ │ ├── cloud-organization-create.png │ │ ├── cloud-organization-projects.png │ │ ├── cloud-organization-settings.png │ │ ├── cloud-organization-users.png │ │ ├── cloud-project-backup-calendar.png │ │ ├── cloud-project-backup.png │ │ ├── cloud-project-dashboard.png │ │ ├── cloud-project-servers-connections.png │ │ ├── cloud-project-servers-dump.png │ │ ├── cloud-project-servers.png │ │ ├── cloud-project-settings.png │ │ ├── cloud-project-tokens-new.png │ │ ├── cloud-project-tokens.png │ │ ├── cloud-project-users.png │ │ ├── studio-backup-02-full-backup-scheduling.png │ │ ├── studio-backup-03-incremental-backup-scheduling.png │ │ ├── studio-backup-04-full-incr-backup-scheduling.png │ │ ├── studio-backup-06-backup-event.png │ │ └── studio-backup-08-restore-from-incremental.png │ ├── configuration.png │ ├── connections.png │ ├── demo-dbs │ │ └── social-travel-agency │ │ │ ├── DataModel.png │ │ │ ├── Inheritance.png │ │ │ ├── customers_countries.png │ │ │ ├── customers_friends.png │ │ │ ├── customers_restaurants.png │ │ │ ├── profiles.png │ │ │ ├── query_11_browse.png │ │ │ ├── query_12_browse.png │ │ │ ├── query_12_graph.png │ │ │ ├── query_14_browse.png │ │ │ ├── query_14_graph.png │ │ │ ├── query_15_browse.png │ │ │ ├── query_15_graph.png │ │ │ ├── query_16_browse.png │ │ │ ├── query_16_graph.png │ │ │ ├── query_17_browse.png │ │ │ ├── query_17_graph.png │ │ │ ├── query_18_browse.png │ │ │ ├── query_18_graph.png │ │ │ ├── query_19_browse.png │ │ │ ├── query_19_graph.png │ │ │ ├── query_1_browse.png │ │ │ ├── query_1_graph.png │ │ │ ├── query_20_browse.png │ │ │ ├── query_21_browse.png │ │ │ ├── query_22_browse.png │ │ │ ├── query_23_browse.png │ │ │ ├── query_24_browse.png │ │ │ ├── query_25_browse.png │ │ │ ├── query_26_browse.png │ │ │ ├── query_27_browse.png │ │ │ ├── query_27_graph.png │ │ │ ├── query_29_browse.png │ │ │ ├── query_2_browse.png │ │ │ ├── query_2_graph.png │ │ │ ├── query_30_browse.png │ │ │ ├── query_31_browse.png │ │ │ ├── query_32_browse.png │ │ │ ├── query_33_browse.png │ │ │ ├── query_34_browse.png │ │ │ ├── query_35_graph.png │ │ │ ├── query_36_browse.png │ │ │ ├── query_37_graph.png │ │ │ ├── query_38_graph.png │ │ │ ├── query_39_graph.png │ │ │ ├── query_3_browse.png │ │ │ ├── query_3_graph.png │ │ │ ├── query_40_browse.png │ │ │ ├── query_40_graph.png │ │ │ ├── query_41_graph.png │ │ │ ├── query_42_graph.png │ │ │ ├── query_43_graph.png │ │ │ ├── query_44_browse.png │ │ │ ├── query_45_graph.png │ │ │ ├── query_46_graph.png │ │ │ ├── query_4_browse.png │ │ │ ├── query_4_graph.png │ │ │ ├── query_5_browse.png │ │ │ ├── query_5_graph.png │ │ │ ├── query_6_browse.png │ │ │ ├── query_6_graph.png │ │ │ ├── query_7_browse.png │ │ │ ├── query_7_graph.png │ │ │ ├── query_8_browse.png │ │ │ ├── query_9_browse.png │ │ │ ├── query_recommendation_1_browse.png │ │ │ ├── query_recommendation_2_graph.png │ │ │ ├── query_recommendation_3_graph.png │ │ │ ├── shortestpath_1_browse.png │ │ │ ├── shortestpath_1_graph.png │ │ │ ├── shortestpath_2_browse.png │ │ │ ├── shortestpath_2_graph.png │ │ │ ├── traverse_1_browse.png │ │ │ ├── traverse_1_graph.png │ │ │ ├── traverse_2_browse.png │ │ │ └── traverse_2_graph.png │ ├── edgeMenu.png │ ├── editDocument.png │ ├── editVertex.png │ ├── etl │ │ └── openbeerdb │ │ │ ├── Beer_Data_Model-Graph.png │ │ │ ├── Beer_Data_Model-Relational.png │ │ │ ├── library_visjs_class_category_and_style.png │ │ │ ├── library_visjs_expand_beer.png │ │ │ ├── studio_browse_expand_beer.png │ │ │ ├── studio_graph_beer_class_category.png │ │ │ ├── studio_graph_class_category_and_style.png │ │ │ └── studio_graph_specific_beer.png │ ├── functions.png │ ├── import-export.png │ ├── importPublic.png │ ├── import_from_neo4j │ │ └── northwind │ │ │ ├── northwind_graph_editor.PNG │ │ │ ├── northwind_match_query.PNG │ │ │ └── northwind_schema_manager.PNG │ ├── indexes.png │ ├── java │ │ ├── orientdb-api-stack.png │ │ └── orientdb-api-stack.pptx │ ├── liveQuery.png │ ├── match-example-graph.png │ ├── match-example-table.png │ ├── newClass.png │ ├── newDb.png │ ├── newIndex.png │ ├── newProperty.png │ ├── newRole.png │ ├── newRule.png │ ├── newUser.png │ ├── query.png │ ├── queryPolling.png │ ├── result.png │ ├── resultRaw.png │ ├── roles.png │ ├── runConsole-connectToDatabase.png │ ├── runStudio.png │ ├── schema.png │ ├── server-level-commands.png │ ├── serverConfig.png │ ├── storage.png │ ├── strictSQL.png │ ├── structure.png │ ├── studio-auditing-configuration.png │ ├── studio-auditing-log.png │ ├── studio-backup-00-fresh-scheduler.png │ ├── studio-backup-01-backup-scheduler-right-panel.png │ ├── studio-backup-02-full-backup-scheduling.png │ ├── studio-backup-03-incremental-backup-scheduling.png │ ├── studio-backup-04-full-incr-backup-scheduling.png │ ├── studio-backup-05-granularity.png │ ├── studio-backup-05.1- calendar-not-empty.png │ ├── studio-backup-06-backup-event.png │ ├── studio-backup-07-restore-from-full.png │ ├── studio-backup-08-restore-from-incremental.png │ ├── studio-backup-09-restore-from-full-incr.png │ ├── studio-cluster-management-databases.png │ ├── studio-cluster-management-overview.png │ ├── studio-configuration.png │ ├── studio-conns.png │ ├── studio-dashboard.png │ ├── studio-data-centers.png │ ├── studio-dbs.png │ ├── studio-function-factorial.png │ ├── studio-function-repository.png │ ├── studio-function-sum.png │ ├── studio-importPublic.png │ ├── studio-neo4j-importer │ │ ├── studio-neo4jimporter-job-completed.png │ │ ├── studio-neo4jimporter-job-running.png │ │ ├── studio-neo4jimporter-step1-tryConnection.png │ │ └── studio-neo4jimporter-step2.png │ ├── studio-newDb.png │ ├── studio-queryprofiler-commandcache.png │ ├── studio-queryprofiler-query.png │ ├── studio-server-management-configuration.png │ ├── studio-server-management-connections.png │ ├── studio-server-management-databases.png │ ├── studio-server-management-logs.png │ ├── studio-server-management-metrics-chronos.png │ ├── studio-server-management-metrics-counters.png │ ├── studio-server-management-metrics-hook.png │ ├── studio-server-management-metrics-stats.png │ ├── studio-server-management-overview.png │ ├── studio-stats-2servers.png │ ├── studio-stats.png │ ├── studio-teleporter │ │ ├── studio-teleporter-job-completed.png │ │ ├── studio-teleporter-job-running.png │ │ ├── studio-teleporter-step1-tryConnection.png │ │ ├── studio-teleporter-step2.png │ │ ├── studio-teleporter-step3-filtering-1.png │ │ ├── studio-teleporter-step3-filtering-2.png │ │ ├── studio-teleporter-step3-filtering-3.png │ │ ├── studio-teleporter-step3-filtering-4.png │ │ ├── studio-teleporter-step4-add-edge-button.png │ │ ├── studio-teleporter-step4-add-edge-drag.png │ │ ├── studio-teleporter-step4-add-edge-modal1.png │ │ ├── studio-teleporter-step4-add-edge-modal2.png │ │ ├── studio-teleporter-step4-add-prop-button.png │ │ ├── studio-teleporter-step4-add-prop-modal1.png │ │ ├── studio-teleporter-step4-add-prop-modal2.png │ │ ├── studio-teleporter-step4-aggr-edge-rel-view-1.png │ │ ├── studio-teleporter-step4-aggr-edge-rel-view-2.png │ │ ├── studio-teleporter-step4-aggr-edge-rendering.png │ │ ├── studio-teleporter-step4-aggregated-graph+legend.png │ │ ├── studio-teleporter-step4-drop-edge-class.png │ │ ├── studio-teleporter-step4-drop-edge-instance.png │ │ ├── studio-teleporter-step4-drop-prop-modal.png │ │ ├── studio-teleporter-step4-edit-prop-modal.png │ │ ├── studio-teleporter-step4-excluded-props.png │ │ ├── studio-teleporter-step4-graph+selected-vertex.png │ │ ├── studio-teleporter-step4-only-graph.png │ │ ├── studio-teleporter-step4-reincluded-props.png │ │ ├── studio-teleporter-step4-rename-class-button.png │ │ ├── studio-teleporter-step4-rename-class-modal.png │ │ ├── studio-teleporter-step4-search-bar.png │ │ ├── studio-teleporter-step4-simple-edge-rel-view.png │ │ └── studio-teleporter-step4-simple-edge-rendering.png │ ├── studio │ │ └── studio-login.png │ ├── teleporter-execution-dump.png │ ├── teleporter-inheritance-orientdb-schema.png │ ├── teleporter-inheritance-single-table.png │ ├── teleporter-inheritance-table-class.png │ ├── teleporter-inheritance-table-concrete-class.png │ ├── teleporter-migration.png │ ├── teleporter-migration1.png │ ├── teleporter-migration2.png │ ├── teleporter-naive-aggr-strategy-schema3.png │ ├── teleporter-naive-strategy-schema1.png │ ├── teleporter-naive-strategy-schema2.png │ ├── teleporter-strategies-example1.png │ ├── teleporter-strategies-example2-aggr.png │ ├── teleporter-strategies-example2-not-aggr.png │ ├── teleporter-strategies-example2-tables.png │ ├── teleporter-whole-workflow.png │ ├── tutorial-select-from-rid.png │ ├── users.png │ └── warning.png ├── indexing │ ├── Auto-Sharding-Index.md │ ├── Full-Text-Index.md │ ├── FullTextIndex.md │ ├── Hash-Index.md │ ├── Indexes.md │ ├── SB-Tree-index.md │ └── Spatial-Index.md ├── internals │ ├── Caching.md │ ├── Clusters.md │ ├── Custom-Index-Engine.md │ ├── DB-Server.md │ ├── Dynamic-Hooks.md │ ├── Embedded-Server.md │ ├── Hook.md │ ├── Internals.md │ ├── Limits.md │ ├── Local-Storage.md │ ├── Memory-storage.md │ ├── Network Binary Token Format.md │ ├── Network-Binary-Protocol-Commands.md │ ├── Network-Binary-Protocol.md │ ├── Paginated-Local-Storage.md │ ├── Record-CSV-Serialization.md │ ├── Record-Schemaless-Binary-Serialization.md │ ├── RidBag.md │ ├── Server-Status.md │ ├── Storages.md │ ├── System-Database-Internal-Notes.md │ ├── System-Database.md │ ├── System-Users-Implementation.md │ ├── System-Users.md │ ├── Transactions.md │ ├── Web-Server.md │ ├── Write-Ahead-Log.md │ ├── messages.md │ ├── plocal-storage-disk-cache.md │ └── plocal-storage-engine.md ├── introduction │ └── README.md ├── java │ ├── Binary-Data.md │ ├── Document-API-Class.md │ ├── Document-API-Database.md │ ├── Document-API-Documents.md │ ├── Document-API-Property.md │ ├── Document-Database.md │ ├── Fetching-Strategies.md │ ├── Graph-Batch-Insert.md │ ├── Graph-Blueprints.md │ ├── Graph-Consistency.md │ ├── Graph-Database-Tinkerpop.md │ ├── Graph-Factory.md │ ├── Graph-Schema-Class.md │ ├── Graph-Schema-Property.md │ ├── Graph-Schema.md │ ├── Graph-VE.md │ ├── JPA-Configuration.md │ ├── Java-API.md │ ├── Java-Hooks.md │ ├── Java-Multi-Threading-Concurrency.md │ ├── Java-Multi-Threading-Usage.md │ ├── Java-Multi-Threading.md │ ├── Java-MultiModel-API.md │ ├── Java-MultiModel-Data-API.md │ ├── Java-Query-API.md │ ├── Java-Schema-Api.md │ ├── Java-Traverse.md │ ├── Java-Web-Apps.md │ ├── Lightweight-Edges.md │ ├── Live-Query-Comparison.md │ ├── Live-Query-Intro.md │ ├── Live-Query-Java.md │ ├── Live-Query.md │ ├── Object-2-Record-Java-Binding.md │ ├── Object-DB-Attach.md │ ├── Object-DB-Interface.md │ ├── Object-DB-POJO.md │ ├── Object-DB-Schema.md │ ├── Object-Database.md │ ├── Partitioned-Graphs.md │ ├── TODO │ │ ├── Java-Backup.md │ │ ├── Java-Batch-Script.md │ │ ├── Java-Export.md │ │ ├── Java-Import.md │ │ ├── Java-Restore.md │ │ ├── Java-Sequences.md │ │ └── Server-Management-Java.md │ ├── Transaction-propagation.md │ ├── Tutorial-Java.md │ └── ref │ │ ├── OClass.md │ │ ├── OClass │ │ ├── addCluster.md │ │ ├── addClusterId.md │ │ ├── addSuperClass.md │ │ ├── areIndexed.md │ │ ├── count.md │ │ ├── createIndex.md │ │ ├── createProperty.md │ │ ├── dropProperty.md │ │ ├── existsProperty.md │ │ ├── getAllSubclasses.md │ │ ├── getAllSuperClasses.md │ │ ├── getAutoShardingIndex.md │ │ ├── getClassIndex.md │ │ ├── getClassIndexes.md │ │ ├── getClassInvolvedIndexes.md │ │ ├── getClusterIds.md │ │ ├── getDefaultClusterId.md │ │ ├── getIndexedProperties.md │ │ ├── getName.md │ │ ├── getProperty.md │ │ ├── getSubclasses.md │ │ ├── getSuperClassesNames.md │ │ ├── hasClusterId.md │ │ ├── hasPolymorphicClusterId.md │ │ ├── hasSuperClasses.md │ │ ├── isEdgeType.md │ │ ├── isVertexType.md │ │ ├── properties.md │ │ ├── propertiesMap.md │ │ ├── removeClusterId.md │ │ ├── removeSuperClass.md │ │ ├── setDefaultClusterId.md │ │ ├── setName.md │ │ ├── truncate.md │ │ └── truncateCluster.md │ │ ├── OCluster.md │ │ ├── OCluster │ │ ├── close.md │ │ ├── delete.md │ │ ├── deleteRecord.md │ │ ├── exists.md │ │ ├── getFileName.md │ │ ├── getFirstPosition.md │ │ ├── getId.md │ │ ├── getLastPosition.md │ │ ├── getName.md │ │ ├── getNextPosition.md │ │ ├── getRecordsSize.md │ │ ├── getTombstonesCount.md │ │ ├── hideRecord.md │ │ ├── open.md │ │ ├── truncate.md │ │ └── updateRecord.md │ │ ├── ODatabaseDocument.md │ │ ├── ODatabaseDocument │ │ ├── addCluster.md │ │ ├── begin.md │ │ ├── browseClass.md │ │ ├── browseCluster.md │ │ ├── close.md │ │ ├── command.md │ │ ├── commit.md │ │ ├── countClass.md │ │ ├── countClusterElements.md │ │ ├── createClass.md │ │ ├── createClassIfNotExists.md │ │ ├── createEdgeClass.md │ │ ├── createVertexClass.md │ │ ├── declareIntent.md │ │ ├── delete.md │ │ ├── dropCluster.md │ │ ├── execute.md │ │ ├── existsCluster.md │ │ ├── getActiveIntent.md │ │ ├── getClass.md │ │ ├── getClusterIdByName.md │ │ ├── getClusterNameById.md │ │ ├── getClusters.md │ │ ├── getDefaultClusterId.md │ │ ├── getMetadata.md │ │ ├── getName.md │ │ ├── getRecord.md │ │ ├── getRecordType.md │ │ ├── getTransaction.md │ │ ├── getURL.md │ │ ├── getUser.md │ │ ├── incrementalBackup.md │ │ ├── isActiveOnCurrentThread.md │ │ ├── isClosed.md │ │ ├── live.md │ │ ├── load.md │ │ ├── newBlob.md │ │ ├── newEdge.md │ │ ├── newElement.md │ │ ├── newInstance.md │ │ ├── newVertex.md │ │ ├── query.md │ │ ├── registerListener.md │ │ ├── rollback.md │ │ ├── save.md │ │ ├── truncateCluster.md │ │ └── unregisterListener.md │ │ ├── ODatabaseListener.md │ │ ├── ODatabaseSession.md │ │ ├── OEdge.md │ │ ├── OEdge │ │ ├── getFrom.md │ │ ├── getTo.md │ │ └── isLightweight.md │ │ ├── OElement.md │ │ ├── OElement │ │ ├── asEdge.md │ │ ├── asVertex.md │ │ ├── getProperty.md │ │ ├── getPropertyNames.md │ │ ├── getSchemaType.md │ │ ├── isEdge.md │ │ ├── isVertex.md │ │ ├── removeProperty.md │ │ └── setProperty.md │ │ ├── OFunction.md │ │ ├── OFunction │ │ ├── getCode.md │ │ ├── getId.md │ │ ├── getLanguage.md │ │ ├── getName.md │ │ ├── getParameters.md │ │ ├── isIdempotent.md │ │ ├── setCode.md │ │ ├── setIdempotent.md │ │ ├── setLanguage.md │ │ ├── setName.md │ │ └── setParameters.md │ │ ├── OFunctionLibrary.md │ │ ├── OFunctionLibrary │ │ ├── createFunction.md │ │ ├── dropFunction.md │ │ ├── getFunction.md │ │ └── getFunctionNames.md │ │ ├── OIntent.md │ │ ├── OLiveQueryMonitor.md │ │ ├── OLiveQueryResultListener.md │ │ ├── OLiveQueryResultListener │ │ ├── onCreate.md │ │ ├── onDelete.md │ │ ├── onEnd.md │ │ ├── onError.md │ │ └── onUpdate.md │ │ ├── OMetadata.md │ │ ├── OMetadata │ │ ├── getFunctionLibrary.md │ │ └── getSchema.md │ │ ├── OProperty.md │ │ ├── OProperty │ │ ├── getDefaultValue.md │ │ ├── getLinkedClass.md │ │ ├── getLinkedType.md │ │ ├── getMax.md │ │ ├── getMin.md │ │ ├── getName.md │ │ ├── getType.md │ │ ├── isMandatory.md │ │ ├── isNotNull.md │ │ ├── isReadonly.md │ │ ├── setDefaultValue.md │ │ ├── setLinkedClass.md │ │ ├── setLinkedType.md │ │ ├── setMax.md │ │ ├── setMin.md │ │ ├── setName.md │ │ └── setType.md │ │ ├── ORID.md │ │ ├── ORecordOperation.md │ │ ├── OResult.md │ │ ├── OResultSet.md │ │ ├── OResultSet │ │ ├── close.md │ │ ├── edgeStream.md │ │ ├── elementStream.md │ │ ├── estimateSize.md │ │ ├── hasNext.md │ │ ├── next.md │ │ ├── remove.md │ │ ├── stream.md │ │ └── vertexStream.md │ │ ├── ORule.md │ │ ├── OSchema.md │ │ ├── OSchema │ │ ├── countClasses.md │ │ ├── createAbstractClass.md │ │ ├── createClass.md │ │ ├── dropClass.md │ │ ├── existsClass.md │ │ ├── getClass.md │ │ ├── getClassByClusterId.md │ │ ├── getClasses.md │ │ ├── getClassesRelyOnCluster.md │ │ └── getOrCreateClass.md │ │ ├── OSecurityRole.md │ │ ├── OSecurityRole │ │ ├── addRule.md │ │ ├── allow.md │ │ ├── getDocument.md │ │ ├── getName.md │ │ ├── getParentRole.md │ │ ├── getRuleSet.md │ │ ├── grant.md │ │ ├── hasRule.md │ │ ├── revoke.md │ │ └── setParentRole.md │ │ ├── OSecurityUser.md │ │ ├── OSecurityUser │ │ ├── addRole.md │ │ ├── allow.md │ │ ├── checkIfAllowed.md │ │ ├── checkPassword.md │ │ ├── getAccountStatus.md │ │ ├── getDocument.md │ │ ├── getName.md │ │ ├── getPassword.md │ │ ├── getRoles.md │ │ ├── hasRole.md │ │ ├── isRuleDefined.md │ │ ├── removeRole.md │ │ ├── setAccountStatus.md │ │ ├── setName.md │ │ └── setPassword.md │ │ ├── OServer.md │ │ ├── OServer │ │ ├── addTemporaryUser.md │ │ ├── addUser.md │ │ ├── authenticate.md │ │ ├── dropUser.md │ │ ├── existsStoragePath.md │ │ ├── getAvailableStorageNames.md │ │ ├── getConfiguration.md │ │ ├── getDatabaseDirectory.md │ │ ├── getInstance.md │ │ ├── getInstanceByPath.md │ │ ├── getStoragePath.md │ │ ├── getUser.md │ │ ├── isActive.md │ │ ├── isAllowed.md │ │ ├── openDatabase.md │ │ ├── restart.md │ │ ├── saveConfiguration.md │ │ ├── shutdown.md │ │ └── startup.md │ │ ├── OTransaction.md │ │ ├── OTransaction │ │ ├── amountOfNestedTxs.md │ │ ├── begin.md │ │ ├── close.md │ │ ├── commit.md │ │ ├── getDatabase.md │ │ ├── getEntryCount.md │ │ ├── getInvolvedIndexes.md │ │ ├── getIsolationLevel.md │ │ ├── getNewRecordEntriesByClass.md │ │ ├── getNewRecordEntriesByCluster.md │ │ ├── getRecordEntry.md │ │ ├── getRecordOperations.md │ │ ├── getStatus.md │ │ ├── hasRecordCreation.md │ │ ├── rollback.md │ │ └── setIsolationLevel.md │ │ ├── OType.md │ │ ├── OVertex.md │ │ ├── OVertex │ │ ├── addEdge.md │ │ ├── getEdges.md │ │ └── getVertices.md │ │ ├── OrientDB.md │ │ ├── OrientDB │ │ ├── create.md │ │ ├── createIfNotExists.md │ │ ├── drop.md │ │ ├── exists.md │ │ ├── list.md │ │ └── open.md │ │ └── README.md ├── jdbc-driver │ └── README.md ├── js │ ├── Javascript-Command.md │ ├── Javascript-Driver.md │ ├── Script-Interpreter-Plugin.md │ └── custom.js ├── legacy │ ├── 2011.md │ ├── Architecture.md │ ├── Build.md │ ├── Choosing-between-Graph-or-Document-API.md │ ├── Code-conventions.md │ ├── Console-Command-Share-Database.md │ ├── Console-Command-Show-Holes.md │ ├── Distributed-Cache.md │ ├── DocumentDB-Comparison.md │ ├── Download.md │ ├── GraphDB-Comparison.md │ ├── HA-Upgrading.md │ ├── Hackaton.md │ ├── Home-Old.md │ ├── Home.md │ ├── Install.md │ ├── Introduction.md │ ├── Migrating-from-2.2.x.md │ ├── Migrating-from-older-versions.md │ ├── Migration-from-1.3.x-to-1.4.x.md │ ├── Migration-from-1.4.x-to-1.5.x.md │ ├── Migration-from-1.5.x-to-1.6.x.md │ ├── Migration-from-1.6.x-to-1.7.x.md │ ├── Migration-from-1.7.x-to-2.0.x.md │ ├── Migration.md │ ├── Operations.md │ ├── Presentations.md │ ├── Query-Examples.md │ ├── Quick-Start.md │ ├── Release-2.1.0.md │ ├── Release-2.2.0.md │ ├── SUMMARY_old.md │ ├── Session-Management.md │ ├── Spatial-Module.md │ ├── Studio-Executing-Query.md │ ├── TODO.md │ ├── Team.md │ ├── Use-Cases.md │ └── index.txt ├── marcopolo │ ├── MarcoPolo-BinaryRecord.md │ ├── MarcoPolo-Database.md │ ├── MarcoPolo-Date.md │ ├── MarcoPolo-DateTime.md │ ├── MarcoPolo-Document.md │ ├── MarcoPolo-FetchPlan.md │ ├── MarcoPolo-RID.md │ ├── MarcoPolo-Server.md │ ├── MarcoPolo-Structs.md │ ├── MarcoPolo-Types.md │ ├── MarcoPolo-command.md │ ├── MarcoPolo-create-db.md │ ├── MarcoPolo-create-record.md │ ├── MarcoPolo-db-countrecords.md │ ├── MarcoPolo-db-exists.md │ ├── MarcoPolo-db-reload.md │ ├── MarcoPolo-db-size.md │ ├── MarcoPolo-delete-record.md │ ├── MarcoPolo-distrib-config.md │ ├── MarcoPolo-drop-db.md │ ├── MarcoPolo-live-query-unsubscribe.md │ ├── MarcoPolo-live-query.md │ ├── MarcoPolo-load-record.md │ ├── MarcoPolo-script.md │ ├── MarcoPolo-update-record.md │ └── MarcoPolo.md ├── misc │ ├── About-This-Manual.md │ ├── Backward-compatibility.md │ ├── Cluster-Selection.md │ ├── Contribute-to-OrientDB.md │ ├── Documents-Vertices-Edges.md │ ├── Editions.md │ ├── Features.md │ ├── Get-in-Touch.md │ ├── History.md │ ├── OrientDB-REST.md │ ├── Overview.md │ ├── Report-an-issue.md │ ├── Roadmap.md │ ├── Stress-Test-Tool.md │ ├── Tools.md │ ├── Troubleshooting-Java.md │ ├── Troubleshooting.md │ └── What-Is-OrientDB.md ├── neo4j-to-orientdb-importer │ └── README.md ├── orientjs │ ├── Client.md │ ├── OrientJS-CLI-Database.md │ ├── OrientJS-CLI-Migration.md │ ├── OrientJS-CLI.md │ ├── OrientJS-Class-Classes.md │ ├── OrientJS-Class-Properties.md │ ├── OrientJS-Class-Records.md │ ├── OrientJS-Class.md │ ├── OrientJS-Database.md │ ├── OrientJS-Events.md │ ├── OrientJS-Functions.md │ ├── OrientJS-Index.md │ ├── OrientJS-Legacy.md │ ├── OrientJS-Query-Create.md │ ├── OrientJS-Query-Delete.md │ ├── OrientJS-Query-Fetch.md │ ├── OrientJS-Query-Insert.md │ ├── OrientJS-Query-Live-Query.md │ ├── OrientJS-Query-Select.md │ ├── OrientJS-Query-Transform.md │ ├── OrientJS-Query-Traverse.md │ ├── OrientJS-Query-Update.md │ ├── OrientJS-Query.md │ ├── OrientJS-Record.md │ ├── OrientJS-Server.md │ ├── OrientJS-Transactions.md │ ├── OrientJS.md │ ├── Reference.md │ └── Session.md ├── php │ ├── PHP-Client.md │ ├── PHP-ClusterMap-dropClusterID.md │ ├── PHP-ClusterMap-getClusterID.md │ ├── PHP-ClusterMap-getIdList.md │ ├── PHP-ClusterMap.md │ ├── PHP-Command.md │ ├── PHP-Database.md │ ├── PHP-ID.md │ ├── PHP-Query.md │ ├── PHP-Record-getOClass.md │ ├── PHP-Record-getOData.md │ ├── PHP-Record-getRid.md │ ├── PHP-Record-jsonSerialize.md │ ├── PHP-Record-recordSerialize.md │ ├── PHP-Record-setOClass.md │ ├── PHP-Record-setOData.md │ ├── PHP-Record-setRid.md │ ├── PHP-Record.md │ ├── PHP-Server.md │ ├── PHP-Tx-attach.md │ ├── PHP-Tx-begin.md │ ├── PHP-Tx-commit.md │ ├── PHP-Tx-rollback.md │ ├── PHP-Tx.md │ ├── PHP-dataClusterAdd.md │ ├── PHP-dataClusterCount.md │ ├── PHP-dataClusterDataRange.md │ ├── PHP-dataClusterDrop.md │ ├── PHP-dbCountRecords.md │ ├── PHP-dbCreate.md │ ├── PHP-dbDrop.md │ ├── PHP-dbExists.md │ ├── PHP-dbList.md │ ├── PHP-dbReload.md │ ├── PHP-dbSize.md │ ├── PHP-queryAsync.md │ ├── PHP-recordCreate.md │ ├── PHP-recordLoad.md │ ├── PHP-recordUpdate.md │ ├── PHP-sqlBatch.md │ └── PHP.md ├── plugins │ ├── Automatic-Backup.md │ ├── Extend-Server.md │ ├── Gephi.md │ ├── JMX-Plugin.md │ ├── Mail-Plugin.md │ ├── Plugins.md │ ├── Rexster.md │ ├── SysLog-Plugin.md │ └── spider-box.md ├── programs │ ├── Administrative-Utility-Programs.md │ ├── Client-Programs.md │ ├── Data-Import-Programs.md │ ├── README.md │ ├── Server-Startup-Programs.md │ ├── backup.md │ ├── dserver.md │ ├── oetl.md │ ├── orientdb-neo4j-importer.md │ ├── orientdb.md │ ├── server.md │ ├── shutdown.md │ └── stresstester.md ├── pyorient │ ├── PyOrient-Client-Batch.md │ ├── PyOrient-Client-Command.md │ ├── PyOrient-Client-DB-Count-Records.md │ ├── PyOrient-Client-DB-Create.md │ ├── PyOrient-Client-DB-Drop.md │ ├── PyOrient-Client-DB-Exists.md │ ├── PyOrient-Client-DB-List.md │ ├── PyOrient-Client-DB-Open.md │ ├── PyOrient-Client-DB-Reload.md │ ├── PyOrient-Client-DB-Size.md │ ├── PyOrient-Client-Data-Cluster-Add.md │ ├── PyOrient-Client-Data-Cluster-Count.md │ ├── PyOrient-Client-Data-Cluster-Data-Range.md │ ├── PyOrient-Client-Data-Cluster-Drop.md │ ├── PyOrient-Client-Get-Session-Token.md │ ├── PyOrient-Client-Query-Async.md │ ├── PyOrient-Client-Query.md │ ├── PyOrient-Client-Record-Create.md │ ├── PyOrient-Client-Record-Delete.md │ ├── PyOrient-Client-Record-Load.md │ ├── PyOrient-Client-Record-Update.md │ ├── PyOrient-Client-Set-Session-Token.md │ ├── PyOrient-Client-Tx-Commit.md │ ├── PyOrient-Client.md │ ├── PyOrient-OGM-Batch.md │ ├── PyOrient-OGM-Brokers.md │ ├── PyOrient-OGM-Connection.md │ ├── PyOrient-OGM-Schemas.md │ ├── PyOrient-OGM-Scripts.md │ ├── PyOrient-OGM.md │ ├── PyOrient-Tx-Attach.md │ ├── PyOrient-Tx-Begin.md │ ├── PyOrient-Tx-Commit.md │ ├── PyOrient-Tx-Rollback.md │ └── PyOrient.md ├── release │ ├── 3.2 │ │ ├── API-Changes.md │ │ ├── Available-Packages.md │ │ ├── Known-issues.md │ │ ├── README.md │ │ ├── SQL-Changes.md │ │ ├── Upgrading-to-OrientDB-3.2.md │ │ ├── What-is-new-in-OrientDB-3.2.md │ │ └── include-warning-3.0.md │ ├── Release-Notes.md │ ├── Upgrade.md │ └── Upgrading-Distributed-Environment.md ├── scala │ └── Scala-Language.md ├── security │ ├── Database-Encryption.md │ ├── Database-Security.md │ ├── OrientDB-Security-Guide.md │ ├── SAP-Enterprise-OrientDB-DPP.md │ ├── Security-Config.md │ ├── Security-Kerberos-Client-Examples.md │ ├── Security-New-Security-Features-Code-Changes.md │ ├── Security-OrientDB-New-Security-Features.md │ ├── Security-Symmetric-Key-Authentication.md │ ├── Security.md │ ├── Server-Security.md │ └── Using-SSL-with-OrientDB.md ├── serverlevel │ ├── Alter-System-Role.md │ ├── Create-Database.md │ ├── Create-System-User.md │ ├── Drop-Database.md │ ├── Exists-System-User.md │ └── README.md ├── sql │ ├── Command-Cache.md │ ├── Pagination.md │ ├── Pivoting-With-Query.md │ ├── README.md │ ├── SQL-Alter-Class.md │ ├── SQL-Alter-Cluster.md │ ├── SQL-Alter-Database.md │ ├── SQL-Alter-Property.md │ ├── SQL-Alter-Security-Policy.md │ ├── SQL-Alter-Sequence.md │ ├── SQL-Commands.md │ ├── SQL-Create-Class.md │ ├── SQL-Create-Cluster.md │ ├── SQL-Create-Edge.md │ ├── SQL-Create-Function.md │ ├── SQL-Create-Index.md │ ├── SQL-Create-Link.md │ ├── SQL-Create-Property.md │ ├── SQL-Create-Security-Policy.md │ ├── SQL-Create-Sequence.md │ ├── SQL-Create-User.md │ ├── SQL-Create-Vertex.md │ ├── SQL-Create-View.md │ ├── SQL-Delete-Edge.md │ ├── SQL-Delete-Vertex.md │ ├── SQL-Delete.md │ ├── SQL-Drop-Class.md │ ├── SQL-Drop-Cluster.md │ ├── SQL-Drop-Index.md │ ├── SQL-Drop-Property.md │ ├── SQL-Drop-Sequence.md │ ├── SQL-Drop-User.md │ ├── SQL-Drop-View.md │ ├── SQL-Explain.md │ ├── SQL-Find-References.md │ ├── SQL-Functions.md │ ├── SQL-Grant.md │ ├── SQL-HA-Remove-Server.md │ ├── SQL-HA-Set.md │ ├── SQL-HA-Status.md │ ├── SQL-HA-Sync-Cluster.md │ ├── SQL-HA-Sync-Database.md │ ├── SQL-Insert.md │ ├── SQL-Introduction.md │ ├── SQL-Live-Select.md │ ├── SQL-Live-Unsubscribe.md │ ├── SQL-Match.md │ ├── SQL-Metadata.md │ ├── SQL-Methods.md │ ├── SQL-Move-Vertex.md │ ├── SQL-Optimize-Database.md │ ├── SQL-Profile.md │ ├── SQL-Projections.md │ ├── SQL-Query.md │ ├── SQL-Rebuild-Index.md │ ├── SQL-Revoke.md │ ├── SQL-Select-Execution.md │ ├── SQL-Syntax.md │ ├── SQL-Traverse.md │ ├── SQL-Truncate-Class.md │ ├── SQL-Truncate-Cluster.md │ ├── SQL-Truncate-Record.md │ ├── SQL-Update-Edge.md │ ├── SQL-Update.md │ ├── SQL-Where.md │ ├── SQL-batch.md │ └── Sequences-and-auto-increment.md ├── studio │ ├── README.md │ ├── backups-imports-exports │ │ ├── README.md │ │ ├── Studio-Backup-Management.md │ │ ├── Studio-Neo4j-Importer.md │ │ └── Studio-Teleporter.md │ ├── menus-panels │ │ └── README.md │ ├── server-management │ │ ├── README.md │ │ ├── Server-Management.md │ │ ├── Studio-Alerts-Management.md │ │ ├── Studio-Auditing.md │ │ ├── Studio-Cluster-Management.md │ │ ├── Studio-Dashboard.md │ │ ├── Studio-Data-Centers.md │ │ ├── Studio-Query-Profiler.md │ │ ├── Studio-Security.md │ │ └── Studio-Server-Management.md │ ├── tmp.md │ ├── working-with-data │ │ ├── README.md │ │ ├── browse │ │ │ ├── README.md │ │ │ ├── Studio-Browse-Modifying-Data.md │ │ │ ├── Studio-Browse-Querying-Data.md │ │ │ ├── Studio-Edit-Document.md │ │ │ ├── Studio-Edit-Edge.md │ │ │ └── Studio-Edit-Vertex.md │ │ └── graph-editor │ │ │ └── README.md │ ├── working-with-databases │ │ ├── README.md │ │ ├── Studio-Common-Database-Operations.md │ │ └── Studio-Database-Management.md │ ├── working-with-functions │ │ ├── README.md │ │ └── Studio-Functions.md │ ├── working-with-schemas │ │ ├── README.md │ │ ├── Studio-Classes.md │ │ ├── Studio-Indexes.md │ │ ├── Studio-Properties.md │ │ └── Studio-Schema-Manager.md │ └── working-with-users-roles │ │ ├── REAME.md │ │ ├── Studio-Roles-Management.md │ │ ├── Studio-Security-Manager.md │ │ └── Studio-Users-Management.md ├── teleporter │ ├── Teleporter-Execution-Strategies.md │ ├── Teleporter-Home.md │ ├── Teleporter-Import-Configuration.md │ ├── Teleporter-Import-Filters.md │ ├── Teleporter-Index.md │ ├── Teleporter-Inheritance.md │ ├── Teleporter-Installation-and-Configuration.md │ ├── Teleporter-Sequential-Executions-and-One-Way-Synchronizer.md │ ├── Teleporter-Single-Table-Inheritance.md │ ├── Teleporter-Table-Per-Class-Inheritance.md │ └── Teleporter-Table-Per-Concrete-Class-Inheritance.md ├── tinkerpop3 │ └── OrientDB-TinkerPop3.md ├── troubleshooting │ ├── Direct-Memory-Tracing.md │ ├── Leak-Detector.md │ └── README.md ├── tuning │ ├── Performance-Tuning-Document.md │ ├── Performance-Tuning-Graph.md │ ├── Performance-Tuning-Object.md │ ├── Performance-Tuning.md │ └── Profiler.md └── warning.png └── theme ├── book.js ├── css ├── chrome.css ├── general.css ├── print.css └── variables.css ├── favicon.png ├── favicon.svg ├── fonts ├── OPEN-SANS-LICENSE.txt ├── SOURCE-CODE-PRO-LICENSE.txt ├── fonts.css ├── open-sans-v17-all-charsets-300.woff2 ├── open-sans-v17-all-charsets-300italic.woff2 ├── open-sans-v17-all-charsets-600.woff2 ├── open-sans-v17-all-charsets-600italic.woff2 ├── open-sans-v17-all-charsets-700.woff2 ├── open-sans-v17-all-charsets-700italic.woff2 ├── open-sans-v17-all-charsets-800.woff2 ├── open-sans-v17-all-charsets-800italic.woff2 ├── open-sans-v17-all-charsets-italic.woff2 ├── open-sans-v17-all-charsets-regular.woff2 └── source-code-pro-v11-all-charsets-500.woff2 ├── highlight.css ├── highlight.js └── index.hbs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /README-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/README-github.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/README.md -------------------------------------------------------------------------------- /_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/_cover.jpg -------------------------------------------------------------------------------- /_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/_cover.png -------------------------------------------------------------------------------- /_cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/_cover_small.jpg -------------------------------------------------------------------------------- /_cover_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/_cover_small.png -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/book.toml -------------------------------------------------------------------------------- /cover.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/cover.psd -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/README.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/Upgrading-Distributed-Environment.md: -------------------------------------------------------------------------------- 1 | 2 | # Upgrading a Distributed Environment 3 | 4 | -------------------------------------------------------------------------------- /src/_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/_cover.jpg -------------------------------------------------------------------------------- /src/_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/_cover.png -------------------------------------------------------------------------------- /src/_cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/_cover_small.jpg -------------------------------------------------------------------------------- /src/_cover_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/_cover_small.png -------------------------------------------------------------------------------- /src/admin/Backup-and-Restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Backup-and-Restore.md -------------------------------------------------------------------------------- /src/admin/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Configuration.md -------------------------------------------------------------------------------- /src/admin/Docker-Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Docker-Home.md -------------------------------------------------------------------------------- /src/admin/Export-Format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Export-Format.md -------------------------------------------------------------------------------- /src/admin/Export-and-Import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Export-and-Import.md -------------------------------------------------------------------------------- /src/admin/Export-to-and-Import-from-JSON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Export-to-and-Import-from-JSON.md -------------------------------------------------------------------------------- /src/admin/Functions-Creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Functions-Creation.md -------------------------------------------------------------------------------- /src/admin/Functions-DB-Access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Functions-DB-Access.md -------------------------------------------------------------------------------- /src/admin/Functions-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Functions-Server.md -------------------------------------------------------------------------------- /src/admin/Functions-Use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Functions-Use.md -------------------------------------------------------------------------------- /src/admin/Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Functions.md -------------------------------------------------------------------------------- /src/admin/Import-From-RDBMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Import-From-RDBMS.md -------------------------------------------------------------------------------- /src/admin/Import-RDBMS-to-Document-Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Import-RDBMS-to-Document-Model.md -------------------------------------------------------------------------------- /src/admin/Import-RDBMS-to-Graph-Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Import-RDBMS-to-Graph-Model.md -------------------------------------------------------------------------------- /src/admin/Incremental-Backup-And-Restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Incremental-Backup-And-Restore.md -------------------------------------------------------------------------------- /src/admin/JMX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/JMX.md -------------------------------------------------------------------------------- /src/admin/Logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Logging.md -------------------------------------------------------------------------------- /src/admin/Monitoring.md: -------------------------------------------------------------------------------- 1 | # Monitoring -------------------------------------------------------------------------------- /src/admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/README.md -------------------------------------------------------------------------------- /src/admin/Scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Scheduler.md -------------------------------------------------------------------------------- /src/admin/Unix-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Unix-Service.md -------------------------------------------------------------------------------- /src/admin/Windows-Service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/Windows-Service.md -------------------------------------------------------------------------------- /src/admin/installation/Prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/installation/Prerequisites.md -------------------------------------------------------------------------------- /src/admin/installation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/admin/installation/README.md -------------------------------------------------------------------------------- /src/apis-and-drivers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/apis-and-drivers/README.md -------------------------------------------------------------------------------- /src/console/Console-Command-Backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Backup.md -------------------------------------------------------------------------------- /src/console/Console-Command-Browse-Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Browse-Class.md -------------------------------------------------------------------------------- /src/console/Console-Command-Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Classes.md -------------------------------------------------------------------------------- /src/console/Console-Command-Clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Clusters.md -------------------------------------------------------------------------------- /src/console/Console-Command-Config-Get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Config-Get.md -------------------------------------------------------------------------------- /src/console/Console-Command-Config-Set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Config-Set.md -------------------------------------------------------------------------------- /src/console/Console-Command-Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Config.md -------------------------------------------------------------------------------- /src/console/Console-Command-Connect-Env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Connect-Env.md -------------------------------------------------------------------------------- /src/console/Console-Command-Connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Connect.md -------------------------------------------------------------------------------- /src/console/Console-Command-Disconnect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Disconnect.md -------------------------------------------------------------------------------- /src/console/Console-Command-Export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Export.md -------------------------------------------------------------------------------- /src/console/Console-Command-Freeze-Db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Freeze-Db.md -------------------------------------------------------------------------------- /src/console/Console-Command-Get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Get.md -------------------------------------------------------------------------------- /src/console/Console-Command-Import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Import.md -------------------------------------------------------------------------------- /src/console/Console-Command-Indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Indexes.md -------------------------------------------------------------------------------- /src/console/Console-Command-Info-Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Info-Class.md -------------------------------------------------------------------------------- /src/console/Console-Command-Info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Info.md -------------------------------------------------------------------------------- /src/console/Console-Command-Js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Js.md -------------------------------------------------------------------------------- /src/console/Console-Command-Jss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Jss.md -------------------------------------------------------------------------------- /src/console/Console-Command-List-Servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-List-Servers.md -------------------------------------------------------------------------------- /src/console/Console-Command-Load-Record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Load-Record.md -------------------------------------------------------------------------------- /src/console/Console-Command-Load-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Load-Script.md -------------------------------------------------------------------------------- /src/console/Console-Command-Open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Open.md -------------------------------------------------------------------------------- /src/console/Console-Command-Profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Profiler.md -------------------------------------------------------------------------------- /src/console/Console-Command-Properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Properties.md -------------------------------------------------------------------------------- /src/console/Console-Command-Release-Db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Release-Db.md -------------------------------------------------------------------------------- /src/console/Console-Command-Restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Restore.md -------------------------------------------------------------------------------- /src/console/Console-Command-Set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Command-Set.md -------------------------------------------------------------------------------- /src/console/Console-Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Commands.md -------------------------------------------------------------------------------- /src/console/Console-Custom-Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Custom-Commands.md -------------------------------------------------------------------------------- /src/console/Console-Modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/Console-Modes.md -------------------------------------------------------------------------------- /src/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/README.md -------------------------------------------------------------------------------- /src/console/old/Console-Command-Begin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/old/Console-Command-Begin.md -------------------------------------------------------------------------------- /src/console/old/Console-Command-Commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/old/Console-Command-Commit.md -------------------------------------------------------------------------------- /src/console/old/Console-Command-Delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/old/Console-Command-Delete.md -------------------------------------------------------------------------------- /src/console/old/Console-Command-Grant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/old/Console-Command-Grant.md -------------------------------------------------------------------------------- /src/console/old/Console-Command-Gremlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/old/Console-Command-Gremlin.md -------------------------------------------------------------------------------- /src/console/old/Console-Command-Insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/old/Console-Command-Insert.md -------------------------------------------------------------------------------- /src/console/old/Console-Command-Revoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/old/Console-Command-Revoke.md -------------------------------------------------------------------------------- /src/console/old/Console-Command-Rollback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/old/Console-Command-Rollback.md -------------------------------------------------------------------------------- /src/console/old/Console-Command-Sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/console/old/Console-Command-Sleep.md -------------------------------------------------------------------------------- /src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/css/custom.css -------------------------------------------------------------------------------- /src/datamodeling/Concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/datamodeling/Concepts.md -------------------------------------------------------------------------------- /src/datamodeling/Multi-Tenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/datamodeling/Multi-Tenant.md -------------------------------------------------------------------------------- /src/distributed/Data-Centers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/distributed/Data-Centers.md -------------------------------------------------------------------------------- /src/distributed/Distributed-Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/distributed/Distributed-Architecture.md -------------------------------------------------------------------------------- /src/distributed/Distributed-Runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/distributed/Distributed-Runtime.md -------------------------------------------------------------------------------- /src/distributed/Distributed-Sharding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/distributed/Distributed-Sharding.md -------------------------------------------------------------------------------- /src/distributed/Replication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/distributed/Replication.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-Clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-Clusters.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-Command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-Command.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-GetClusterIdFor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-GetClusterIdFor.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-GetClusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-GetClusters.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-Gremlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-Gremlin.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-Insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-Insert.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-JS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-JS.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-Query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-Query.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-Select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-Select.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-SqlBatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-SqlBatch.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database-Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database-Update.md -------------------------------------------------------------------------------- /src/dotnet/NET-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Database.md -------------------------------------------------------------------------------- /src/dotnet/NET-Query-Conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Query-Conditions.md -------------------------------------------------------------------------------- /src/dotnet/NET-Query-Limiter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Query-Limiter.md -------------------------------------------------------------------------------- /src/dotnet/NET-Query-Sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Query-Sort.md -------------------------------------------------------------------------------- /src/dotnet/NET-Query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Query.md -------------------------------------------------------------------------------- /src/dotnet/NET-Server-ConfigGet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Server-ConfigGet.md -------------------------------------------------------------------------------- /src/dotnet/NET-Server-ConfigList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Server-ConfigList.md -------------------------------------------------------------------------------- /src/dotnet/NET-Server-ConfigSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Server-ConfigSet.md -------------------------------------------------------------------------------- /src/dotnet/NET-Server-CreateDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Server-CreateDatabase.md -------------------------------------------------------------------------------- /src/dotnet/NET-Server-DatabaseExists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Server-DatabaseExists.md -------------------------------------------------------------------------------- /src/dotnet/NET-Server-Databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Server-Databases.md -------------------------------------------------------------------------------- /src/dotnet/NET-Server-DropDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Server-DropDatabase.md -------------------------------------------------------------------------------- /src/dotnet/NET-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Server.md -------------------------------------------------------------------------------- /src/dotnet/NET-Transactions-Add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Transactions-Add.md -------------------------------------------------------------------------------- /src/dotnet/NET-Transactions-AddEdge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Transactions-AddEdge.md -------------------------------------------------------------------------------- /src/dotnet/NET-Transactions-AddOrUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Transactions-AddOrUpdate.md -------------------------------------------------------------------------------- /src/dotnet/NET-Transactions-Delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Transactions-Delete.md -------------------------------------------------------------------------------- /src/dotnet/NET-Transactions-Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Transactions-Update.md -------------------------------------------------------------------------------- /src/dotnet/NET-Transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET-Transactions.md -------------------------------------------------------------------------------- /src/dotnet/NET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/dotnet/NET.md -------------------------------------------------------------------------------- /src/ee/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/.DS_Store -------------------------------------------------------------------------------- /src/ee/Auditing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Auditing.md -------------------------------------------------------------------------------- /src/ee/Backup-Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Backup-Management.md -------------------------------------------------------------------------------- /src/ee/Cluster-Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Cluster-Management.md -------------------------------------------------------------------------------- /src/ee/Dashboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Dashboard.md -------------------------------------------------------------------------------- /src/ee/Enterprise-Edition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Enterprise-Edition.md -------------------------------------------------------------------------------- /src/ee/Neo4j-Importer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Neo4j-Importer.md -------------------------------------------------------------------------------- /src/ee/Profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Profiler.md -------------------------------------------------------------------------------- /src/ee/Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Security.md -------------------------------------------------------------------------------- /src/ee/Server-Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Server-Management.md -------------------------------------------------------------------------------- /src/ee/Server-Profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Server-Profiler.md -------------------------------------------------------------------------------- /src/ee/Settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Settings.md -------------------------------------------------------------------------------- /src/ee/Teleporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/Teleporter.md -------------------------------------------------------------------------------- /src/ee/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/images/.DS_Store -------------------------------------------------------------------------------- /src/ee/images/studio-auditing-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/images/studio-auditing-log.png -------------------------------------------------------------------------------- /src/ee/images/studio-dashboard-ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/images/studio-dashboard-ee.png -------------------------------------------------------------------------------- /src/ee/images/studio-monitoring-threads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/images/studio-monitoring-threads.png -------------------------------------------------------------------------------- /src/ee/images/studio-server-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/images/studio-server-management.png -------------------------------------------------------------------------------- /src/ee/images/studio-settings-profiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/ee/images/studio-settings-profiler.png -------------------------------------------------------------------------------- /src/etl/Block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Block.md -------------------------------------------------------------------------------- /src/etl/Configuration-File.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Configuration-File.md -------------------------------------------------------------------------------- /src/etl/ETL-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/ETL-Introduction.md -------------------------------------------------------------------------------- /src/etl/Extractor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Extractor.md -------------------------------------------------------------------------------- /src/etl/Import-a-tree-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Import-a-tree-structure.md -------------------------------------------------------------------------------- /src/etl/Import-from-CSV-to-a-Graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Import-from-CSV-to-a-Graph.md -------------------------------------------------------------------------------- /src/etl/Import-from-DBMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Import-from-DBMS.md -------------------------------------------------------------------------------- /src/etl/Import-from-DBPedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Import-from-DBPedia.md -------------------------------------------------------------------------------- /src/etl/Import-from-JSON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Import-from-JSON.md -------------------------------------------------------------------------------- /src/etl/Import-from-PARSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Import-from-PARSE.md -------------------------------------------------------------------------------- /src/etl/Loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Loader.md -------------------------------------------------------------------------------- /src/etl/Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Source.md -------------------------------------------------------------------------------- /src/etl/Transformer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/etl/Transformer.md -------------------------------------------------------------------------------- /src/fiveminute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/README.md -------------------------------------------------------------------------------- /src/fiveminute/images/idea-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/idea-main.png -------------------------------------------------------------------------------- /src/fiveminute/images/idea-main2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/idea-main2.png -------------------------------------------------------------------------------- /src/fiveminute/images/idea-new-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/idea-new-class.png -------------------------------------------------------------------------------- /src/fiveminute/images/idea-new-maven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/idea-new-maven.png -------------------------------------------------------------------------------- /src/fiveminute/images/idea-new-maven2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/idea-new-maven2.png -------------------------------------------------------------------------------- /src/fiveminute/images/idea-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/idea-new.png -------------------------------------------------------------------------------- /src/fiveminute/images/idea-pom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/idea-pom.png -------------------------------------------------------------------------------- /src/fiveminute/images/studio-browser-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/studio-browser-2.png -------------------------------------------------------------------------------- /src/fiveminute/images/studio-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/studio-browser.png -------------------------------------------------------------------------------- /src/fiveminute/images/studio-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/studio-login.png -------------------------------------------------------------------------------- /src/fiveminute/images/studio-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/images/studio-schema.png -------------------------------------------------------------------------------- /src/fiveminute/java-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/java-1.md -------------------------------------------------------------------------------- /src/fiveminute/java-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/java-2.md -------------------------------------------------------------------------------- /src/fiveminute/java-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/java-3.md -------------------------------------------------------------------------------- /src/fiveminute/java-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/java-4.md -------------------------------------------------------------------------------- /src/fiveminute/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/fiveminute/java.md -------------------------------------------------------------------------------- /src/general/Concurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/general/Concurrency.md -------------------------------------------------------------------------------- /src/general/Inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/general/Inheritance.md -------------------------------------------------------------------------------- /src/general/Managing-Dates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/general/Managing-Dates.md -------------------------------------------------------------------------------- /src/general/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/general/README.md -------------------------------------------------------------------------------- /src/general/Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/general/Schema.md -------------------------------------------------------------------------------- /src/general/Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/general/Types.md -------------------------------------------------------------------------------- /src/general/include-file-1.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | include text test -------------------------------------------------------------------------------- /src/gettingstarted/Chat-use-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/Chat-use-case.md -------------------------------------------------------------------------------- /src/gettingstarted/Distributed-Architecture.md: -------------------------------------------------------------------------------- 1 | 2 | # Distributed Architecture -------------------------------------------------------------------------------- /src/gettingstarted/Key-Value-use-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/Key-Value-use-case.md -------------------------------------------------------------------------------- /src/gettingstarted/Queue-use-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/Queue-use-case.md -------------------------------------------------------------------------------- /src/gettingstarted/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/README.md -------------------------------------------------------------------------------- /src/gettingstarted/Tutorial-Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/Tutorial-Classes.md -------------------------------------------------------------------------------- /src/gettingstarted/Tutorial-Clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/Tutorial-Clusters.md -------------------------------------------------------------------------------- /src/gettingstarted/Tutorial-Record-ID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/Tutorial-Record-ID.md -------------------------------------------------------------------------------- /src/gettingstarted/Tutorial-SQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/Tutorial-SQL.md -------------------------------------------------------------------------------- /src/gettingstarted/Users-Roles-Security.md: -------------------------------------------------------------------------------- 1 | # Users, Roles and Security -------------------------------------------------------------------------------- /src/gettingstarted/demodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/demodb/README.md -------------------------------------------------------------------------------- /src/gettingstarted/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gettingstarted/tutorials/README.md -------------------------------------------------------------------------------- /src/gremlin/Gremlin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/gremlin/Gremlin.md -------------------------------------------------------------------------------- /src/images/AddVertex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/AddVertex1.png -------------------------------------------------------------------------------- /src/images/AddVertex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/AddVertex2.png -------------------------------------------------------------------------------- /src/images/EditorMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/EditorMenu.png -------------------------------------------------------------------------------- /src/images/GraphEditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/GraphEditor.png -------------------------------------------------------------------------------- /src/images/GraphEditor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/GraphEditor2.png -------------------------------------------------------------------------------- /src/images/ORecordHierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/ORecordHierarchy.png -------------------------------------------------------------------------------- /src/images/PersonClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/PersonClass.png -------------------------------------------------------------------------------- /src/images/Property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/Property.png -------------------------------------------------------------------------------- /src/images/README.md: -------------------------------------------------------------------------------- 1 | This is the folder where images can be placed. 2 | -------------------------------------------------------------------------------- /src/images/Roles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/Roles2.png -------------------------------------------------------------------------------- /src/images/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/Settings.png -------------------------------------------------------------------------------- /src/images/addEdge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/addEdge.png -------------------------------------------------------------------------------- /src/images/addEdge1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/addEdge1.png -------------------------------------------------------------------------------- /src/images/addEdge2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/addEdge2.png -------------------------------------------------------------------------------- /src/images/auditing-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/auditing-configuration.png -------------------------------------------------------------------------------- /src/images/auditing-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/auditing-logs.png -------------------------------------------------------------------------------- /src/images/beers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/beers.jpg -------------------------------------------------------------------------------- /src/images/bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/bookmarks.png -------------------------------------------------------------------------------- /src/images/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/browse.png -------------------------------------------------------------------------------- /src/images/class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/class.png -------------------------------------------------------------------------------- /src/images/cloud/backup-s3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/cloud/backup-s3.png -------------------------------------------------------------------------------- /src/images/cloud/backup-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/cloud/backup-ssh.png -------------------------------------------------------------------------------- /src/images/cloud/cloud-account-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/cloud/cloud-account-login.png -------------------------------------------------------------------------------- /src/images/cloud/cloud-dropdown-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/cloud/cloud-dropdown-menu.png -------------------------------------------------------------------------------- /src/images/cloud/cloud-project-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/cloud/cloud-project-users.png -------------------------------------------------------------------------------- /src/images/configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/configuration.png -------------------------------------------------------------------------------- /src/images/connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/connections.png -------------------------------------------------------------------------------- /src/images/edgeMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/edgeMenu.png -------------------------------------------------------------------------------- /src/images/editDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/editDocument.png -------------------------------------------------------------------------------- /src/images/editVertex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/editVertex.png -------------------------------------------------------------------------------- /src/images/functions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/functions.png -------------------------------------------------------------------------------- /src/images/import-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/import-export.png -------------------------------------------------------------------------------- /src/images/importPublic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/importPublic.png -------------------------------------------------------------------------------- /src/images/indexes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/indexes.png -------------------------------------------------------------------------------- /src/images/java/orientdb-api-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/java/orientdb-api-stack.png -------------------------------------------------------------------------------- /src/images/java/orientdb-api-stack.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/java/orientdb-api-stack.pptx -------------------------------------------------------------------------------- /src/images/liveQuery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/liveQuery.png -------------------------------------------------------------------------------- /src/images/match-example-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/match-example-graph.png -------------------------------------------------------------------------------- /src/images/match-example-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/match-example-table.png -------------------------------------------------------------------------------- /src/images/newClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/newClass.png -------------------------------------------------------------------------------- /src/images/newDb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/newDb.png -------------------------------------------------------------------------------- /src/images/newIndex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/newIndex.png -------------------------------------------------------------------------------- /src/images/newProperty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/newProperty.png -------------------------------------------------------------------------------- /src/images/newRole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/newRole.png -------------------------------------------------------------------------------- /src/images/newRule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/newRule.png -------------------------------------------------------------------------------- /src/images/newUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/newUser.png -------------------------------------------------------------------------------- /src/images/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/query.png -------------------------------------------------------------------------------- /src/images/queryPolling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/queryPolling.png -------------------------------------------------------------------------------- /src/images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/result.png -------------------------------------------------------------------------------- /src/images/resultRaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/resultRaw.png -------------------------------------------------------------------------------- /src/images/roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/roles.png -------------------------------------------------------------------------------- /src/images/runStudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/runStudio.png -------------------------------------------------------------------------------- /src/images/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/schema.png -------------------------------------------------------------------------------- /src/images/server-level-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/server-level-commands.png -------------------------------------------------------------------------------- /src/images/serverConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/serverConfig.png -------------------------------------------------------------------------------- /src/images/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/storage.png -------------------------------------------------------------------------------- /src/images/strictSQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/strictSQL.png -------------------------------------------------------------------------------- /src/images/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/structure.png -------------------------------------------------------------------------------- /src/images/studio-auditing-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-auditing-log.png -------------------------------------------------------------------------------- /src/images/studio-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-configuration.png -------------------------------------------------------------------------------- /src/images/studio-conns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-conns.png -------------------------------------------------------------------------------- /src/images/studio-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-dashboard.png -------------------------------------------------------------------------------- /src/images/studio-data-centers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-data-centers.png -------------------------------------------------------------------------------- /src/images/studio-dbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-dbs.png -------------------------------------------------------------------------------- /src/images/studio-function-factorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-function-factorial.png -------------------------------------------------------------------------------- /src/images/studio-function-sum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-function-sum.png -------------------------------------------------------------------------------- /src/images/studio-importPublic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-importPublic.png -------------------------------------------------------------------------------- /src/images/studio-newDb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-newDb.png -------------------------------------------------------------------------------- /src/images/studio-stats-2servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-stats-2servers.png -------------------------------------------------------------------------------- /src/images/studio-stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio-stats.png -------------------------------------------------------------------------------- /src/images/studio/studio-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/studio/studio-login.png -------------------------------------------------------------------------------- /src/images/teleporter-execution-dump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/teleporter-execution-dump.png -------------------------------------------------------------------------------- /src/images/teleporter-migration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/teleporter-migration.png -------------------------------------------------------------------------------- /src/images/teleporter-migration1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/teleporter-migration1.png -------------------------------------------------------------------------------- /src/images/teleporter-migration2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/teleporter-migration2.png -------------------------------------------------------------------------------- /src/images/teleporter-whole-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/teleporter-whole-workflow.png -------------------------------------------------------------------------------- /src/images/tutorial-select-from-rid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/tutorial-select-from-rid.png -------------------------------------------------------------------------------- /src/images/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/users.png -------------------------------------------------------------------------------- /src/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/images/warning.png -------------------------------------------------------------------------------- /src/indexing/Auto-Sharding-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/indexing/Auto-Sharding-Index.md -------------------------------------------------------------------------------- /src/indexing/Full-Text-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/indexing/Full-Text-Index.md -------------------------------------------------------------------------------- /src/indexing/FullTextIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/indexing/FullTextIndex.md -------------------------------------------------------------------------------- /src/indexing/Hash-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/indexing/Hash-Index.md -------------------------------------------------------------------------------- /src/indexing/Indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/indexing/Indexes.md -------------------------------------------------------------------------------- /src/indexing/SB-Tree-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/indexing/SB-Tree-index.md -------------------------------------------------------------------------------- /src/indexing/Spatial-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/indexing/Spatial-Index.md -------------------------------------------------------------------------------- /src/internals/Caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Caching.md -------------------------------------------------------------------------------- /src/internals/Clusters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Clusters.md -------------------------------------------------------------------------------- /src/internals/Custom-Index-Engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Custom-Index-Engine.md -------------------------------------------------------------------------------- /src/internals/DB-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/DB-Server.md -------------------------------------------------------------------------------- /src/internals/Dynamic-Hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Dynamic-Hooks.md -------------------------------------------------------------------------------- /src/internals/Embedded-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Embedded-Server.md -------------------------------------------------------------------------------- /src/internals/Hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Hook.md -------------------------------------------------------------------------------- /src/internals/Internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Internals.md -------------------------------------------------------------------------------- /src/internals/Limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Limits.md -------------------------------------------------------------------------------- /src/internals/Local-Storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Local-Storage.md -------------------------------------------------------------------------------- /src/internals/Memory-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Memory-storage.md -------------------------------------------------------------------------------- /src/internals/Network-Binary-Protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Network-Binary-Protocol.md -------------------------------------------------------------------------------- /src/internals/Paginated-Local-Storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Paginated-Local-Storage.md -------------------------------------------------------------------------------- /src/internals/RidBag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/RidBag.md -------------------------------------------------------------------------------- /src/internals/Server-Status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Server-Status.md -------------------------------------------------------------------------------- /src/internals/Storages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Storages.md -------------------------------------------------------------------------------- /src/internals/System-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/System-Database.md -------------------------------------------------------------------------------- /src/internals/System-Users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/System-Users.md -------------------------------------------------------------------------------- /src/internals/Transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Transactions.md -------------------------------------------------------------------------------- /src/internals/Web-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Web-Server.md -------------------------------------------------------------------------------- /src/internals/Write-Ahead-Log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/Write-Ahead-Log.md -------------------------------------------------------------------------------- /src/internals/messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/messages.md -------------------------------------------------------------------------------- /src/internals/plocal-storage-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/internals/plocal-storage-engine.md -------------------------------------------------------------------------------- /src/introduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/introduction/README.md -------------------------------------------------------------------------------- /src/java/Binary-Data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Binary-Data.md -------------------------------------------------------------------------------- /src/java/Document-API-Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Document-API-Class.md -------------------------------------------------------------------------------- /src/java/Document-API-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Document-API-Database.md -------------------------------------------------------------------------------- /src/java/Document-API-Documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Document-API-Documents.md -------------------------------------------------------------------------------- /src/java/Document-API-Property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Document-API-Property.md -------------------------------------------------------------------------------- /src/java/Document-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Document-Database.md -------------------------------------------------------------------------------- /src/java/Fetching-Strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Fetching-Strategies.md -------------------------------------------------------------------------------- /src/java/Graph-Batch-Insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Graph-Batch-Insert.md -------------------------------------------------------------------------------- /src/java/Graph-Blueprints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Graph-Blueprints.md -------------------------------------------------------------------------------- /src/java/Graph-Consistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Graph-Consistency.md -------------------------------------------------------------------------------- /src/java/Graph-Database-Tinkerpop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Graph-Database-Tinkerpop.md -------------------------------------------------------------------------------- /src/java/Graph-Factory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Graph-Factory.md -------------------------------------------------------------------------------- /src/java/Graph-Schema-Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Graph-Schema-Class.md -------------------------------------------------------------------------------- /src/java/Graph-Schema-Property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Graph-Schema-Property.md -------------------------------------------------------------------------------- /src/java/Graph-Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Graph-Schema.md -------------------------------------------------------------------------------- /src/java/Graph-VE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Graph-VE.md -------------------------------------------------------------------------------- /src/java/JPA-Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/JPA-Configuration.md -------------------------------------------------------------------------------- /src/java/Java-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-API.md -------------------------------------------------------------------------------- /src/java/Java-Hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-Hooks.md -------------------------------------------------------------------------------- /src/java/Java-Multi-Threading-Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-Multi-Threading-Usage.md -------------------------------------------------------------------------------- /src/java/Java-Multi-Threading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-Multi-Threading.md -------------------------------------------------------------------------------- /src/java/Java-MultiModel-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-MultiModel-API.md -------------------------------------------------------------------------------- /src/java/Java-MultiModel-Data-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-MultiModel-Data-API.md -------------------------------------------------------------------------------- /src/java/Java-Query-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-Query-API.md -------------------------------------------------------------------------------- /src/java/Java-Schema-Api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-Schema-Api.md -------------------------------------------------------------------------------- /src/java/Java-Traverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-Traverse.md -------------------------------------------------------------------------------- /src/java/Java-Web-Apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Java-Web-Apps.md -------------------------------------------------------------------------------- /src/java/Lightweight-Edges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Lightweight-Edges.md -------------------------------------------------------------------------------- /src/java/Live-Query-Comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Live-Query-Comparison.md -------------------------------------------------------------------------------- /src/java/Live-Query-Intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Live-Query-Intro.md -------------------------------------------------------------------------------- /src/java/Live-Query-Java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Live-Query-Java.md -------------------------------------------------------------------------------- /src/java/Live-Query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Live-Query.md -------------------------------------------------------------------------------- /src/java/Object-2-Record-Java-Binding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Object-2-Record-Java-Binding.md -------------------------------------------------------------------------------- /src/java/Object-DB-Attach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Object-DB-Attach.md -------------------------------------------------------------------------------- /src/java/Object-DB-Interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Object-DB-Interface.md -------------------------------------------------------------------------------- /src/java/Object-DB-POJO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Object-DB-POJO.md -------------------------------------------------------------------------------- /src/java/Object-DB-Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Object-DB-Schema.md -------------------------------------------------------------------------------- /src/java/Object-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Object-Database.md -------------------------------------------------------------------------------- /src/java/Partitioned-Graphs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Partitioned-Graphs.md -------------------------------------------------------------------------------- /src/java/TODO/Java-Backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/TODO/Java-Backup.md -------------------------------------------------------------------------------- /src/java/TODO/Java-Batch-Script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/TODO/Java-Batch-Script.md -------------------------------------------------------------------------------- /src/java/TODO/Java-Export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/TODO/Java-Export.md -------------------------------------------------------------------------------- /src/java/TODO/Java-Import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/TODO/Java-Import.md -------------------------------------------------------------------------------- /src/java/TODO/Java-Restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/TODO/Java-Restore.md -------------------------------------------------------------------------------- /src/java/TODO/Java-Sequences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/TODO/Java-Sequences.md -------------------------------------------------------------------------------- /src/java/TODO/Server-Management-Java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/TODO/Server-Management-Java.md -------------------------------------------------------------------------------- /src/java/Transaction-propagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Transaction-propagation.md -------------------------------------------------------------------------------- /src/java/Tutorial-Java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/Tutorial-Java.md -------------------------------------------------------------------------------- /src/java/ref/OClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass.md -------------------------------------------------------------------------------- /src/java/ref/OClass/addCluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/addCluster.md -------------------------------------------------------------------------------- /src/java/ref/OClass/addClusterId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/addClusterId.md -------------------------------------------------------------------------------- /src/java/ref/OClass/addSuperClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/addSuperClass.md -------------------------------------------------------------------------------- /src/java/ref/OClass/areIndexed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/areIndexed.md -------------------------------------------------------------------------------- /src/java/ref/OClass/count.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/count.md -------------------------------------------------------------------------------- /src/java/ref/OClass/createIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/createIndex.md -------------------------------------------------------------------------------- /src/java/ref/OClass/createProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/createProperty.md -------------------------------------------------------------------------------- /src/java/ref/OClass/dropProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/dropProperty.md -------------------------------------------------------------------------------- /src/java/ref/OClass/existsProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/existsProperty.md -------------------------------------------------------------------------------- /src/java/ref/OClass/getAllSubclasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/getAllSubclasses.md -------------------------------------------------------------------------------- /src/java/ref/OClass/getClassIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/getClassIndex.md -------------------------------------------------------------------------------- /src/java/ref/OClass/getClassIndexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/getClassIndexes.md -------------------------------------------------------------------------------- /src/java/ref/OClass/getClusterIds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/getClusterIds.md -------------------------------------------------------------------------------- /src/java/ref/OClass/getName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/getName.md -------------------------------------------------------------------------------- /src/java/ref/OClass/getProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/getProperty.md -------------------------------------------------------------------------------- /src/java/ref/OClass/getSubclasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/getSubclasses.md -------------------------------------------------------------------------------- /src/java/ref/OClass/hasClusterId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/hasClusterId.md -------------------------------------------------------------------------------- /src/java/ref/OClass/hasSuperClasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/hasSuperClasses.md -------------------------------------------------------------------------------- /src/java/ref/OClass/isEdgeType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/isEdgeType.md -------------------------------------------------------------------------------- /src/java/ref/OClass/isVertexType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/isVertexType.md -------------------------------------------------------------------------------- /src/java/ref/OClass/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/properties.md -------------------------------------------------------------------------------- /src/java/ref/OClass/propertiesMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/propertiesMap.md -------------------------------------------------------------------------------- /src/java/ref/OClass/removeClusterId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/removeClusterId.md -------------------------------------------------------------------------------- /src/java/ref/OClass/removeSuperClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/removeSuperClass.md -------------------------------------------------------------------------------- /src/java/ref/OClass/setName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/setName.md -------------------------------------------------------------------------------- /src/java/ref/OClass/truncate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/truncate.md -------------------------------------------------------------------------------- /src/java/ref/OClass/truncateCluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OClass/truncateCluster.md -------------------------------------------------------------------------------- /src/java/ref/OCluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/close.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/delete.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/deleteRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/deleteRecord.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/exists.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/getFileName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/getFileName.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/getId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/getId.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/getLastPosition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/getLastPosition.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/getName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/getName.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/getNextPosition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/getNextPosition.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/getRecordsSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/getRecordsSize.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/hideRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/hideRecord.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/open.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/truncate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/truncate.md -------------------------------------------------------------------------------- /src/java/ref/OCluster/updateRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OCluster/updateRecord.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument/begin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument/begin.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument/close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument/close.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument/commit.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument/delete.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument/getURL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument/getURL.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument/live.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument/live.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument/load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument/load.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument/query.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseDocument/save.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseDocument/save.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseListener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseListener.md -------------------------------------------------------------------------------- /src/java/ref/ODatabaseSession.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ODatabaseSession.md -------------------------------------------------------------------------------- /src/java/ref/OEdge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OEdge.md -------------------------------------------------------------------------------- /src/java/ref/OEdge/getFrom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OEdge/getFrom.md -------------------------------------------------------------------------------- /src/java/ref/OEdge/getTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OEdge/getTo.md -------------------------------------------------------------------------------- /src/java/ref/OEdge/isLightweight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OEdge/isLightweight.md -------------------------------------------------------------------------------- /src/java/ref/OElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OElement.md -------------------------------------------------------------------------------- /src/java/ref/OElement/asEdge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OElement/asEdge.md -------------------------------------------------------------------------------- /src/java/ref/OElement/asVertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OElement/asVertex.md -------------------------------------------------------------------------------- /src/java/ref/OElement/getProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OElement/getProperty.md -------------------------------------------------------------------------------- /src/java/ref/OElement/getSchemaType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OElement/getSchemaType.md -------------------------------------------------------------------------------- /src/java/ref/OElement/isEdge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OElement/isEdge.md -------------------------------------------------------------------------------- /src/java/ref/OElement/isVertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OElement/isVertex.md -------------------------------------------------------------------------------- /src/java/ref/OElement/removeProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OElement/removeProperty.md -------------------------------------------------------------------------------- /src/java/ref/OElement/setProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OElement/setProperty.md -------------------------------------------------------------------------------- /src/java/ref/OFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/getCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/getCode.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/getId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/getId.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/getLanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/getLanguage.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/getName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/getName.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/getParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/getParameters.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/isIdempotent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/isIdempotent.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/setCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/setCode.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/setIdempotent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/setIdempotent.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/setLanguage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/setLanguage.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/setName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/setName.md -------------------------------------------------------------------------------- /src/java/ref/OFunction/setParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunction/setParameters.md -------------------------------------------------------------------------------- /src/java/ref/OFunctionLibrary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OFunctionLibrary.md -------------------------------------------------------------------------------- /src/java/ref/OIntent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OIntent.md -------------------------------------------------------------------------------- /src/java/ref/OLiveQueryMonitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OLiveQueryMonitor.md -------------------------------------------------------------------------------- /src/java/ref/OLiveQueryResultListener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OLiveQueryResultListener.md -------------------------------------------------------------------------------- /src/java/ref/OMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OMetadata.md -------------------------------------------------------------------------------- /src/java/ref/OMetadata/getSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OMetadata/getSchema.md -------------------------------------------------------------------------------- /src/java/ref/OProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/getLinkedClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/getLinkedClass.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/getLinkedType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/getLinkedType.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/getMax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/getMax.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/getMin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/getMin.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/getName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/getName.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/getType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/getType.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/isMandatory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/isMandatory.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/isNotNull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/isNotNull.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/isReadonly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/isReadonly.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/setLinkedClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/setLinkedClass.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/setLinkedType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/setLinkedType.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/setMax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/setMax.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/setMin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/setMin.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/setName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/setName.md -------------------------------------------------------------------------------- /src/java/ref/OProperty/setType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OProperty/setType.md -------------------------------------------------------------------------------- /src/java/ref/ORID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ORID.md -------------------------------------------------------------------------------- /src/java/ref/ORecordOperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ORecordOperation.md -------------------------------------------------------------------------------- /src/java/ref/OResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResult.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet/close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet/close.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet/edgeStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet/edgeStream.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet/elementStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet/elementStream.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet/estimateSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet/estimateSize.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet/hasNext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet/hasNext.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet/next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet/next.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet/remove.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet/stream.md -------------------------------------------------------------------------------- /src/java/ref/OResultSet/vertexStream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OResultSet/vertexStream.md -------------------------------------------------------------------------------- /src/java/ref/ORule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/ORule.md -------------------------------------------------------------------------------- /src/java/ref/OSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSchema.md -------------------------------------------------------------------------------- /src/java/ref/OSchema/countClasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSchema/countClasses.md -------------------------------------------------------------------------------- /src/java/ref/OSchema/createClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSchema/createClass.md -------------------------------------------------------------------------------- /src/java/ref/OSchema/dropClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSchema/dropClass.md -------------------------------------------------------------------------------- /src/java/ref/OSchema/existsClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSchema/existsClass.md -------------------------------------------------------------------------------- /src/java/ref/OSchema/getClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSchema/getClass.md -------------------------------------------------------------------------------- /src/java/ref/OSchema/getClasses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSchema/getClasses.md -------------------------------------------------------------------------------- /src/java/ref/OSchema/getOrCreateClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSchema/getOrCreateClass.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityRole.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityRole/addRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityRole/addRule.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityRole/allow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityRole/allow.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityRole/getName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityRole/getName.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityRole/getRuleSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityRole/getRuleSet.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityRole/grant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityRole/grant.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityRole/hasRule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityRole/hasRule.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityRole/revoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityRole/revoke.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityUser.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityUser/addRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityUser/addRole.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityUser/allow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityUser/allow.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityUser/getName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityUser/getName.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityUser/getRoles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityUser/getRoles.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityUser/hasRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityUser/hasRole.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityUser/removeRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityUser/removeRole.md -------------------------------------------------------------------------------- /src/java/ref/OSecurityUser/setName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OSecurityUser/setName.md -------------------------------------------------------------------------------- /src/java/ref/OServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer.md -------------------------------------------------------------------------------- /src/java/ref/OServer/addTemporaryUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/addTemporaryUser.md -------------------------------------------------------------------------------- /src/java/ref/OServer/addUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/addUser.md -------------------------------------------------------------------------------- /src/java/ref/OServer/authenticate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/authenticate.md -------------------------------------------------------------------------------- /src/java/ref/OServer/dropUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/dropUser.md -------------------------------------------------------------------------------- /src/java/ref/OServer/getConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/getConfiguration.md -------------------------------------------------------------------------------- /src/java/ref/OServer/getInstance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/getInstance.md -------------------------------------------------------------------------------- /src/java/ref/OServer/getStoragePath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/getStoragePath.md -------------------------------------------------------------------------------- /src/java/ref/OServer/getUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/getUser.md -------------------------------------------------------------------------------- /src/java/ref/OServer/isActive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/isActive.md -------------------------------------------------------------------------------- /src/java/ref/OServer/isAllowed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/isAllowed.md -------------------------------------------------------------------------------- /src/java/ref/OServer/openDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/openDatabase.md -------------------------------------------------------------------------------- /src/java/ref/OServer/restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/restart.md -------------------------------------------------------------------------------- /src/java/ref/OServer/shutdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/shutdown.md -------------------------------------------------------------------------------- /src/java/ref/OServer/startup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OServer/startup.md -------------------------------------------------------------------------------- /src/java/ref/OTransaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OTransaction.md -------------------------------------------------------------------------------- /src/java/ref/OTransaction/begin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OTransaction/begin.md -------------------------------------------------------------------------------- /src/java/ref/OTransaction/close.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OTransaction/close.md -------------------------------------------------------------------------------- /src/java/ref/OTransaction/commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OTransaction/commit.md -------------------------------------------------------------------------------- /src/java/ref/OTransaction/getDatabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OTransaction/getDatabase.md -------------------------------------------------------------------------------- /src/java/ref/OTransaction/getStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OTransaction/getStatus.md -------------------------------------------------------------------------------- /src/java/ref/OTransaction/rollback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OTransaction/rollback.md -------------------------------------------------------------------------------- /src/java/ref/OType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OType.md -------------------------------------------------------------------------------- /src/java/ref/OVertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OVertex.md -------------------------------------------------------------------------------- /src/java/ref/OVertex/addEdge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OVertex/addEdge.md -------------------------------------------------------------------------------- /src/java/ref/OVertex/getEdges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OVertex/getEdges.md -------------------------------------------------------------------------------- /src/java/ref/OVertex/getVertices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OVertex/getVertices.md -------------------------------------------------------------------------------- /src/java/ref/OrientDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OrientDB.md -------------------------------------------------------------------------------- /src/java/ref/OrientDB/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OrientDB/create.md -------------------------------------------------------------------------------- /src/java/ref/OrientDB/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OrientDB/drop.md -------------------------------------------------------------------------------- /src/java/ref/OrientDB/exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OrientDB/exists.md -------------------------------------------------------------------------------- /src/java/ref/OrientDB/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OrientDB/list.md -------------------------------------------------------------------------------- /src/java/ref/OrientDB/open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/OrientDB/open.md -------------------------------------------------------------------------------- /src/java/ref/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/java/ref/README.md -------------------------------------------------------------------------------- /src/jdbc-driver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/jdbc-driver/README.md -------------------------------------------------------------------------------- /src/js/Javascript-Command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/js/Javascript-Command.md -------------------------------------------------------------------------------- /src/js/Javascript-Driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/js/Javascript-Driver.md -------------------------------------------------------------------------------- /src/js/Script-Interpreter-Plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/js/Script-Interpreter-Plugin.md -------------------------------------------------------------------------------- /src/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/js/custom.js -------------------------------------------------------------------------------- /src/legacy/2011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/2011.md -------------------------------------------------------------------------------- /src/legacy/Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Architecture.md -------------------------------------------------------------------------------- /src/legacy/Build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Build.md -------------------------------------------------------------------------------- /src/legacy/Code-conventions.md: -------------------------------------------------------------------------------- 1 | # Code conventions 2 | 3 | ## DRAFT 4 | -------------------------------------------------------------------------------- /src/legacy/Console-Command-Show-Holes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Console-Command-Show-Holes.md -------------------------------------------------------------------------------- /src/legacy/Distributed-Cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Distributed-Cache.md -------------------------------------------------------------------------------- /src/legacy/DocumentDB-Comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/DocumentDB-Comparison.md -------------------------------------------------------------------------------- /src/legacy/Download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Download.md -------------------------------------------------------------------------------- /src/legacy/GraphDB-Comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/GraphDB-Comparison.md -------------------------------------------------------------------------------- /src/legacy/HA-Upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/HA-Upgrading.md -------------------------------------------------------------------------------- /src/legacy/Hackaton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Hackaton.md -------------------------------------------------------------------------------- /src/legacy/Home-Old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Home-Old.md -------------------------------------------------------------------------------- /src/legacy/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Home.md -------------------------------------------------------------------------------- /src/legacy/Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Install.md -------------------------------------------------------------------------------- /src/legacy/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Introduction.md -------------------------------------------------------------------------------- /src/legacy/Migrating-from-2.2.x.md: -------------------------------------------------------------------------------- 1 | 2 | # Migrating from 2.2.x -------------------------------------------------------------------------------- /src/legacy/Migrating-from-older-versions.md: -------------------------------------------------------------------------------- 1 | 2 | # Migrating from Older Versions -------------------------------------------------------------------------------- /src/legacy/Migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Migration.md -------------------------------------------------------------------------------- /src/legacy/Operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Operations.md -------------------------------------------------------------------------------- /src/legacy/Presentations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Presentations.md -------------------------------------------------------------------------------- /src/legacy/Query-Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Query-Examples.md -------------------------------------------------------------------------------- /src/legacy/Quick-Start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Quick-Start.md -------------------------------------------------------------------------------- /src/legacy/Release-2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Release-2.1.0.md -------------------------------------------------------------------------------- /src/legacy/Release-2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Release-2.2.0.md -------------------------------------------------------------------------------- /src/legacy/SUMMARY_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/SUMMARY_old.md -------------------------------------------------------------------------------- /src/legacy/Session-Management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Session-Management.md -------------------------------------------------------------------------------- /src/legacy/Spatial-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Spatial-Module.md -------------------------------------------------------------------------------- /src/legacy/Studio-Executing-Query.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/legacy/TODO.md: -------------------------------------------------------------------------------- 1 | # TODO 2 | 3 | missing chapter -------------------------------------------------------------------------------- /src/legacy/Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Team.md -------------------------------------------------------------------------------- /src/legacy/Use-Cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/Use-Cases.md -------------------------------------------------------------------------------- /src/legacy/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/legacy/index.txt -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-BinaryRecord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-BinaryRecord.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-Database.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-Date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-Date.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-DateTime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-DateTime.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-Document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-Document.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-FetchPlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-FetchPlan.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-RID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-RID.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-Server.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-Structs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-Structs.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-Types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-Types.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-command.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-create-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-create-db.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-create-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-create-record.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-db-exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-db-exists.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-db-reload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-db-reload.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-db-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-db-size.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-delete-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-delete-record.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-drop-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-drop-db.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-live-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-live-query.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-load-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-load-record.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-script.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo-update-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo-update-record.md -------------------------------------------------------------------------------- /src/marcopolo/MarcoPolo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/marcopolo/MarcoPolo.md -------------------------------------------------------------------------------- /src/misc/About-This-Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/About-This-Manual.md -------------------------------------------------------------------------------- /src/misc/Backward-compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Backward-compatibility.md -------------------------------------------------------------------------------- /src/misc/Cluster-Selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Cluster-Selection.md -------------------------------------------------------------------------------- /src/misc/Contribute-to-OrientDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Contribute-to-OrientDB.md -------------------------------------------------------------------------------- /src/misc/Documents-Vertices-Edges.md: -------------------------------------------------------------------------------- 1 | # Documents, Vertices and Edges 2 | 3 | ###TODO -------------------------------------------------------------------------------- /src/misc/Editions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Editions.md -------------------------------------------------------------------------------- /src/misc/Features.md: -------------------------------------------------------------------------------- 1 | #Features 2 | -------------------------------------------------------------------------------- /src/misc/Get-in-Touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Get-in-Touch.md -------------------------------------------------------------------------------- /src/misc/History.md: -------------------------------------------------------------------------------- 1 | #History -------------------------------------------------------------------------------- /src/misc/OrientDB-REST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/OrientDB-REST.md -------------------------------------------------------------------------------- /src/misc/Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Overview.md -------------------------------------------------------------------------------- /src/misc/Report-an-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Report-an-issue.md -------------------------------------------------------------------------------- /src/misc/Roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Roadmap.md -------------------------------------------------------------------------------- /src/misc/Stress-Test-Tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Stress-Test-Tool.md -------------------------------------------------------------------------------- /src/misc/Tools.md: -------------------------------------------------------------------------------- 1 | #Tools -------------------------------------------------------------------------------- /src/misc/Troubleshooting-Java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Troubleshooting-Java.md -------------------------------------------------------------------------------- /src/misc/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/misc/Troubleshooting.md -------------------------------------------------------------------------------- /src/misc/What-Is-OrientDB.md: -------------------------------------------------------------------------------- 1 | #What is OrientDB -------------------------------------------------------------------------------- /src/neo4j-to-orientdb-importer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/neo4j-to-orientdb-importer/README.md -------------------------------------------------------------------------------- /src/orientjs/Client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/Client.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-CLI-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-CLI-Database.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-CLI-Migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-CLI-Migration.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-CLI.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Class-Classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Class-Classes.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Class-Records.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Class-Records.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Class.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Database.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Events.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Functions.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Index.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Legacy.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Query-Create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Query-Create.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Query-Delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Query-Delete.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Query-Fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Query-Fetch.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Query-Insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Query-Insert.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Query-Select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Query-Select.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Query-Transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Query-Transform.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Query-Traverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Query-Traverse.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Query-Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Query-Update.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Query.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Record.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Server.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS-Transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS-Transactions.md -------------------------------------------------------------------------------- /src/orientjs/OrientJS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/OrientJS.md -------------------------------------------------------------------------------- /src/orientjs/Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/Reference.md -------------------------------------------------------------------------------- /src/orientjs/Session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/orientjs/Session.md -------------------------------------------------------------------------------- /src/php/PHP-Client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Client.md -------------------------------------------------------------------------------- /src/php/PHP-ClusterMap-dropClusterID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-ClusterMap-dropClusterID.md -------------------------------------------------------------------------------- /src/php/PHP-ClusterMap-getClusterID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-ClusterMap-getClusterID.md -------------------------------------------------------------------------------- /src/php/PHP-ClusterMap-getIdList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-ClusterMap-getIdList.md -------------------------------------------------------------------------------- /src/php/PHP-ClusterMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-ClusterMap.md -------------------------------------------------------------------------------- /src/php/PHP-Command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Command.md -------------------------------------------------------------------------------- /src/php/PHP-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Database.md -------------------------------------------------------------------------------- /src/php/PHP-ID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-ID.md -------------------------------------------------------------------------------- /src/php/PHP-Query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Query.md -------------------------------------------------------------------------------- /src/php/PHP-Record-getOClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Record-getOClass.md -------------------------------------------------------------------------------- /src/php/PHP-Record-getOData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Record-getOData.md -------------------------------------------------------------------------------- /src/php/PHP-Record-getRid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Record-getRid.md -------------------------------------------------------------------------------- /src/php/PHP-Record-jsonSerialize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Record-jsonSerialize.md -------------------------------------------------------------------------------- /src/php/PHP-Record-recordSerialize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Record-recordSerialize.md -------------------------------------------------------------------------------- /src/php/PHP-Record-setOClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Record-setOClass.md -------------------------------------------------------------------------------- /src/php/PHP-Record-setOData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Record-setOData.md -------------------------------------------------------------------------------- /src/php/PHP-Record-setRid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Record-setRid.md -------------------------------------------------------------------------------- /src/php/PHP-Record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Record.md -------------------------------------------------------------------------------- /src/php/PHP-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Server.md -------------------------------------------------------------------------------- /src/php/PHP-Tx-attach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Tx-attach.md -------------------------------------------------------------------------------- /src/php/PHP-Tx-begin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Tx-begin.md -------------------------------------------------------------------------------- /src/php/PHP-Tx-commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Tx-commit.md -------------------------------------------------------------------------------- /src/php/PHP-Tx-rollback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Tx-rollback.md -------------------------------------------------------------------------------- /src/php/PHP-Tx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-Tx.md -------------------------------------------------------------------------------- /src/php/PHP-dataClusterAdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dataClusterAdd.md -------------------------------------------------------------------------------- /src/php/PHP-dataClusterCount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dataClusterCount.md -------------------------------------------------------------------------------- /src/php/PHP-dataClusterDataRange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dataClusterDataRange.md -------------------------------------------------------------------------------- /src/php/PHP-dataClusterDrop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dataClusterDrop.md -------------------------------------------------------------------------------- /src/php/PHP-dbCountRecords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dbCountRecords.md -------------------------------------------------------------------------------- /src/php/PHP-dbCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dbCreate.md -------------------------------------------------------------------------------- /src/php/PHP-dbDrop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dbDrop.md -------------------------------------------------------------------------------- /src/php/PHP-dbExists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dbExists.md -------------------------------------------------------------------------------- /src/php/PHP-dbList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dbList.md -------------------------------------------------------------------------------- /src/php/PHP-dbReload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dbReload.md -------------------------------------------------------------------------------- /src/php/PHP-dbSize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-dbSize.md -------------------------------------------------------------------------------- /src/php/PHP-queryAsync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-queryAsync.md -------------------------------------------------------------------------------- /src/php/PHP-recordCreate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-recordCreate.md -------------------------------------------------------------------------------- /src/php/PHP-recordLoad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-recordLoad.md -------------------------------------------------------------------------------- /src/php/PHP-recordUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-recordUpdate.md -------------------------------------------------------------------------------- /src/php/PHP-sqlBatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP-sqlBatch.md -------------------------------------------------------------------------------- /src/php/PHP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/php/PHP.md -------------------------------------------------------------------------------- /src/plugins/Automatic-Backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/plugins/Automatic-Backup.md -------------------------------------------------------------------------------- /src/plugins/Extend-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/plugins/Extend-Server.md -------------------------------------------------------------------------------- /src/plugins/Gephi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/plugins/Gephi.md -------------------------------------------------------------------------------- /src/plugins/JMX-Plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/plugins/JMX-Plugin.md -------------------------------------------------------------------------------- /src/plugins/Mail-Plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/plugins/Mail-Plugin.md -------------------------------------------------------------------------------- /src/plugins/Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/plugins/Plugins.md -------------------------------------------------------------------------------- /src/plugins/Rexster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/plugins/Rexster.md -------------------------------------------------------------------------------- /src/plugins/SysLog-Plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/plugins/SysLog-Plugin.md -------------------------------------------------------------------------------- /src/plugins/spider-box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/plugins/spider-box.md -------------------------------------------------------------------------------- /src/programs/Client-Programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/programs/Client-Programs.md -------------------------------------------------------------------------------- /src/programs/Data-Import-Programs.md: -------------------------------------------------------------------------------- 1 | #OrientDB Data Import Programs 2 | -------------------------------------------------------------------------------- /src/programs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/programs/README.md -------------------------------------------------------------------------------- /src/programs/Server-Startup-Programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/programs/Server-Startup-Programs.md -------------------------------------------------------------------------------- /src/programs/backup.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/programs/dserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/programs/dserver.md -------------------------------------------------------------------------------- /src/programs/oetl.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/programs/orientdb-neo4j-importer.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/programs/orientdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/programs/orientdb.md -------------------------------------------------------------------------------- /src/programs/server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/programs/server.md -------------------------------------------------------------------------------- /src/programs/shutdown.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/programs/stresstester.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Client-Batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Client-Batch.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Client-Command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Client-Command.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Client-DB-Drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Client-DB-Drop.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Client-DB-List.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Client-DB-List.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Client-DB-Open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Client-DB-Open.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Client-DB-Size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Client-DB-Size.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Client-Query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Client-Query.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Client.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-OGM-Batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-OGM-Batch.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-OGM-Brokers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-OGM-Brokers.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-OGM-Connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-OGM-Connection.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-OGM-Schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-OGM-Schemas.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-OGM-Scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-OGM-Scripts.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-OGM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-OGM.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Tx-Attach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Tx-Attach.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Tx-Begin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Tx-Begin.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Tx-Commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Tx-Commit.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient-Tx-Rollback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient-Tx-Rollback.md -------------------------------------------------------------------------------- /src/pyorient/PyOrient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/pyorient/PyOrient.md -------------------------------------------------------------------------------- /src/release/3.2/API-Changes.md: -------------------------------------------------------------------------------- 1 | ## API Changes 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/release/3.2/Available-Packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/release/3.2/Available-Packages.md -------------------------------------------------------------------------------- /src/release/3.2/Known-issues.md: -------------------------------------------------------------------------------- 1 | ## Known Issues 2 | 3 | -------------------------------------------------------------------------------- /src/release/3.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/release/3.2/README.md -------------------------------------------------------------------------------- /src/release/3.2/SQL-Changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/release/3.2/SQL-Changes.md -------------------------------------------------------------------------------- /src/release/3.2/include-warning-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/release/3.2/include-warning-3.0.md -------------------------------------------------------------------------------- /src/release/Release-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/release/Release-Notes.md -------------------------------------------------------------------------------- /src/release/Upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/release/Upgrade.md -------------------------------------------------------------------------------- /src/release/Upgrading-Distributed-Environment.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Upgrading a Distributed Environment -------------------------------------------------------------------------------- /src/scala/Scala-Language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/scala/Scala-Language.md -------------------------------------------------------------------------------- /src/security/Database-Encryption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/security/Database-Encryption.md -------------------------------------------------------------------------------- /src/security/Database-Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/security/Database-Security.md -------------------------------------------------------------------------------- /src/security/OrientDB-Security-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/security/OrientDB-Security-Guide.md -------------------------------------------------------------------------------- /src/security/Security-Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/security/Security-Config.md -------------------------------------------------------------------------------- /src/security/Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/security/Security.md -------------------------------------------------------------------------------- /src/security/Server-Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/security/Server-Security.md -------------------------------------------------------------------------------- /src/security/Using-SSL-with-OrientDB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/security/Using-SSL-with-OrientDB.md -------------------------------------------------------------------------------- /src/serverlevel/Alter-System-Role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/serverlevel/Alter-System-Role.md -------------------------------------------------------------------------------- /src/serverlevel/Create-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/serverlevel/Create-Database.md -------------------------------------------------------------------------------- /src/serverlevel/Create-System-User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/serverlevel/Create-System-User.md -------------------------------------------------------------------------------- /src/serverlevel/Drop-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/serverlevel/Drop-Database.md -------------------------------------------------------------------------------- /src/serverlevel/Exists-System-User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/serverlevel/Exists-System-User.md -------------------------------------------------------------------------------- /src/serverlevel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/serverlevel/README.md -------------------------------------------------------------------------------- /src/sql/Command-Cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/Command-Cache.md -------------------------------------------------------------------------------- /src/sql/Pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/Pagination.md -------------------------------------------------------------------------------- /src/sql/Pivoting-With-Query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/Pivoting-With-Query.md -------------------------------------------------------------------------------- /src/sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/README.md -------------------------------------------------------------------------------- /src/sql/SQL-Alter-Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Alter-Class.md -------------------------------------------------------------------------------- /src/sql/SQL-Alter-Cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Alter-Cluster.md -------------------------------------------------------------------------------- /src/sql/SQL-Alter-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Alter-Database.md -------------------------------------------------------------------------------- /src/sql/SQL-Alter-Property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Alter-Property.md -------------------------------------------------------------------------------- /src/sql/SQL-Alter-Security-Policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Alter-Security-Policy.md -------------------------------------------------------------------------------- /src/sql/SQL-Alter-Sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Alter-Sequence.md -------------------------------------------------------------------------------- /src/sql/SQL-Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Commands.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Class.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Cluster.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Edge.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Function.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Index.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Link.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Property.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Security-Policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Security-Policy.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Sequence.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-User.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-Vertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-Vertex.md -------------------------------------------------------------------------------- /src/sql/SQL-Create-View.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Create-View.md -------------------------------------------------------------------------------- /src/sql/SQL-Delete-Edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Delete-Edge.md -------------------------------------------------------------------------------- /src/sql/SQL-Delete-Vertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Delete-Vertex.md -------------------------------------------------------------------------------- /src/sql/SQL-Delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Delete.md -------------------------------------------------------------------------------- /src/sql/SQL-Drop-Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Drop-Class.md -------------------------------------------------------------------------------- /src/sql/SQL-Drop-Cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Drop-Cluster.md -------------------------------------------------------------------------------- /src/sql/SQL-Drop-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Drop-Index.md -------------------------------------------------------------------------------- /src/sql/SQL-Drop-Property.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Drop-Property.md -------------------------------------------------------------------------------- /src/sql/SQL-Drop-Sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Drop-Sequence.md -------------------------------------------------------------------------------- /src/sql/SQL-Drop-User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Drop-User.md -------------------------------------------------------------------------------- /src/sql/SQL-Drop-View.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Drop-View.md -------------------------------------------------------------------------------- /src/sql/SQL-Explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Explain.md -------------------------------------------------------------------------------- /src/sql/SQL-Find-References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Find-References.md -------------------------------------------------------------------------------- /src/sql/SQL-Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Functions.md -------------------------------------------------------------------------------- /src/sql/SQL-Grant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Grant.md -------------------------------------------------------------------------------- /src/sql/SQL-HA-Remove-Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-HA-Remove-Server.md -------------------------------------------------------------------------------- /src/sql/SQL-HA-Set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-HA-Set.md -------------------------------------------------------------------------------- /src/sql/SQL-HA-Status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-HA-Status.md -------------------------------------------------------------------------------- /src/sql/SQL-HA-Sync-Cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-HA-Sync-Cluster.md -------------------------------------------------------------------------------- /src/sql/SQL-HA-Sync-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-HA-Sync-Database.md -------------------------------------------------------------------------------- /src/sql/SQL-Insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Insert.md -------------------------------------------------------------------------------- /src/sql/SQL-Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Introduction.md -------------------------------------------------------------------------------- /src/sql/SQL-Live-Select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Live-Select.md -------------------------------------------------------------------------------- /src/sql/SQL-Live-Unsubscribe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Live-Unsubscribe.md -------------------------------------------------------------------------------- /src/sql/SQL-Match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Match.md -------------------------------------------------------------------------------- /src/sql/SQL-Metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Metadata.md -------------------------------------------------------------------------------- /src/sql/SQL-Methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Methods.md -------------------------------------------------------------------------------- /src/sql/SQL-Move-Vertex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Move-Vertex.md -------------------------------------------------------------------------------- /src/sql/SQL-Optimize-Database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Optimize-Database.md -------------------------------------------------------------------------------- /src/sql/SQL-Profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Profile.md -------------------------------------------------------------------------------- /src/sql/SQL-Projections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Projections.md -------------------------------------------------------------------------------- /src/sql/SQL-Query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Query.md -------------------------------------------------------------------------------- /src/sql/SQL-Rebuild-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Rebuild-Index.md -------------------------------------------------------------------------------- /src/sql/SQL-Revoke.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Revoke.md -------------------------------------------------------------------------------- /src/sql/SQL-Select-Execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Select-Execution.md -------------------------------------------------------------------------------- /src/sql/SQL-Syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Syntax.md -------------------------------------------------------------------------------- /src/sql/SQL-Traverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Traverse.md -------------------------------------------------------------------------------- /src/sql/SQL-Truncate-Class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Truncate-Class.md -------------------------------------------------------------------------------- /src/sql/SQL-Truncate-Cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Truncate-Cluster.md -------------------------------------------------------------------------------- /src/sql/SQL-Truncate-Record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Truncate-Record.md -------------------------------------------------------------------------------- /src/sql/SQL-Update-Edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Update-Edge.md -------------------------------------------------------------------------------- /src/sql/SQL-Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Update.md -------------------------------------------------------------------------------- /src/sql/SQL-Where.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-Where.md -------------------------------------------------------------------------------- /src/sql/SQL-batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/SQL-batch.md -------------------------------------------------------------------------------- /src/sql/Sequences-and-auto-increment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/sql/Sequences-and-auto-increment.md -------------------------------------------------------------------------------- /src/studio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/studio/README.md -------------------------------------------------------------------------------- /src/studio/backups-imports-exports/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/studio/menus-panels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/studio/menus-panels/README.md -------------------------------------------------------------------------------- /src/studio/server-management/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/studio/server-management/Studio-Alerts-Management.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/studio/server-management/Studio-Security.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/studio/tmp.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/studio/working-with-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/studio/working-with-data/README.md -------------------------------------------------------------------------------- /src/studio/working-with-data/browse/Studio-Browse-Modifying-Data.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/studio/working-with-data/browse/Studio-Browse-Querying-Data.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/studio/working-with-data/browse/Studio-Edit-Edge.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/studio/working-with-databases/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/studio/working-with-functions/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/studio/working-with-schemas/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | link to the schema manager -------------------------------------------------------------------------------- /src/studio/working-with-users-roles/REAME.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/teleporter/Teleporter-Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/teleporter/Teleporter-Home.md -------------------------------------------------------------------------------- /src/teleporter/Teleporter-Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/teleporter/Teleporter-Index.md -------------------------------------------------------------------------------- /src/teleporter/Teleporter-Inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/teleporter/Teleporter-Inheritance.md -------------------------------------------------------------------------------- /src/tinkerpop3/OrientDB-TinkerPop3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/tinkerpop3/OrientDB-TinkerPop3.md -------------------------------------------------------------------------------- /src/troubleshooting/Leak-Detector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/troubleshooting/Leak-Detector.md -------------------------------------------------------------------------------- /src/troubleshooting/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tuning/Performance-Tuning-Graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/tuning/Performance-Tuning-Graph.md -------------------------------------------------------------------------------- /src/tuning/Performance-Tuning-Object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/tuning/Performance-Tuning-Object.md -------------------------------------------------------------------------------- /src/tuning/Performance-Tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/tuning/Performance-Tuning.md -------------------------------------------------------------------------------- /src/tuning/Profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/tuning/Profiler.md -------------------------------------------------------------------------------- /src/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/src/warning.png -------------------------------------------------------------------------------- /theme/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/book.js -------------------------------------------------------------------------------- /theme/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/css/chrome.css -------------------------------------------------------------------------------- /theme/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/css/general.css -------------------------------------------------------------------------------- /theme/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/css/print.css -------------------------------------------------------------------------------- /theme/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/css/variables.css -------------------------------------------------------------------------------- /theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/favicon.png -------------------------------------------------------------------------------- /theme/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/favicon.svg -------------------------------------------------------------------------------- /theme/fonts/OPEN-SANS-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/fonts/OPEN-SANS-LICENSE.txt -------------------------------------------------------------------------------- /theme/fonts/SOURCE-CODE-PRO-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt -------------------------------------------------------------------------------- /theme/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/fonts/fonts.css -------------------------------------------------------------------------------- /theme/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/highlight.css -------------------------------------------------------------------------------- /theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/highlight.js -------------------------------------------------------------------------------- /theme/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orientechnologies/orientdb-docs/HEAD/theme/index.hbs --------------------------------------------------------------------------------