David Michael Brown

Results 55 comments of David Michael Brown

I expect this is due to the lack of meta/multi-card props in Neptune and/or the version of Goblin you are using. I am pretty sure this behaves as expected with...

I will look into this with more detail when I get a spare moment.

Are you asking how to use `inside`? ```python from gremlin_python.process.traversal import inside await session.g.V().has('age', inside(18,30)).toList() ```

Did this solution work for you?

I don't necessarily feel very strongly about this either way. What is your reasoning behind the feature? Why do we need it? Why is it better? Is it worth moving...

Yeah that would be nice, config files suck anyway. +1 go for it.

Yeah I kind of randomly made that repo for a guy a was working for, never really thought about it as docs. Maybe there should be a section in the...

Thanks @xzy3. I'll review your PR this week when I get a minute

Well, as far as the `goblin.Element` interface is concerned, all instantiated Goblin elements already have an id property: ```python In [1]: from goblin import Vertex In [2]: class Person(Vertex): pass...

What if you simply set the id with your own uuid and then save per usual? ```python leif.id = 'myobjectsuuid' session.add(leif) await session.flush() ``` I ask because I truly don't...