Skip to content

Commit 647959f

Browse files
author
Paul Korzhyk
committed
Hugo rebuild all branches
1 parent 382c399 commit 647959f

File tree

468 files changed

+7870
-4713
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

468 files changed

+7870
-4713
lines changed

published/404.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@
33

44
<head>
55
<meta charset="utf-8">
6-
<link
6+
<meta
7+
name="description"
8+
9+
10+
11+
>
12+
13+
<link
714
rel="manifest"
815
href="https://tour.dgraph.io//images/favicons/manifest.json"
916
>

published/aggregation/1.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
mutation {
22
schema {
3-
director.film: [uid] @reverse .
4-
genre: [uid] @reverse .
3+
director.film: uid @reverse .
4+
genre: uid @reverse .
55
initial_release_date: date @index .
6-
rating: [uid] @reverse .
7-
country: [uid] @reverse .
6+
rating: uid @reverse .
7+
country: uid @reverse .
88
loc: geo @index .
99
name: string @index(term, fulltext) .
1010
}

published/aggregation/1/index.html

Lines changed: 61 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@
77
<head>
88
<meta charset="utf-8">
99
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
10-
<link
10+
<meta
11+
name="description"
12+
13+
14+
15+
>
16+
17+
<link
1118
rel="manifest"
1219
href="https://tour.dgraph.io//images/favicons/manifest.json"
1320
>
@@ -40,6 +47,32 @@
4047
<link rel="icon" sizes="16x16" type="image/png" href="https://tour.dgraph.io//images/favicons/favicon-16x16.png">
4148

4249

50+
<script>
51+
if (window.location.href.indexOf("dgraph.io") > -1) {
52+
(function(i, s, o, g, r, a, m) {
53+
i["GoogleAnalyticsObject"] = r;
54+
(i[r] =
55+
i[r] ||
56+
function() {
57+
(i[r].q = i[r].q || []).push(arguments);
58+
}), (i[r].l = 1 * new Date());
59+
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
60+
a.async = 1;
61+
a.src = g;
62+
m.parentNode.insertBefore(a, m);
63+
})(
64+
window,
65+
document,
66+
"script",
67+
"https://www.google-analytics.com/analytics.js",
68+
"ga"
69+
);
70+
71+
ga("create", "UA-75364122-2", "auto");
72+
ga("send", "pageview");
73+
}
74+
</script>
75+
4376

4477
<title>
4578

@@ -87,6 +120,8 @@
87120
<option
88121
value="1.0.16"
89122

123+
selected="selected"
124+
90125
>
91126
Dgraph 1.0.16
92127
</option>
@@ -108,8 +143,6 @@
108143
<option
109144
value="20.03.0"
110145

111-
selected="selected"
112-
113146
>
114147
Dgraph 20.03.0
115148
</option>
@@ -125,8 +158,8 @@
125158

126159
<script>
127160
window.DgTour = {
128-
thisRelease: "20.03.0",
129-
latestRelease: "20.03.0",
161+
thisRelease: "1.0.16",
162+
latestRelease: "1.0.16",
130163
home: "https:\/\/tour.dgraph.io\/"
131164
}
132165
</script>
@@ -222,7 +255,7 @@
222255

223256
<li>
224257
<a href="https://tour.dgraph.io/basic/3/" class="topic">
225-
Data types, Schema and Type System
258+
Data types and Schema
226259
</a>
227260
</li>
228261

@@ -360,19 +393,19 @@
360393

361394
<li>
362395
<a href="https://tour.dgraph.io/schema/6/" class="topic">
363-
Reverse edges Query
396+
Exercise : Integrating existing data
364397
</a>
365398
</li>
366399

367400
<li>
368401
<a href="https://tour.dgraph.io/schema/7/" class="topic">
369-
Exercise : Integrating existing data
402+
Deleting Data
370403
</a>
371404
</li>
372405

373406
<li>
374407
<a href="https://tour.dgraph.io/schema/8/" class="topic">
375-
Deleting Data
408+
Predicate Query
376409
</a>
377410
</li>
378411

@@ -498,6 +531,12 @@
498531

499532
<li>
500533
<a href="https://tour.dgraph.io/blocksvars/13/" class="topic">
534+
expand and _predicate_
535+
</a>
536+
</li>
537+
538+
<li>
539+
<a href="https://tour.dgraph.io/blocksvars/14/" class="topic">
501540
Congratulations!
502541
</a>
503542
</li>
@@ -578,7 +617,7 @@ <h1 class="lesson-heading">A bigger dataset</h1>
578617
<p>Download it from that link or with something like</p>
579618
<pre><code>wget &quot;https://github.com/dgraph-io/benchmarks/blob/master/data/goldendata.rdf.gz?raw=true&quot; -O goldendata.rdf.gz -q
580619
</code></pre><p>Run the schema mutation and then load the dataset into Dgraph with</p>
581-
<pre><code>dgraph-live-loader -f goldendata.rdf.gz
620+
<pre><code>dgraph-live-loader -r goldendata.rdf.gz
582621
</code></pre><p>Dgraph reports back exactly how many triples were loaded and how long
583622
it took. There are around ??? movies and ???
584623
actors are described in the dataset.</p>
@@ -611,22 +650,22 @@ <h1 class="lesson-heading">A bigger dataset</h1>
611650

612651
<div class="runnable" data-initial="mutation {
613652
schema {
614-
director.film: [uid] @reverse .
615-
genre: [uid] @reverse .
653+
director.film: uid @reverse .
654+
genre: uid @reverse .
616655
initial_release_date: date @index .
617-
rating: [uid] @reverse .
618-
country: [uid] @reverse .
656+
rating: uid @reverse .
657+
country: uid @reverse .
619658
loc: geo @index .
620659
name: string @index(term, fulltext) .
621660
}
622661
}
623662
" data-current="mutation {
624663
schema {
625-
director.film: [uid] @reverse .
626-
genre: [uid] @reverse .
664+
director.film: uid @reverse .
665+
genre: uid @reverse .
627666
initial_release_date: date @index .
628-
rating: [uid] @reverse .
629-
country: [uid] @reverse .
667+
rating: uid @reverse .
668+
country: uid @reverse .
630669
loc: geo @index .
631670
name: string @index(term, fulltext) .
632671
}
@@ -658,11 +697,11 @@ <h1 class="lesson-heading">A bigger dataset</h1>
658697
<div class="runnable-tab-content active">
659698
<textarea class="query-content-editable">mutation {
660699
schema {
661-
director.film: [uid] @reverse .
662-
genre: [uid] @reverse .
700+
director.film: uid @reverse .
701+
genre: uid @reverse .
663702
initial_release_date: date @index .
664-
rating: [uid] @reverse .
665-
country: [uid] @reverse .
703+
rating: uid @reverse .
704+
country: uid @reverse .
666705
loc: geo @index .
667706
name: string @index(term, fulltext) .
668707
}
@@ -753,7 +792,6 @@ <h5 class="modal-title" id="runnable-url-modal-label">Change Dgraph Alpha URL</h
753792
</main>
754793

755794
<script src="https://tour.dgraph.io//js/build/dgraph-tour.js?8cb5063906121ab119297908cd5af67a"></script>
756-
<script src="//unpkg.com/@dgraph-io/community"></script>
757795
</body>
758796

759797
</html>

published/aggregation/2/index.html

Lines changed: 48 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@
77
<head>
88
<meta charset="utf-8">
99
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
10-
<link
10+
<meta
11+
name="description"
12+
13+
14+
15+
>
16+
17+
<link
1118
rel="manifest"
1219
href="https://tour.dgraph.io//images/favicons/manifest.json"
1320
>
@@ -40,6 +47,32 @@
4047
<link rel="icon" sizes="16x16" type="image/png" href="https://tour.dgraph.io//images/favicons/favicon-16x16.png">
4148

4249

50+
<script>
51+
if (window.location.href.indexOf("dgraph.io") > -1) {
52+
(function(i, s, o, g, r, a, m) {
53+
i["GoogleAnalyticsObject"] = r;
54+
(i[r] =
55+
i[r] ||
56+
function() {
57+
(i[r].q = i[r].q || []).push(arguments);
58+
}), (i[r].l = 1 * new Date());
59+
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
60+
a.async = 1;
61+
a.src = g;
62+
m.parentNode.insertBefore(a, m);
63+
})(
64+
window,
65+
document,
66+
"script",
67+
"https://www.google-analytics.com/analytics.js",
68+
"ga"
69+
);
70+
71+
ga("create", "UA-75364122-2", "auto");
72+
ga("send", "pageview");
73+
}
74+
</script>
75+
4376

4477
<title>
4578

@@ -87,6 +120,8 @@
87120
<option
88121
value="1.0.16"
89122

123+
selected="selected"
124+
90125
>
91126
Dgraph 1.0.16
92127
</option>
@@ -108,8 +143,6 @@
108143
<option
109144
value="20.03.0"
110145

111-
selected="selected"
112-
113146
>
114147
Dgraph 20.03.0
115148
</option>
@@ -125,8 +158,8 @@
125158

126159
<script>
127160
window.DgTour = {
128-
thisRelease: "20.03.0",
129-
latestRelease: "20.03.0",
161+
thisRelease: "1.0.16",
162+
latestRelease: "1.0.16",
130163
home: "https:\/\/tour.dgraph.io\/"
131164
}
132165
</script>
@@ -222,7 +255,7 @@
222255

223256
<li>
224257
<a href="https://tour.dgraph.io/basic/3/" class="topic">
225-
Data types, Schema and Type System
258+
Data types and Schema
226259
</a>
227260
</li>
228261

@@ -360,19 +393,19 @@
360393

361394
<li>
362395
<a href="https://tour.dgraph.io/schema/6/" class="topic">
363-
Reverse edges Query
396+
Exercise : Integrating existing data
364397
</a>
365398
</li>
366399

367400
<li>
368401
<a href="https://tour.dgraph.io/schema/7/" class="topic">
369-
Exercise : Integrating existing data
402+
Deleting Data
370403
</a>
371404
</li>
372405

373406
<li>
374407
<a href="https://tour.dgraph.io/schema/8/" class="topic">
375-
Deleting Data
408+
Predicate Query
376409
</a>
377410
</li>
378411

@@ -498,6 +531,12 @@
498531

499532
<li>
500533
<a href="https://tour.dgraph.io/blocksvars/13/" class="topic">
534+
expand and _predicate_
535+
</a>
536+
</li>
537+
538+
<li>
539+
<a href="https://tour.dgraph.io/blocksvars/14/" class="topic">
501540
Congratulations!
502541
</a>
503542
</li>
@@ -604,7 +643,6 @@ <h1 class="lesson-heading">Min and Max</h1>
604643
</main>
605644

606645
<script src="https://tour.dgraph.io//js/build/dgraph-tour.js?8cb5063906121ab119297908cd5af67a"></script>
607-
<script src="//unpkg.com/@dgraph-io/community"></script>
608646
</body>
609647

610648
</html>

0 commit comments

Comments
 (0)