|
13 | 13 | MATCH
|
14 | 14 | (class)-[:`EXTENDS`]->(supertype)
|
15 | 15 | WHERE
|
16 |
| - NOT class.fqn =~ ".*\\.internal\\..*" |
| 16 | + NOT (class.fqn =~ "^org\\.hibernate\\.validator\\.test\\..*" OR class.fqn =~ "^org\\.hibernate\\.validator\\.testutils\\..*" OR class.fqn =~ ".*\\.internal\\..*") |
17 | 17 | AND supertype.fqn =~ ".*\\.internal\\..*"
|
18 | 18 | RETURN
|
19 | 19 | class
|
20 | 20 | UNION ALL
|
21 | 21 | MATCH
|
22 | 22 | (class)-[:`IMPLEMENTS`]->(supertype)
|
23 | 23 | WHERE
|
24 |
| - NOT class.fqn =~ ".*\\.internal\\..*" |
| 24 | + NOT (class.fqn =~ "^org\\.hibernate\\.validator\\.test\\..*" OR class.fqn =~ "^org\\.hibernate\\.validator\\.testutils\\..*" OR class.fqn =~ ".*\\.internal\\..*") |
25 | 25 | AND supertype.fqn =~ ".*\\.internal\\..*"
|
26 | 26 | RETURN
|
27 | 27 | class
|
|
35 | 35 | MATCH
|
36 | 36 | (class)-[:`DECLARES`]->(method)-[:`RETURNS`]->(returntype)
|
37 | 37 | WHERE
|
38 |
| - NOT class.fqn =~ ".*\\.internal\\..*" |
| 38 | + NOT (class.fqn =~ "^org\\.hibernate\\.validator\\.test\\..*" OR class.fqn =~ "^org\\.hibernate\\.validator\\.testutils\\..*" OR class.fqn =~ ".*\\.internal\\..*") |
39 | 39 | AND (method.visibility="public" OR method.visibility="protected")
|
40 | 40 | AND returntype.fqn =~ ".*\\.internal\\..*"
|
41 | 41 | RETURN
|
|
46 | 46 | MATCH
|
47 | 47 | (class)-[:`DECLARES`]->(method)-[:`HAS`]->(parameter)-[:`OF_TYPE`]->(parametertype)
|
48 | 48 | WHERE
|
49 |
| - NOT class.fqn =~ ".*\\.internal\\..*" |
| 49 | + NOT (class.fqn =~ "^org\\.hibernate\\.validator\\.test\\..*" OR class.fqn =~ "^org\\.hibernate\\.validator\\.testutils\\..*" OR class.fqn =~ ".*\\.internal\\..*") |
50 | 50 | AND (method.visibility="public" OR method.visibility="protected")
|
51 | 51 | AND parametertype.fqn =~ ".*\\.internal\\..*"
|
52 | 52 | RETURN
|
|
60 | 60 | MATCH
|
61 | 61 | (class)-[:`DECLARES`]->(field)-[:`OF_TYPE`]->(fieldtype)
|
62 | 62 | WHERE
|
63 |
| - NOT class.fqn =~ ".*\\.internal\\..*" |
| 63 | + NOT (class.fqn =~ "^org\\.hibernate\\.validator\\.test\\..*" OR class.fqn =~ "^org\\.hibernate\\.validator\\.testutils\\..*" OR class.fqn =~ ".*\\.internal\\..*") |
64 | 64 | AND (field.visibility="public" OR field.visibility="protected")
|
65 | 65 | AND fieldtype.fqn =~ ".*\\.internal\\..*"
|
66 | 66 | RETURN
|
|
0 commit comments