@@ -56,7 +56,7 @@ The boolean value must be false.
56
56
57
57
- Applies to : `Boolean `
58
58
59
- - SDL : directive @AssertFalse (message : String = "graphql.validation.AssertFalse.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
59
+ - SDL : ` directive @AssertFalse (message : String = "graphql.validation.AssertFalse.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
60
60
61
61
- Message : `graphql .validation .AssertFalse .message `
62
62
@@ -69,7 +69,7 @@ The boolean value must be true.
69
69
70
70
- Applies to : `Boolean `
71
71
72
- - SDL : directive @AssertTrue (message : String = "graphql.validation.AssertTrue.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
72
+ - SDL : ` directive @AssertTrue (message : String = "graphql.validation.AssertTrue.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
73
73
74
74
- Message : `graphql .validation .AssertTrue .message `
75
75
@@ -82,7 +82,7 @@ The element must be a number whose value must be less than or equal to the speci
82
82
83
83
- Applies to : `String `, `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
84
84
85
- - SDL : directive @DecimalMax (value : String!, inclusive : Boolean! = true, message : String = "graphql.validation.DecimalMax.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
85
+ - SDL : ` directive @DecimalMax (value : String!, inclusive : Boolean! = true, message : String = "graphql.validation.DecimalMax.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
86
86
87
87
- Message : `graphql .validation .DecimalMax .message `
88
88
@@ -95,7 +95,7 @@ The element must be a number whose value must be greater than or equal to the sp
95
95
96
96
- Applies to : `String `, `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
97
97
98
- - SDL : directive @DecimalMin (value : String!, inclusive : Boolean! = true, message : String = "graphql.validation.DecimalMin.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
98
+ - SDL : ` directive @DecimalMin (value : String!, inclusive : Boolean! = true, message : String = "graphql.validation.DecimalMin.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
99
99
100
100
- Message : `graphql .validation .DecimalMin .message `
101
101
@@ -108,7 +108,7 @@ The element must be a number inside the specified `integer` and `fraction` range
108
108
109
109
- Applies to : `String `, `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
110
110
111
- - SDL : directive @Digits (integer : Int!, fraction : Int!, message : String = "graphql.validation.Digits.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
111
+ - SDL : ` directive @Digits (integer : Int!, fraction : Int!, message : String = "graphql.validation.Digits.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
112
112
113
113
- Message : `graphql .validation .Digits .message `
114
114
@@ -121,7 +121,7 @@ The element must be a number whose value must be less than or equal to the speci
121
121
122
122
- Applies to : `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
123
123
124
- - SDL : directive @Max (value : Int! = 2147483647, message : String = "graphql.validation.Max.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
124
+ - SDL : ` directive @Max (value : Int! = 2147483647, message : String = "graphql.validation.Max.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
125
125
126
126
- Message : `graphql .validation .Max .message `
127
127
@@ -134,7 +134,7 @@ The element must be a number whose value must be greater than or equal to the sp
134
134
135
135
- Applies to : `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
136
136
137
- - SDL : directive @Min (value : Int! = 0, message : String = "graphql.validation.Min.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
137
+ - SDL : ` directive @Min (value : Int! = 0, message : String = "graphql.validation.Min.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
138
138
139
139
- Message : `graphql .validation .Min .message `
140
140
@@ -147,7 +147,7 @@ The element must be a negative number.
147
147
148
148
- Applies to : `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
149
149
150
- - SDL : directive @Negative (message : String = "graphql.validation.Negative.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
150
+ - SDL : ` directive @Negative (message : String = "graphql.validation.Negative.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
151
151
152
152
- Message : `graphql .validation .Negative .message `
153
153
@@ -160,7 +160,7 @@ The element must be a negative number or zero.
160
160
161
161
- Applies to : `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
162
162
163
- - SDL : directive @NegativeOrZero (message : String = "graphql.validation.NegativeOrZero.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
163
+ - SDL : ` directive @NegativeOrZero (message : String = "graphql.validation.NegativeOrZero.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
164
164
165
165
- Message : `graphql .validation .NegativeOrZero .message `
166
166
@@ -173,7 +173,7 @@ The String must contain at least one non-whitespace character, according to Java
173
173
174
174
- Applies to : `String `
175
175
176
- - SDL : directive @NotBlank (message : String = "graphql.validation.NotBlank.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
176
+ - SDL : ` directive @NotBlank (message : String = "graphql.validation.NotBlank.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
177
177
178
178
- Message : `graphql .validation .NotBlank .message `
179
179
@@ -186,7 +186,7 @@ The element must have a non zero size.
186
186
187
187
- Applies to : `String `, `Lists `, `Input Objects `
188
188
189
- - SDL : directive @NotEmpty (message : String = "graphql.validation.NotEmpty.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
189
+ - SDL : ` directive @NotEmpty (message : String = "graphql.validation.NotEmpty.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
190
190
191
191
- Message : `graphql .validation .NotEmpty .message `
192
192
@@ -199,7 +199,7 @@ The String must match the specified regular expression, which follows the Java r
199
199
200
200
- Applies to : `String `
201
201
202
- - SDL : directive @Pattern (regexp : String! =".*" , message : String = "graphql.validation.Pattern.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
202
+ - SDL : ` directive @Pattern (regexp : String! =".*" , message : String = "graphql.validation.Pattern.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
203
203
204
204
- Message : `graphql .validation .Pattern .message `
205
205
@@ -212,7 +212,7 @@ The element must be a positive number.
212
212
213
213
- Applies to : `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
214
214
215
- - SDL : directive @Positive (message : String = "graphql.validation.Positive.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
215
+ - SDL : ` directive @Positive (message : String = "graphql.validation.Positive.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
216
216
217
217
- Message : `graphql .validation .Positive .message `
218
218
@@ -225,7 +225,7 @@ The element must be a positive number or zero.
225
225
226
226
- Applies to : `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
227
227
228
- - SDL : directive @PositiveOrZero (message : String = "graphql.validation.PositiveOrZero.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
228
+ - SDL : ` directive @PositiveOrZero (message : String = "graphql.validation.PositiveOrZero.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
229
229
230
230
- Message : `graphql .validation .PositiveOrZero .message `
231
231
@@ -238,7 +238,7 @@ The element range must be between the specified `min` and `max` boundaries (incl
238
238
239
239
- Applies to : `String `, `Byte `, `Short `, `Int `, `Long `, `BigDecimal `, `BigInteger `, `Float `
240
240
241
- - SDL : directive @Range (min : Int = 0, max : Int = 2147483647, message : String = "graphql.validation.Range.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
241
+ - SDL : ` directive @Range (min : Int = 0, max : Int = 2147483647, message : String = "graphql.validation.Range.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
242
242
243
243
- Message : `graphql .validation .Range .message `
244
244
@@ -251,6 +251,6 @@ The element size must be between the specified `min` and `max` boundaries (inclu
251
251
252
252
- Applies to : `String `, `Lists `, `Input Objects `
253
253
254
- - SDL : directive @Size (min : Int = 0, max : Int = 2147483647, message : String = "graphql.validation.Size.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
254
+ - SDL : ` directive @Size (min : Int = 0, max : Int = 2147483647, message : String = "graphql.validation.Size.message" ) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION `
255
255
256
256
- Message : `graphql .validation .Size .message `
0 commit comments