14 lines
198 B
GraphQL
14 lines
198 B
GraphQL
query SubGraphs($ref: String!) {
|
|
supergraph(ref: $ref) {
|
|
... on SubGraphs {
|
|
subGraphs {
|
|
service
|
|
url
|
|
wsUrl
|
|
changedBy
|
|
changedAt
|
|
}
|
|
}
|
|
}
|
|
}
|