Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
162 changes: 141 additions & 21 deletions docs/site/home/benefits-use-cases.html

Large diffs are not rendered by default.

182 changes: 153 additions & 29 deletions docs/site/home/community.html

Large diffs are not rendered by default.

146 changes: 120 additions & 26 deletions docs/site/home/download.html

Large diffs are not rendered by default.

112 changes: 108 additions & 4 deletions docs/site/home/gremlin.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,35 @@
<meta charset=utf-8>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="index, follow">
<link href="img/favicon.png" rel="shortcut icon" />
<title>Apache TinkerPop: Gremlin</title>
<meta name="description" content="">
<meta name="keywords" content="">
<title>Graph Query Language - Gremlin | Apache TinkerPop</title>
<meta name="description" content="Gremlin is a graph traversal language for querying databases with a functional, data-flow approach. Learn how to use this powerful query language.">
<meta name="keywords" content="graph query, Gremlin, traversal, TinkerPop">
<link rel="canonical" href="https://tinkerpop.apache.org/gremlin.html">

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://tinkerpop.apache.org/gremlin.html">
<meta property="og:title" content="Graph Query Language - Gremlin | Apache TinkerPop">
<meta property="og:description" content="Gremlin is a graph traversal language for querying databases with a functional, data-flow approach. Learn how to use this powerful query language.">
<meta property="og:image" content="https://tinkerpop.apache.org/img/gremlin/gremlin-logo.png">

<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@apachetinkerpop">
<meta name="twitter:title" content="Graph Query Language - Gremlin | Apache TinkerPop">
<meta name="twitter:description" content="Gremlin is a graph traversal language for querying databases with a functional, data-flow approach. Learn how to use this powerful query language.">
<meta name="twitter:image" content="https://tinkerpop.apache.org/img/gremlin/gremlin-logo.png">

<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet"/>
<link href="css/custome.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet"/>
<link href="css/prism.css" rel="stylesheet">
<link href="css/fonts.css" rel="stylesheet">
Comment thread
alexey-temnikov marked this conversation as resolved.

<!-- Matomo -->
<script>
var _paq = window._paq = window._paq || [];
Expand All @@ -46,6 +64,93 @@
})();
</script>
<!-- End Matomo Code -->

<!-- Structured Data / JSON-LD -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://tinkerpop.apache.org/#organization",
"name": "Apache TinkerPop",
"url": "https://tinkerpop.apache.org/",
"logo": {
"@type": "ImageObject",
"url": "https://tinkerpop.apache.org/img/logo.png",
"width": 280,
"height": 60
},
"description": "Apache TinkerPop is a graph computing framework for both graph databases (OLTP) and graph analytic systems (OLAP)."
},
{
"@type": "WebSite",
"@id": "https://tinkerpop.apache.org/#website",
"url": "https://tinkerpop.apache.org/",
"name": "Apache TinkerPop",
"publisher": {
"@id": "https://tinkerpop.apache.org/#organization"
}
},
{
"@type": "TechArticle",
"@id": "https://tinkerpop.apache.org/gremlin.html#article",
"headline": "Graph Query Language - Gremlin",
"description": "Gremlin is a graph traversal language that enables developers to query graph databases with a functional, data-flow approach. Learn how to use this powerful graph query language for your data relationships.",
"isPartOf": {
"@id": "https://tinkerpop.apache.org/#website"
},
"publisher": {
"@id": "https://tinkerpop.apache.org/#organization"
},
"mainEntityOfPage": {
"@id": "https://tinkerpop.apache.org/gremlin.html#webpage"
},
"inLanguage": "en",
"technicalArticle": true
},
{
"@type": "WebPage",
"@id": "https://tinkerpop.apache.org/gremlin.html#webpage",
"url": "https://tinkerpop.apache.org/gremlin.html",
"name": "Graph Query Language - Gremlin | Apache TinkerPop",
"isPartOf": {
"@id": "https://tinkerpop.apache.org/#website"
},
"about": {
"@id": "https://tinkerpop.apache.org/#organization"
},
"description": "Gremlin is a graph traversal language that enables developers to query graph databases with a functional, data-flow approach. Learn how to use this powerful graph query language for your data relationships."
},
{
"@type": "BreadcrumbList",
"@id": "https://tinkerpop.apache.org/gremlin.html#breadcrumblist",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "WebPage",
"@id": "https://tinkerpop.apache.org/",
"url": "https://tinkerpop.apache.org/",
"name": "Home"
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@type": "WebPage",
"@id": "https://tinkerpop.apache.org/gremlin.html",
"url": "https://tinkerpop.apache.org/gremlin.html",
"name": "Gremlin Query Language"
}
}
]
}
]
}
</script>
</head>
<body>
<!-- header -->
Expand Down Expand Up @@ -657,4 +762,3 @@ <h2 class="ft-40 text-blue bold">Join Us</h2>
<script src="js/prism.js"></script>
</body>
</html>

Loading