forked from gchq/Gaffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gchqgh-1992 FedGraph runs operations against graphs that cant merge.
- Loading branch information
1 parent
6a96927
commit 02aaa3b
Showing
5 changed files
with
187 additions
and
0 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
27 changes: 27 additions & 0 deletions
27
store-implementation/federated-store/src/test/resources/schema/entityASchema.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,27 @@ | ||
{ | ||
"entities": { | ||
"entityA": { | ||
"vertex": "vertex.string", | ||
"properties": { | ||
"property1": "simpleProperty" | ||
} | ||
} | ||
}, | ||
"types": { | ||
"vertex.string": { | ||
"class": "java.lang.String" | ||
}, | ||
"simpleProperty": { | ||
"class": "java.lang.Integer", | ||
"aggregateFunction": { | ||
"class": "uk.gov.gchq.koryphe.impl.binaryoperator.Sum" | ||
}, | ||
"serialiser": { | ||
"class": "uk.gov.gchq.gaffer.serialisation.implementation.raw.CompactRawIntegerSerialiser" | ||
} | ||
} | ||
}, | ||
"vertexSerialiser": { | ||
"class": "uk.gov.gchq.gaffer.serialisation.implementation.StringSerialiser" | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
store-implementation/federated-store/src/test/resources/schema/entityBSchema.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,27 @@ | ||
{ | ||
"entities": { | ||
"entityB": { | ||
"vertex": "vertex.int", | ||
"properties": { | ||
"property1": "simpleProperty" | ||
} | ||
} | ||
}, | ||
"types": { | ||
"vertex.int": { | ||
"class": "java.lang.Integer" | ||
}, | ||
"simpleProperty": { | ||
"class": "java.lang.Integer", | ||
"aggregateFunction": { | ||
"class": "uk.gov.gchq.koryphe.impl.binaryoperator.Sum" | ||
}, | ||
"serialiser": { | ||
"class": "uk.gov.gchq.gaffer.serialisation.implementation.raw.CompactRawIntegerSerialiser" | ||
} | ||
} | ||
}, | ||
"vertexSerialiser": { | ||
"class": "uk.gov.gchq.gaffer.serialisation.implementation.raw.CompactRawIntegerSerialiser" | ||
} | ||
} |