Uploaded image for project: 'TinkerPop'
  1. TinkerPop
  2. TINKERPOP-919

Features needs to specify whether 2 vertex properties with same key/value is allowed.

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Done
    • 3.0.2-incubating
    • 3.2.4
    • None

    Description

      TinkerGraph does not support two vertex properties with the same key/value.

      gremlin> graph = TinkerGraph.open()
      ==>tinkergraph[vertices:0 edges:0]
      gremlin> v = graph.addVertex()
      ==>v[0]
      gremlin> v.property("name","marko")
      ==>vp[name->marko]
      gremlin> v.property("name","marko")
      ==>vp[name->marko]
      gremlin> v.properties("name")
      ==>vp[name->marko]
      

      I just noted we don't have this as a Feature and we should (w/ respective test cases).

      Attachments

        Issue Links

          Activity

            People

              spmallette Stephen Mallette
              okram Marko A. Rodriguez
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: