Skip to content

Commit

Permalink
fix: move example images to the images/examples directory
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Jul 27, 2023
1 parent 1dbcb97 commit ce1fec8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/sql/query_syntax/with.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ SELECT * FROM cte2;

`WITH RECURSIVE` can be used to traverse trees. For example, take a hierarchy of tags:

![](with-recursive-tree-example.png)
![](/images/examples/with-recursive-tree-example.png)

```sql
CREATE TABLE tag(id int, name varchar, subclassof int);
Expand Down Expand Up @@ -88,7 +88,7 @@ One way to achieve this is to store the path of a traversal in a [list](../../sq

Take the following directed graph from the [LDBC Graphalytics benchmark](https://arxiv.org/pdf/2011.15028.pdf):

![](with-recursive-graph-example.png)
![](/images/examples/with-recursive-graph-example.png)

```sql
CREATE TABLE edge(node1id int, node2id int);
Expand Down

0 comments on commit ce1fec8

Please sign in to comment.