-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add ontology support for primitive (properties) search types explicit…
… declaration add cursor pattern printing for AssignmentResults for all cursors available Add runCypher with cursor type as parameter
- Loading branch information
1 parent
de2c6d0
commit dd92835
Showing
24 changed files
with
594 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
...s/fuse-domain-dragons-assembly/resources/assembly/Dragons/ontology/OntologyStructure.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"structure": [ | ||
{ | ||
"type":"quantifier", | ||
"typeOptionals": [ | ||
{ "op":"some"}, | ||
{ "op":"all"} | ||
] | ||
}, | ||
{ | ||
"type":"entity", | ||
"typeOptionals": [ | ||
{ "op":"concrete"}, | ||
{ "op":"typed"}, | ||
{ "op":"untyped"} | ||
] | ||
}, | ||
{ | ||
"type":"relation", | ||
"typeOptionals": [ | ||
{ "op":"typed"}, | ||
{ "op":"untyped"} | ||
] | ||
} | ||
], | ||
"primitives": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"operators": { | ||
"empty": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"notEmpty": ["string","int","date","text","float","array","geo_point","datetime"], | ||
|
||
"eq": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"ne": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"gt": ["string","int","date","text","float","datetime"], | ||
"ge": ["string","int","date","text","float","datetime"], | ||
"lt": ["string","int","date","text","float","datetime"], | ||
"le": ["string","int","date","text","float","datetime"], | ||
|
||
"contains": ["string","text"], | ||
"like": ["string","text"], | ||
"likeAny": ["string","text"], | ||
|
||
"inSet": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"notInSet": ["string","int","date","text","float","array","geo_point","datetime"], | ||
|
||
"inRange": ["datetime","int","float","date"], | ||
"notInRange": ["datetime","int","float","date"] | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
...se-domain-knowledge-assembly/resources/assembly/Knowledge/ontology/OntologyStructure.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"structure": [ | ||
{ | ||
"type":"quantifier", | ||
"typeOptionals": [ | ||
{ "op":"some"}, | ||
{ "op":"all"} | ||
] | ||
}, | ||
{ | ||
"type":"entity", | ||
"typeOptionals": [ | ||
{ "op":"concrete"}, | ||
{ "op":"typed"}, | ||
{ "op":"untyped"} | ||
] | ||
}, | ||
{ | ||
"type":"relation", | ||
"typeOptionals": [ | ||
{ "op":"typed"}, | ||
{ "op":"untyped"} | ||
] | ||
} | ||
], | ||
"primitives": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"operators": { | ||
"empty": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"notEmpty": ["string","int","date","text","float","array","geo_point","datetime"], | ||
|
||
"eq": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"ne": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"gt": ["string","int","date","text","float","datetime"], | ||
"ge": ["string","int","date","text","float","datetime"], | ||
"lt": ["string","int","date","text","float","datetime"], | ||
"le": ["string","int","date","text","float","datetime"], | ||
|
||
"contains": ["string","text"], | ||
"like": ["string","text"], | ||
"likeAny": ["string","text"], | ||
|
||
"inSet": ["string","int","date","text","float","array","geo_point","datetime"], | ||
"notInSet": ["string","int","date","text","float","array","geo_point","datetime"], | ||
|
||
"inRange": ["datetime","int","float","date"], | ||
"notInRange": ["datetime","int","float","date"] | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.