mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-06 05:43:44 +00:00
26 lines
410 B
GraphQL
26 lines
410 B
GraphQL
|
|
fragment fullRelationshipResults on EntityRelationshipsResult {
|
||
|
|
start
|
||
|
|
count
|
||
|
|
total
|
||
|
|
relationships {
|
||
|
|
type
|
||
|
|
direction
|
||
|
|
entity {
|
||
|
|
...relationshipFields
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
fragment leafRelationshipResults on EntityRelationshipsResult {
|
||
|
|
start
|
||
|
|
count
|
||
|
|
total
|
||
|
|
relationships {
|
||
|
|
type
|
||
|
|
entity {
|
||
|
|
urn
|
||
|
|
type
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|