You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the new feature you'd like TypeSubTypeValue is a data type that can be used for IDs in Gaffer. We need to ensure that users can use TSTVs via Gremlin using GafferPop.
Additional context
The simplest way we could allow it would be treating them as String IDs in the form myType|mySubType|myValue and then parse them as TypeSubTypeValues once they've got through the server layer. Essentially so a user could do a seeded Gremlin query like: g.V("myType|mySubType|myValue").
The text was updated successfully, but these errors were encountered:
* add basic mechanism for TSTV seeds
* make method more generic
* add basic testing for seeded tstv queries
* whitespace
* move to regex matcher and new format
* update regex
Describe the new feature you'd like
TypeSubTypeValue
is a data type that can be used for IDs in Gaffer. We need to ensure that users can use TSTVs via Gremlin using GafferPop.Additional context
The simplest way we could allow it would be treating them as String IDs in the form
myType|mySubType|myValue
and then parse them asTypeSubTypeValues
once they've got through the server layer. Essentially so a user could do a seeded Gremlin query like:g.V("myType|mySubType|myValue")
.The text was updated successfully, but these errors were encountered: