Skip to content

Commit

Permalink
Expose getArgumentValues as public API (#3464)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Jan 26, 2022
1 parent f1d64ce commit d925576
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/execution/index.ts
Expand Up @@ -15,4 +15,4 @@ export type {

export { subscribe, createSourceEventStream } from './subscribe';

export { getDirectiveValues } from './values';
export { getVariableValues, getDirectiveValues } from './values';
2 changes: 0 additions & 2 deletions src/execution/values.ts
Expand Up @@ -35,8 +35,6 @@ type CoercedVariableValues =
* Note: The returned value is a plain Object with a prototype, since it is
* exposed to user code. Care should be taken to not pull values from the
* Object prototype.
*
* @internal
*/
export function getVariableValues(
schema: GraphQLSchema,
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Expand Up @@ -318,6 +318,7 @@ export {
defaultFieldResolver,
defaultTypeResolver,
responsePathAsArray,
getVariableValues,
getDirectiveValues,
subscribe,
createSourceEventStream,
Expand Down

0 comments on commit d925576

Please sign in to comment.