Files
DefinitelyTyped/graphql/graphql-tests.ts
TonyYang 775de05895 [graphql] Create graphql (#11598)
* Complete graphql/language

* Update graphql/error

* Update graphql.d.ts

* Create graphql-tests.ts

* Update graphql/type

* Update graphql/error and graphql/execution

* Remove null type

* Remove comma
2016-09-30 21:17:40 +09:00

185 lines
2.6 KiB
TypeScript

/// <reference path="graphql.d.ts" />
import * as graphql from 'graphql';
///////////////////////////
// graphql //
///////////////////////////
namespace graphql_tests {
// TODO
}
///////////////////////////
// graphql/language //
///////////////////////////
namespace language_ast_tests {
// TODOS
}
namespace language_index_tests {
// TODOS
}
namespace language_kinds_tests {
// TODOS
}
namespace language_lexer_tests {
// TODOS
}
namespace language_location_tests {
// TODOS
}
namespace language_parser_tests {
// TODOS
}
namespace language_printer_tests {
// TODOS
}
namespace language_source_tests {
// TODOS
}
namespace language_visitor_tests {
// TODOS
}
///////////////////////////
// graphql/type //
///////////////////////////
namespace type_definition_tests {
// TODO
}
namespace type_directives_tests {
// TODO
}
namespace type_introspection_tests {
// TODO
}
namespace type_scalars_tests {
// TODO
}
namespace type_schema_tests {
// TODO
}
///////////////////////////
// graphql/validation //
///////////////////////////
namespace validation_specifiedRules_tests {
}
namespace validation_validate_tests {
}
///////////////////////////
// graphql/execution //
///////////////////////////
namespace execution_execute_tests {
// TODOS
}
namespace execution_values_tests {
// TODOS
}
///////////////////////////
// graphql/error //
///////////////////////////
namespace error_GraphQLError {
}
namespace error_formatError {
}
namespace error_locatedError {
}
namespace error_syntaxError {
}
///////////////////////////
// graphql/utilities //
///////////////////////////
namespace utilities_TypeInfo_tests {
//TODOS
}
namespace utilities_assertValidName_tests {
//TODOS
}
namespace utilities_astFromValue_tests {
//TODOS
}
namespace utilities_buildASTSchema_tests {
//TODOS
}
namespace utilities_buildClientSchema_tests {
//TODOS
}
namespace utilities_concatAST_tests {
//TODOS
}
namespace utilities_extendSchema_tests {
//TODOS
}
namespace utilities_getOperationAST_tests {
//TODOS
}
namespace utilities_index_tests {
//TODOS
}
namespace utilities_introspectionQuery_tests {
//TODOS
}
namespace utilities_isValidJSValue_tests {
//TODOS
}
namespace utilities_isValidLiteralValue_tests {
//TODOS
}
namespace utilities_schemaPrinter_tests {
//TODOS
}
namespace utilities_separateOperations_tests {
//TODOS
}
namespace utilities_typeComparators_tests {
//TODOS
}
namespace utilities_typeFromAST_tests {
//TODOS
}
namespace utilities_valueFromAST_tests {
//TODOS
}