tutorials:basic-to-advanced-xl-queries
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:basic-to-advanced-xl-queries [2024/12/04 13:47] – [Path queries] tim2 | tutorials:basic-to-advanced-xl-queries [2025/01/10 11:14] (current) – gaetan | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== From simple to advanced XL queries ====== | ====== From simple to advanced XL queries ====== | ||
+ | |||
+ | |||
+ | This tutorial is more of a quiz than a tutorial, for the different type of queries a graph and a set of quests are provided. | ||
+ | For each quest, the answer and an explanation is provided. Yet it is important to mention that there can be several solutions, for most of this problems. | ||
+ | |||
+ | ===== Relational queries ===== | ||
Line 10: | Line 16: | ||
protected void init () | protected void init () | ||
[ | [ | ||
- | Axiom ==> A [A B [B] C B] B C D; | + | Axiom ==> A [A B [b1:B] c:C b2:B ] D C [B A A] B A,c />d:D,b1 /> b2, b2 /> d; |
] | ] | ||
</ | </ | ||
- | {{ :tutorials:graph_quest_1.png?600 |}} | + | |{{ :tutorials:graph_quest_path.png?800 |}}| |
+ | | The graph created by the code above | | ||
- | |||
- | ===== Path queries ===== | ||
**0. Get all nodes** | **0. Get all nodes** | ||
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context: | ||
+ | |||
'' | '' | ||
+ | |||
+ | |||
+ | __In a Query: | ||
+ | |||
+ | '' | ||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | The query system in XL works based on the concept of object orientation from java, therefore a Query also selects all Objects, that extend the class used in the pattern. And since all Nodes in the graph extends the class Node... | ||
+ | |||
</ | </ | ||
Line 29: | Line 47: | ||
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
</ | </ | ||
- | **2. Get all B's that are linked by a successor | + | **2. Get all B's that are linked by a successor** |
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
+ | |||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | __Selected Nodes:__ | ||
+ | <code bash> | ||
+ | Model.B[id=30] | ||
+ | Model.B[id=33] | ||
+ | Model.B[id=39] | ||
+ | </ | ||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | |||
+ | The ''>'' | ||
+ | |||
</ | </ | ||
- | **3. Get all B's that are linked by a branch | + | **3. Get all B's that are linked by a branch** |
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
- | </ | + | |
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | |||
+ | __Selected Nodes:__ | ||
+ | |||
+ | <code bash> | ||
+ | Model.B[id=31] | ||
+ | Model.B[id=36] | ||
+ | </ | ||
+ | |||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | |||
+ | |||
+ | The same as above only with the '' | ||
+ | </ | ||
**4. Get all As followed directly by another A** | **4. Get all As followed directly by another A** | ||
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
- | </ | ||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | __Selected Nodes:__ | ||
+ | |||
+ | <code bash> | ||
+ | Model.A[id=29] | ||
+ | Model.A[id=38] | ||
+ | </ | ||
+ | |||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | First of all in this case we know what type of parent we are looking for so the first Node is an A but we do not care about the edge and therefore we can use the '' | ||
+ | |||
+ | </ | ||
**5. Get As followed directly by another A, both are connected by a branch** | **5. Get As followed directly by another A, both are connected by a branch** | ||
<hidden answer> | <hidden answer> | ||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
+ | |||
+ | |||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | __Selected Nodes:__ | ||
+ | |||
+ | <code bash> | ||
+ | Model.A[id=29] | ||
+ | </ | ||
+ | |||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | Same as above but only for branch edge. | ||
+ | |||
</ | </ | ||
Line 61: | Line 172: | ||
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
+ | |||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | |||
+ | __Selected Nodes:__ | ||
+ | |||
+ | <code bash> | ||
+ | Model.A[id=37] | ||
+ | Model.A[id=38] | ||
+ | Model.A[id=40] | ||
+ | </ | ||
+ | |||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | Now we start at a C because we know at some point above our A there is suppose to be a C, moreover we know that the type of edge does not matter so we can use '' | ||
+ | |||
</ | </ | ||
Line 67: | Line 201: | ||
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
+ | |||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | |||
+ | __Selected Nodes:__ | ||
+ | |||
+ | <code bash> | ||
+ | Model.B[id=31] | ||
+ | Model.B[id=33] | ||
+ | Model.B[id=33] | ||
+ | Model.B[id=33] | ||
+ | </ | ||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | This is similar to the one above only that we have to make sure that the first B and the second B are not the same Node, To do so we use the (-->)+ pattern, which test any range of connections as well but with at least one edge. | ||
+ | |||
</ | </ | ||
Line 74: | Line 231: | ||
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
+ | |||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | |||
+ | __Selected Nodes:__ | ||
+ | |||
+ | <code bash> | ||
+ | Model.D[id=41] | ||
+ | </ | ||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | This follows the same concepts as before only with more than two nodes, if you want you can add as many as you want in a row like this. | ||
+ | |||
</ | </ | ||
**9. Get All Nodes, which are connected upwards as following: Branch, Successor Branch** | **9. Get All Nodes, which are connected upwards as following: Branch, Successor Branch** | ||
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
+ | |||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | |||
+ | __Selected Nodes:__ | ||
+ | |||
+ | <code bash> | ||
+ | Model.A[id=29] | ||
+ | Model.B[id=31] | ||
+ | </ | ||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | If you don't care about the type of nodes but only the edges you can just skip the nodes in between. Only the first and the last place have to be a Node. | ||
+ | |||
</ | </ | ||
**10. Get The B that is a decomposition child of another B, the successor of an C and has a D as a decomposition child.** | **10. Get The B that is a decomposition child of another B, the successor of an C and has a D as a decomposition child.** | ||
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | __Selected Nodes:__ | ||
+ | |||
+ | <code bash> | ||
+ | Model.B[id=33] | ||
+ | </ | ||
+ | |||
+ | __Why:__ | ||
+ | |||
+ | - If you want to combine several conditions in a query you can concatenate them using the comma. | ||
+ | - The '/>' | ||
+ | - The differences in the two queries are only to highlight the different possibilities. | ||
+ | |||
</ | </ | ||
Line 90: | Line 308: | ||
<hidden answer> | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
'' | '' | ||
+ | |||
+ | |||
+ | __In a Query:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | __Selected Nodes:__ | ||
+ | |||
+ | <code bash> | ||
+ | Model.A[id=38] | ||
+ | Model.A[id=40] | ||
+ | </ | ||
+ | |||
+ | Besides the pattern of edges and nodes, it is also possible to add concatenate boolean conditions, if they are added in brackets (). In this case the boolean condition is actually the [[: | ||
+ | |||
+ | |||
+ | |||
</ | </ | ||
+ | |||
+ | |||
+ | **12. Get all the first B's after the A's** | ||
+ | |||
+ | <hidden answer> | ||
+ | |||
+ | __In a Context:__ | ||
+ | |||
+ | '' | ||
+ | |||
+ | '' | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ===== OOP Queries ===== | ||
+ | |||
+ | |||
+ | |||
+ |
tutorials/basic-to-advanced-xl-queries.1733316476.txt.gz · Last modified: 2024/12/04 13:47 by tim2