Files
schemas/ctl/SubGraphs.graphql
T

14 lines
198 B
GraphQL
Raw Normal View History

2022-10-09 15:23:52 +02:00
query SubGraphs($ref: String!) {
2022-10-14 22:41:56 +02:00
supergraph(ref: $ref) {
... on SubGraphs {
subGraphs {
service
url
wsUrl
changedBy
changedAt
}
}
2022-10-09 15:23:52 +02:00
}
}