As outlined in https://github.com/typedb-osi/typedb-loader/issues/54, a change in TypeQL meant that some of the toString() representations have changed. This PR reduces reliance on toString() for correctness, though more work needs to be done to eliminate the dependency.
What are the changes implemented in this PR?
Fix one toString() check that included a comma that no longer exists
Replace to usages of toString() contains checks with operations over the TypeQL query object.
What is the goal of this PR?
As outlined in https://github.com/typedb-osi/typedb-loader/issues/54, a change in TypeQL meant that some of the
toString()
representations have changed. This PR reduces reliance ontoString()
for correctness, though more work needs to be done to eliminate the dependency.What are the changes implemented in this PR?
toString()
check that included a comma that no longer existstoString()
contains checks with operations over the TypeQL query object.