Home
last modified time | relevance | path

Searched defs:GraphQLError (Results 1 – 12 of 12) sorted by relevance

/dports/devel/py-graphql-core/graphql-core-3.1.6/tests/validation/
H A Dharness.py149 errors: List[GraphQLError],
161 errors: List[GraphQLError],
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/validation/
H A Dvalidation_context.py83 self, ast: DocumentNode, on_error: Callable[[GraphQLError], None]
91 def on_error(self, error: GraphQLError) -> None:
94 def report_error(self, error: GraphQLError) -> None:
171 on_error: Callable[[GraphQLError], None],
196 on_error: Callable[[GraphQLError], None],
H A Dvalidate.py62 def on_error(error: GraphQLError) -> None:
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/error/
H A Dgraphql_error.py12 class GraphQLError(Exception): class
180 def print_error(error: GraphQLError) -> str:
202 def format_error(error: GraphQLError) -> Dict[str, Any]:
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/execution/
H A Dvalues.py55 def on_error(error: GraphQLError) -> None:
77 on_error: Callable[[GraphQLError], None],
126 path: List[Union[str, int]], invalid_value: Any, error: GraphQLError
H A Dexecute.py117 errors: Optional[List[GraphQLError]] = None,
197 errors: List[GraphQLError],
660 error: GraphQLError,
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/graphql/error/
H A DGraphQLError.mjs21 export function GraphQLError( // eslint-disable-line no-redeclare function
122 GraphQLError.prototype = Object.create(Error.prototype, { class
/dports/devel/gh/cli-2.4.0/api/
H A Dclient.go124 type GraphQLError struct { struct
125 Type string
126 Message string
127 Path []interface{} // mixed strings and numbers
130 func (ge GraphQLError) PathString() string {
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/utilities/
H A Dcoerce_input_value.py32 path: List[Union[str, int]], invalid_value: Any, error: GraphQLError
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/validation/rules/
H A D__init__.py22 def report_error(self, error: GraphQLError) -> None:
/dports/devel/py-graphql-core2/graphql-core-2.2.1/graphql/error/
H A Dbase.py12 class GraphQLError(Exception): class
/dports/devel/py-graphql-core/graphql-core-3.1.6/src/graphql/type/
H A Dvalidate.py114 def add_error(self, error: GraphQLError) -> None: