User Tools

Site Tools


tutorials:basic-to-advanced-xl-queries

This is an old revision of the document!


From simple to advanced XL queries

module A;
module B;
module C;
module D;
 
protected void init ()
[
	Axiom ==> A [A B [B] C B] B C D;
]

Path queries

0. Get all nodes

answer

answer

(*Node*)

1. Get all the A nodes

answer

answer

((*A*))

2. Get all B's that are linked by a successor (199,198,195)

answer

answer

((*Node > B*))

3. Get all B's that are linked by a branch (196)

answer

answer

((*Node +> B*))

4. Get all As followed directly by another A

answer

answer

((*A -->A*))

5. Get As followed directly by another A, both are connected by a branch

answer

answer

((*A +>A*))

6. Get all A's that are below a C

answer

answer

(*C (-->)* A*))

7. Get all B's that are below another B

answer

answer

(*B (-->)+ B*))

8. Get all D which are below a C, where the C is below a B

answer

answer

(*B --> C --> D*))

9. Get All Nodes, which are connected upwards as following: Branch, Successor Branch

answer

answer

((*Node +> > +> 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.

answer

answer

((*B /> b:B, C > b,D</b*))

11. Get all A's that have no Children

answer

answer

((*a:A,(empty((*a --> Node*)))*))

tutorials/basic-to-advanced-xl-queries.1733316476.txt.gz · Last modified: 2024/12/04 13:47 by tim2