Skip to content

Commit 8ab4d4f

Browse files
committed
update images
1 parent ebaa527 commit 8ab4d4f

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/content/docs/users/moosequery/index.mdx

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ title: "Moose Query user documentation"
55
subtitle: "Documentation about Moose Query, the query feature of Metamodels described by Fame."
66
---
77

8-
import MooseGraphSVG from './moose-graph.drawio.svg';
9-
import containmentTreeUserSVG from './containmentTreeUser.drawio.svg';
10-
import navigationUserSVG from './navigationUser.drawio.svg';
8+
import MooseGraphSVG from './img/moose-graph.drawio.svg';
9+
import ContainmentTreeUserSVG from './img/containmentTreeUser.drawio.svg';
10+
import NavigationUserSVG from './img/navigationUser.drawio.svg';
1111

1212

1313
- [Introduction](#introduction)
@@ -195,7 +195,7 @@ entity query containers withProperty: #hasSourceAnchor.
195195

196196
Example of a containment tree to use for the next examples:
197197

198-
<containmentTreeUserSVG className="svg-theme" />
198+
<ContainmentTreeUserSVG className="svg-theme" />
199199

200200
Let's query:
201201

@@ -285,7 +285,7 @@ In the previous versions of Moose, the API was less homogeneous:
285285

286286
For the following examples, let's use the same model as the previous example section:
287287

288-
<containmentTreeUserSVG className="svg-theme" />
288+
<ContainmentTreeUserSVG className="svg-theme" />
289289

290290
```smalltalk
291291
package1 containedEntities. "=> { package2 . class1 }"
@@ -411,7 +411,7 @@ entity query incoming dependenciesOfAnyType: { FamixTReference . FamixTInvocatio
411411

412412
Example of a navigation model to use for the next examples:
413413

414-
<navigationUserSVG className="svg-theme" />
414+
<NavigationUserSVG className="svg-theme" />
415415

416416
Let's query:
417417

@@ -478,7 +478,7 @@ For the most common use-cases, we added some shortcut methods on `TEntityMetalev
478478

479479
| Selector | Description | Parameters | Shortcut for |
480480
|---------------------|----------------------------------------------------------|-----------------------------------------------------------|------------------------------------------------------------------------------|
481-
| `#query:with:` | All the dependencies in a direction, of a specific type. | `#out`or `#in`. <br> Expected association type. | `query incoming dependenciesOfType:` or `query outgoing dependenciesOfType:` |
481+
| `#query:with:` | All the dependencies in a direction, of a specific type. | `#out`or `#in`. <br></br> Expected association type. | `query incoming dependenciesOfType:` or `query outgoing dependenciesOfType:` |
482482
| `#queryAll:` | All the dependencies in a direction. | `#out`or `#in`. | `query incoming depenencies` or `query outgoing dependencies` |
483483
| `#queryAllIncoming` | All incoming dependencies. | - | `query incoming dependencies` |
484484
| `#queryAllOutgoing` | All outgoing dependencies. | - | `query outgoing dependencies` |
@@ -488,7 +488,8 @@ For the most common use-cases, we added some shortcut methods on `TEntityMetalev
488488
### Examples of dependencies navigation syntactic sugar
489489

490490
For the following examples, let's use the same model as the previous section:
491-
![A schema of a navigation model.](img/navigationUser.png)
491+
492+
<NavigationUserSVG className="svg-theme" />
492493

493494
```smalltalk
494495

0 commit comments

Comments
 (0)