Skip to content

Commit fb1f3d3

Browse files
committed
Remove mentions of mixed
1 parent 6e30fc9 commit fb1f3d3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

website/pages/api-v16/error.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class GraphQLError extends Error {
5656
source?: Source,
5757
positions?: number[],
5858
originalError?: Error,
59-
extensions?: { [key: string]: mixed },
59+
extensions?: Record<string, unknown>,
6060
);
6161
}
6262
```

website/pages/api-v16/execution.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ to be removed in v17.
7171
export function execute(
7272
schema: GraphQLSchema,
7373
documentAST: Document,
74-
rootValue?: mixed,
75-
contextValue?: mixed,
76-
variableValues?: { [key: string]: mixed },
74+
rootValue?: unknown,
75+
contextValue?: unknown,
76+
variableValues?: Record<string, unknown>,
7777
operationName?: string,
7878
): MaybePromise<ExecutionResult>;
7979
```
@@ -138,9 +138,9 @@ to be removed in v17.
138138
export function executeSync(
139139
schema: GraphQLSchema,
140140
documentAST: Document,
141-
rootValue?: mixed,
142-
contextValue?: mixed,
143-
variableValues?: { [key: string]: mixed },
141+
rootValue?: unknown,
142+
contextValue?: unknown,
143+
variableValues?: Record<string, unknown>,
144144
operationName?: string,
145145
): ExecutionResult;
146146
```

0 commit comments

Comments
 (0)