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