File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -264,11 +264,11 @@ fn whitespace_in_union() {
264
264
fragment UnionFragment on CommentBody {
265
265
__typename
266
266
}
267
-
267
+
268
268
fragment UnionVariantFragment on PlainCommentBody {
269
269
__typename
270
270
}
271
-
271
+
272
272
fragment UnrelatedFragment on Task {
273
273
__typename
274
274
}
@@ -409,6 +409,7 @@ fn directive() {
409
409
assert_labels (
410
410
items. unwrap ( ) ,
411
411
vec ! [
412
+ "credentials" ,
412
413
"prependEdge" ,
413
414
"deleteRecord" ,
414
415
"appendNode" ,
@@ -446,6 +447,7 @@ fn directive_on_scalar_field() {
446
447
assert_labels (
447
448
items. unwrap ( ) ,
448
449
vec ! [
450
+ "credentials" ,
449
451
"prependEdge" ,
450
452
"deleteRecord" ,
451
453
"appendNode" ,
@@ -732,6 +734,7 @@ fn empty_directive() {
732
734
assert_labels (
733
735
items. unwrap ( ) ,
734
736
vec ! [
737
+ "credentials" ,
735
738
"prependEdge" ,
736
739
"deleteRecord" ,
737
740
"appendNode" ,
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ schema {
6
6
subscription : Subscription
7
7
}
8
8
9
+ directive @credentials (
10
+ use_case : String !
11
+ vc_transform : String !
12
+ token : String
13
+ ) on FIELD
14
+
9
15
directive @live_query (polling_interval : Int , config_id : String ) on QUERY
10
16
11
17
directive @customDirective (level : Int ! ) on FIELD | FRAGMENT_SPREAD
You can’t perform that action at this time.
0 commit comments