graphQLSpecifiedByDirective top-level property

GraphQLDirective graphQLSpecifiedByDirective
final

Implementation

final graphQLSpecifiedByDirective = GraphQLDirective(
  name: 'specifiedBy',
  description: 'Exposes a URL that specifies the behaviour of this scalar.',
  locations: [DirectiveLocation.SCALAR],
  inputs: [
    GraphQLFieldInput<String, String>(
      'url',
      graphQLString.nonNull(),
      description: 'The URL that specifies the behaviour of this scalar.',
    ),
  ],
);