Skip to content

Commit

Permalink
update API
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyu99 committed Jan 20, 2025
1 parent 7a8f1ef commit 14107b8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/amplify-graphql-validate-transformer/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,24 @@
```ts

import { DirectiveNode } from 'graphql';
import { FieldDefinitionNode } from 'graphql';
import { InterfaceTypeDefinitionNode } from 'graphql';
import { ObjectTypeDefinitionNode } from 'graphql';
import { TransformerContextProvider } from '@aws-amplify/graphql-transformer-interfaces';
import { TransformerPluginBase } from '@aws-amplify/graphql-transformer-core';
import { TransformerSchemaVisitStepContextProvider } from '@aws-amplify/graphql-transformer-interfaces';
import { TransformerValidationStepContextProvider } from '@aws-amplify/graphql-transformer-interfaces';

// @public (undocumented)
export class ValidateTransformer extends TransformerPluginBase {
constructor();
// (undocumented)
generateResolvers: (ctx: TransformerContextProvider) => void;
field: (parent: ObjectTypeDefinitionNode | InterfaceTypeDefinitionNode, definition: FieldDefinitionNode, directive: DirectiveNode, _: TransformerSchemaVisitStepContextProvider) => void;
// (undocumented)
generateResolvers: (_: TransformerContextProvider) => void;
// (undocumented)
validate: (_: TransformerValidationStepContextProvider) => void;
}

// (No @packageDocumentation comment for this package)
Expand Down

0 comments on commit 14107b8

Please sign in to comment.