File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ sub guess_literal_to_ast_node ($literal) {
57
57
require Graph::QL::AST::Node::StringValue;
58
58
return Graph::QL::AST::Node::StringValue-> new( value => $literal );
59
59
}
60
+ # TODO: Handle ListValue and ObjectValue
60
61
}
61
62
62
63
# If you know the type, then we can wrap
@@ -87,6 +88,7 @@ sub literal_to_ast_node ($literal, $type) {
87
88
else {
88
89
throw(' Do not recognize the expected type(%s), unable to convert to ast-node' , $type -> name);
89
90
}
91
+ # TODO: Handle ListValue and ObjectValue
90
92
}
91
93
92
94
# This is basically just because NullValue does
@@ -118,6 +120,7 @@ sub ast_node_to_type_language ($ast_node) {
118
120
else {
119
121
throw(' Do not recognize the expected ast-node(%s), unable to convert to type-language' , $ast_node );
120
122
}
123
+ # TODO: Handle ListValue and ObjectValue
121
124
}
122
125
123
126
# When a type is referred to, we might need to convert
@@ -222,6 +225,7 @@ sub ast_value_to_schema_type ($ast_value) {
222
225
else {
223
226
throw(' Do not recognize the ast-value(%s), unable to convert to schema type' , $ast_value );
224
227
}
228
+ # TODO: Handle ListValue and ObjectValue
225
229
}
226
230
227
231
# # ----------------------------------------------
You can’t perform that action at this time.
0 commit comments