Net.Graph.Neo4JD.Traversal.Rest.Pipes.RelationShipFilter.GetJsonObject C# (CSharp) Method

GetJsonObject() public method

public GetJsonObject ( ) : object
return object
        public override object GetJsonObject()
        {
            JArray relationships = new JArray();
            foreach (RestBasePipe relationFilter in _relationShips)
            {
                relationships.Add(relationFilter.GetJsonObject());
            }

            return new JProperty("relationships", relationships);
        }