mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-26 11:00:06 +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
|
||
|
}
|
||
|
}
|
||
|
}
|