How can I find property with a certain data type?
I have a situation where the same property has different type under the same label, kind of like the following:
g.addV("Cookies").property(single, "howMany", "10").next()
g.addV("Cookies").property(single, "howMany", 42).next()
I am hoping to query for Cookies that only has "howMany" property that is in String, for example. We accidentally corrupted our DB with mixed types and need to find which ones are corrupted. What I am hoping to see is something like.
g.V().hasLabel("Cookies").proporties("howMany").ofType(String)