UNPKG

@aws-amplify/graphql-directives

Version:

Directive definitions for Amplify GraphQL transformers.

16 lines 415 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ManyToManyDirective = void 0; const name = 'manyToMany'; const defaults = { limit: 100, }; const definition = ` directive @${name}(relationName: String!, limit: Int = ${defaults.limit}) on FIELD_DEFINITION `; exports.ManyToManyDirective = { name, definition, defaults, }; //# sourceMappingURL=many-to-many.js.map