Sequence of join edges.
Java class for x_join_edges complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="x_join_edges">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="edge" type="{uri:lens:cube:0.1}x_join_edge" maxOccurs="unbounded"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| name | data type | description |
|---|---|---|
| edge | array of array of XJoinEdge |
Example
{
"edge" : [ [ {
"from" : {
"table" : "...",
"column" : "...",
"maps_to_many" : true
},
"to" : {
"table" : "...",
"column" : "...",
"maps_to_many" : true
}
}, {
"from" : {
"table" : "...",
"column" : "...",
"maps_to_many" : true
},
"to" : {
"table" : "...",
"column" : "...",
"maps_to_many" : true
}
} ], [ {
"from" : {
"table" : "...",
"column" : "...",
"maps_to_many" : true
},
"to" : {
"table" : "...",
"column" : "...",
"maps_to_many" : true
}
}, {
"from" : {
"table" : "...",
"column" : "...",
"maps_to_many" : true
},
"to" : {
"table" : "...",
"column" : "...",
"maps_to_many" : true
}
} ] ]
}