@@ -15,100 +15,100 @@ protected override void Configure(IEnumTypeDescriptor<DirectiveLocation> descrip
15
15
. Description ( TypeResources . DirectiveLocation_Description )
16
16
// Introspection types must always be bound explicitly so that we
17
17
// do not get any interference with conventions.
18
- . BindItems ( BindingBehavior . Explicit ) ;
18
+ . BindValues ( BindingBehavior . Explicit ) ;
19
19
20
20
descriptor
21
- . Item ( DirectiveLocation . Query )
21
+ . Value ( DirectiveLocation . Query )
22
22
. Name ( Lang . Query . Value )
23
23
. Description ( TypeResources . DirectiveLocation_Query ) ;
24
24
25
25
descriptor
26
- . Item ( DirectiveLocation . Mutation )
26
+ . Value ( DirectiveLocation . Mutation )
27
27
. Name ( Lang . Mutation . Value )
28
28
. Description ( TypeResources . DirectiveLocation_Mutation ) ;
29
29
30
30
descriptor
31
- . Item ( DirectiveLocation . Subscription )
31
+ . Value ( DirectiveLocation . Subscription )
32
32
. Name ( Lang . Subscription . Value )
33
33
. Description ( TypeResources . DirectiveLocation_Subscription ) ;
34
34
35
35
descriptor
36
- . Item ( DirectiveLocation . Field )
36
+ . Value ( DirectiveLocation . Field )
37
37
. Name ( Lang . Field . Value )
38
38
. Description ( TypeResources . DirectiveLocation_Field ) ;
39
39
40
40
descriptor
41
- . Item ( DirectiveLocation . FragmentDefinition )
41
+ . Value ( DirectiveLocation . FragmentDefinition )
42
42
. Name ( Lang . FragmentDefinition . Value )
43
43
. Description ( TypeResources . DirectiveLocation_FragmentDefinition ) ;
44
44
45
45
descriptor
46
- . Item ( DirectiveLocation . FragmentSpread )
46
+ . Value ( DirectiveLocation . FragmentSpread )
47
47
. Name ( Lang . FragmentSpread . Value )
48
48
. Description ( TypeResources . DirectiveLocation_FragmentSpread ) ;
49
49
50
50
descriptor
51
- . Item ( DirectiveLocation . InlineFragment )
51
+ . Value ( DirectiveLocation . InlineFragment )
52
52
. Name ( Lang . InlineFragment . Value )
53
53
. Description ( TypeResources . DirectiveLocation_InlineFragment ) ;
54
54
55
55
descriptor
56
- . Item ( DirectiveLocation . VariableDefinition )
56
+ . Value ( DirectiveLocation . VariableDefinition )
57
57
. Name ( Lang . VariableDefinition . Value )
58
58
. Description ( "Location adjacent to a variable definition." ) ;
59
59
60
60
descriptor
61
- . Item ( DirectiveLocation . Schema )
61
+ . Value ( DirectiveLocation . Schema )
62
62
. Name ( Lang . Schema . Value )
63
63
. Description ( TypeResources . DirectiveLocation_Schema ) ;
64
64
65
65
descriptor
66
- . Item ( DirectiveLocation . Scalar )
66
+ . Value ( DirectiveLocation . Scalar )
67
67
. Name ( Lang . Scalar . Value )
68
68
. Description ( TypeResources . DirectiveLocation_Scalar ) ;
69
69
70
70
descriptor
71
- . Item ( DirectiveLocation . Object )
71
+ . Value ( DirectiveLocation . Object )
72
72
. Name ( Lang . Object . Value )
73
73
. Description ( TypeResources . DirectiveLocation_Object ) ;
74
74
75
75
descriptor
76
- . Item ( DirectiveLocation . FieldDefinition )
76
+ . Value ( DirectiveLocation . FieldDefinition )
77
77
. Name ( Lang . FieldDefinition . Value )
78
78
. Description ( TypeResources . DirectiveLocation_FieldDefinition ) ;
79
79
80
80
descriptor
81
- . Item ( DirectiveLocation . ArgumentDefinition )
81
+ . Value ( DirectiveLocation . ArgumentDefinition )
82
82
. Name ( Lang . ArgumentDefinition . Value )
83
83
. Description ( TypeResources . DirectiveLocation_ArgumentDefinition ) ;
84
84
85
85
descriptor
86
- . Item ( DirectiveLocation . Interface )
86
+ . Value ( DirectiveLocation . Interface )
87
87
. Name ( Lang . Interface . Value )
88
88
. Description ( TypeResources . DirectiveLocation_Interface ) ;
89
89
90
90
descriptor
91
- . Item ( DirectiveLocation . Union )
91
+ . Value ( DirectiveLocation . Union )
92
92
. Name ( Lang . Union . Value )
93
93
. Description ( TypeResources . DirectiveLocation_Union ) ;
94
94
95
95
descriptor
96
- . Item ( DirectiveLocation . Enum )
96
+ . Value ( DirectiveLocation . Enum )
97
97
. Name ( Lang . Enum . Value )
98
98
. Description ( TypeResources . DirectiveLocation_Enum ) ;
99
99
100
100
descriptor
101
- . Item ( DirectiveLocation . EnumValue )
101
+ . Value ( DirectiveLocation . EnumValue )
102
102
. Name ( Lang . EnumValue . Value )
103
103
. Description ( TypeResources . DirectiveLocation_EnumValue ) ;
104
104
105
105
descriptor
106
- . Item ( DirectiveLocation . InputObject )
106
+ . Value ( DirectiveLocation . InputObject )
107
107
. Name ( Lang . InputObject . Value )
108
108
. Description ( TypeResources . DirectiveLocation_InputObject ) ;
109
109
110
110
descriptor
111
- . Item ( DirectiveLocation . InputFieldDefinition )
111
+ . Value ( DirectiveLocation . InputFieldDefinition )
112
112
. Name ( Lang . InputFieldDefinition . Value )
113
113
. Description ( TypeResources . DirectiveLocation_InputFieldDefinition ) ;
114
114
}
0 commit comments