17 lines
347 B
GraphQL
17 lines
347 B
GraphQL
#import "../fragments/TextrefTreeFields.gql"
|
|
|
|
query TextdepartRecursive($id: Int!) {
|
|
textref(id: $id) {
|
|
...TextrefTreeFields
|
|
siblings: text_en_rebond {
|
|
...TextrefTreeFields
|
|
siblings: text_en_rebond {
|
|
...TextrefTreeFields
|
|
siblings: text_en_rebond {
|
|
...TextrefTreeFields
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|