schemaIntrospectionTypeField top-level property

GraphQLObjectField<GraphQLSchema, Map<String, Object?>, Object?> schemaIntrospectionTypeField
final

The schema introspection type GraphQLObjectField

Implementation

final schemaIntrospectionTypeField = schemaGraphQLType.nonNull().field(
      '__schema',
      resolve: (_, ctx) => ctx.executionCtx.schema,
    );