Skip to content

Commit f392d64

Browse files
committed
chore: add bp variable control to graphql
1 parent b7a3749 commit f392d64

File tree

6 files changed

+533
-0
lines changed

6 files changed

+533
-0
lines changed

src/main/resources/graphql/instrument/add-live-breakpoint.graphql

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
mutation addLiveBreakpoint($input: LiveBreakpointInput!) {
22
addLiveBreakpoint(input: $input) {
33
id
4+
variableControl {
5+
maxObjectDepth
6+
maxObjectSize
7+
maxCollectionLength
8+
variableTypeConfig {
9+
type
10+
control {
11+
maxObjectDepth
12+
maxObjectSize
13+
maxCollectionLength
14+
}
15+
}
16+
variableNameConfig {
17+
name
18+
control {
19+
maxObjectDepth
20+
maxObjectSize
21+
maxCollectionLength
22+
}
23+
}
24+
}
425
location {
526
source
627
line

src/main/resources/graphql/instrument/get-live-breakpoints.graphql

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
query getLiveBreakpoints{
22
getLiveBreakpoints {
33
id
4+
variableControl {
5+
maxObjectDepth
6+
maxObjectSize
7+
maxCollectionLength
8+
variableTypeConfig {
9+
type
10+
control {
11+
maxObjectDepth
12+
maxObjectSize
13+
maxCollectionLength
14+
}
15+
}
16+
variableNameConfig {
17+
name
18+
control {
19+
maxObjectDepth
20+
maxObjectSize
21+
maxCollectionLength
22+
}
23+
}
24+
}
425
location {
526
source
627
line

src/main/resources/graphql/instrument/get-live-instruments.graphql

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,29 @@ query getLiveInstruments{
1414
limit
1515
step
1616
}
17+
... on LiveBreakpoint {
18+
variableControl {
19+
maxObjectDepth
20+
maxObjectSize
21+
maxCollectionLength
22+
variableTypeConfig {
23+
type
24+
control {
25+
maxObjectDepth
26+
maxObjectSize
27+
maxCollectionLength
28+
}
29+
}
30+
variableNameConfig {
31+
name
32+
control {
33+
maxObjectDepth
34+
maxObjectSize
35+
maxCollectionLength
36+
}
37+
}
38+
}
39+
}
1740
... on LiveLog {
1841
logFormat
1942
logArguments

src/main/resources/graphql/instrument/remove-live-instrument.graphql

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,29 @@ mutation removeLiveInstrument($id: String!) {
1414
limit
1515
step
1616
}
17+
... on LiveBreakpoint {
18+
variableControl {
19+
maxObjectDepth
20+
maxObjectSize
21+
maxCollectionLength
22+
variableTypeConfig {
23+
type
24+
control {
25+
maxObjectDepth
26+
maxObjectSize
27+
maxCollectionLength
28+
}
29+
}
30+
variableNameConfig {
31+
name
32+
control {
33+
maxObjectDepth
34+
maxObjectSize
35+
maxCollectionLength
36+
}
37+
}
38+
}
39+
}
1740
... on LiveLog {
1841
logFormat
1942
logArguments

src/main/resources/graphql/instrument/remove-live-instruments.graphql

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,29 @@ mutation removeLiveInstruments($source: String!, $line: Int!) {
1414
limit
1515
step
1616
}
17+
... on LiveBreakpoint {
18+
variableControl {
19+
maxObjectDepth
20+
maxObjectSize
21+
maxCollectionLength
22+
variableTypeConfig {
23+
type
24+
control {
25+
maxObjectDepth
26+
maxObjectSize
27+
maxCollectionLength
28+
}
29+
}
30+
variableNameConfig {
31+
name
32+
control {
33+
maxObjectDepth
34+
maxObjectSize
35+
maxCollectionLength
36+
}
37+
}
38+
}
39+
}
1740
... on LiveLog {
1841
logFormat
1942
logArguments

0 commit comments

Comments
 (0)