I actually don't get any results at all from this:
SELECT in.*, strength FROM (SELECT outE("Friend") FROM #11:111)
I do get a result from this
SELECT outE("Friend") FROM #11:111
The closest I've come so far is running two queries and then hoping they sort their results the same way
SELECT expand(out("Friend")) FROM #11:111
SELECT outE("Friend").strength FROM #11:111
And then loop through the two resulting arrays to make objects of {friend:FOO, strength:BAR}
(Which seems like a pretty lousy solution (it also doesn't work right now))