Skip to content

Commit

Permalink
Merge pull request #12 from apache/new-topology
Browse files Browse the repository at this point in the history
New topology query protocol
  • Loading branch information
peng-yongsheng authored May 9, 2019
2 parents 02ddbfa + 6a5bc4a commit 6fc9665
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions topology.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,14 @@ type Node {
# from the `source` to the `target`.
type Call {
source: ID!
# The protocol and tech stack used at source side in this distributed call
sourceComponents: [ID!]!
target: ID!
# The protocol and tech stack used in this distributed call
callType: String!
# The protocol and tech stack used at target side in this distributed call
targetComponents: [ID!]!
id: ID!
detectPoint: DetectPoint!
# The detect Points of this distributed call.
detectPoints: [DetectPoint!]!
}

enum NodeType {
Expand Down

0 comments on commit 6fc9665

Please sign in to comment.