| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DB_op.iter__r_set()
|
|
|
|
|
|
Fixes truncation error as long as we don't go over 16384 nodes in a
graph until an actual fragmentation mechanism (multiple queries
aggregated into a single response) exists.
|
|
without this, reverting
|
|
|
|
|
|
|
|
sending binary data over REST calls
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Since we used delete on the __attr_write key value dictionary, the
return value we cached was missing the name attribute, causing the
client not to see it.
Fix it with a deepcopy.
|
|
|
|
|
|
|
|
|
|
To distinguish id sets from Node/Link sets.
Closes #250
|
|
The reason json failed was that we were using a class instead of an
instance, i.e.
clazz = namedtuple('bla', ['field1', 'field2'])
instance = clazz(field1='foo', field2='bar')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|